fixed style
This commit is contained in:
parent
6bdf70fcb2
commit
c2660d39a6
|
@ -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++) {
|
||||
|
|
|
@ -126,6 +126,9 @@ table.lamHeader {
|
|||
table.accountlist {
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
table.collapse {
|
||||
border-collapse:collapse;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue