fixed style

This commit is contained in:
Roland Gruber 2013-02-03 11:46:47 +00:00
parent 6bdf70fcb2
commit c2660d39a6
3 changed files with 6 additions and 3 deletions

View File

@ -326,7 +326,7 @@ class lamList {
*/
protected function listPrintTableHeader() {
// print table header
echo "<table id=\"accountTable\" frame=\"box\" rules=\"none\" class=\"" . $this->type . "-border accountlist ui-corner-all\" width=\"100%\"><thead>\n";
echo "<table id=\"accountTable\" frame=\"box\" rules=\"none\" class=\"" . $this->type . "-border collapse accountlist ui-corner-all\" width=\"100%\"><thead>\n";
echo "<tr class=\"" . $this->type . "-dark\">\n<th width=22 height=34></th>\n<th></th>\n";
// table header
for ($k = 0; $k < sizeof($this->descArray); $k++) {

View File

@ -126,7 +126,10 @@ table.lamHeader {
table.accountlist {
border-width:1px;
border-style:solid;
border-collapse:collapse;
}
table.collapse {
border-collapse:collapse;
}
.rightToLeftText {

View File

@ -276,7 +276,7 @@ function showMainPage($scope, $selectedModules) {
$columnSpacer = new htmlSpacer('10px', null);
$container->addElement(new htmlTitle(_("Columns")), true);
$columnContainer = new htmlTable();
$columnContainer->setCSSClasses(array($scope . 'list'));
$columnContainer->setCSSClasses(array($scope . 'list', 'collapse'));
// DN options
$dnTitle = new htmlSubTitle(_("DN settings"), '../graphics/logo32.png');
$dnTitle->colspan = 20;