removed highlighting of sort column
This commit is contained in:
parent
cb508c7417
commit
652a48e420
|
@ -28,8 +28,9 @@ This is a list of API changes for all LAM releases.
|
|||
|
||||
<br>
|
||||
|
||||
<h2>3.2.0 -> 3.3.0</h2>The cache was removed. Please use local caching and the functions searchLDAP... instead of get_cache().<br>
|
||||
The return values for baseModule::pre/postDeleteActions() was changed to an array of status message parameters.<br>
|
||||
<h2>3.2.0 -> 3.3.0</h2>The cache class was removed. Please use local caching and the functions searchLDAP... instead of get_cache().<br>
|
||||
The return values for baseModule::pre/postDeleteActions() were changed to an array of StatusMessage parameters.
|
||||
<br>CSS class TYPElist-sort removed without replacement.<br>
|
||||
<br>
|
||||
<h2>3.1.0 -> 3.2.0</h2>
|
||||
<span style="font-weight: bold;">Account types: </span>The CSS classes have changed.
|
||||
|
|
|
@ -327,7 +327,7 @@ class lamList {
|
|||
if ($this->sortDirection < 0) {
|
||||
$sortImage = "sort_desc.png";
|
||||
}
|
||||
echo "<th class=\"" . $this->type . "list-sort\"><a href=\"list.php?type=" . $this->type . "&".
|
||||
echo "<th><a href=\"list.php?type=" . $this->type . "&".
|
||||
"sort=" . strtolower($this->attrArray[$k]) . $this->filterText . "&norefresh=y" . "\">" . $this->descArray[$k] .
|
||||
" <img style=\"vertical-align: middle;\" src=\"../../graphics/$sortImage\" alt=\"sort direction\"></a></th>\n";
|
||||
}
|
||||
|
|
|
@ -71,11 +71,6 @@ table.asteriskExtlist input, table.asteriskExtlist select, table.asteriskExtlist
|
|||
background-color:#ffe27f !important;
|
||||
}
|
||||
|
||||
/* color of sorted column in head row */
|
||||
.asteriskExtlist-sort {
|
||||
background-color:#fff3c8 !important;
|
||||
}
|
||||
|
||||
fieldset.asteriskExtedit {
|
||||
background-color:#fff3c8;
|
||||
border:1px solid #af8800;
|
||||
|
|
|
@ -72,11 +72,6 @@ table.dhcplist input, table.dhcplist select, table.dhcplist button {
|
|||
background-color:#9fc653 !important;
|
||||
}
|
||||
|
||||
/* color of sorted column in head row */
|
||||
.dhcplist-sort {
|
||||
background-color:#bce077 !important;
|
||||
}
|
||||
|
||||
fieldset.dhcpedit {
|
||||
background-color:#d4f19b;
|
||||
border:1px solid #527510;
|
||||
|
|
|
@ -71,11 +71,6 @@ table.grouplist input, table.grouplist select, table.grouplist button {
|
|||
background-color:#a8c3ff !important;
|
||||
}
|
||||
|
||||
/* color of sorted column in head row */
|
||||
.grouplist-sort {
|
||||
background-color:#d6e3ff !important;
|
||||
}
|
||||
|
||||
fieldset.groupedit {
|
||||
background-color:#d6e3ff;
|
||||
border:1px solid #7167bf;
|
||||
|
|
|
@ -71,11 +71,6 @@ table.hostlist input, table.hostlist select, table.hostlist button {
|
|||
background-color:#ffc4ba !important;
|
||||
}
|
||||
|
||||
/* color of sorted column in head row */
|
||||
.hostlist-sort {
|
||||
background-color:#ffe2dd !important;
|
||||
}
|
||||
|
||||
fieldset.hostedit {
|
||||
background-color:#ffe2dd;
|
||||
border:1px solid #911a1a;
|
||||
|
|
|
@ -71,11 +71,6 @@ table.mailAliaslist input, table.mailAliaslist select, table.mailAliaslist butto
|
|||
background-color:#ffe27f !important;
|
||||
}
|
||||
|
||||
/* color of sorted column in head row */
|
||||
.mailAliaslist-sort {
|
||||
background-color:#fff3c8 !important;
|
||||
}
|
||||
|
||||
fieldset.mailAliasedit {
|
||||
background-color:#fff3c8;
|
||||
border:1px solid #af8800;
|
||||
|
|
|
@ -71,11 +71,6 @@ table.netgrouplist input, table.netgrouplist select, table.netgrouplist button {
|
|||
background-color:#a8c3ff !important;
|
||||
}
|
||||
|
||||
/* color of sorted column in head row */
|
||||
.netgrouplist-sort {
|
||||
background-color:#d6e3ff !important;
|
||||
}
|
||||
|
||||
fieldset.netgroupedit {
|
||||
background-color:#d6e3ff;
|
||||
border:1px solid #7167bf;
|
||||
|
|
|
@ -71,11 +71,6 @@ table.smbDomainlist input, table.smbDomainlist select, table.smbDomainlist butto
|
|||
background-color:#a8ddbf !important;
|
||||
}
|
||||
|
||||
/* color of sorted column in head row */
|
||||
.smbDomainlist-sort {
|
||||
background-color:#c9ddd2 !important;
|
||||
}
|
||||
|
||||
fieldset.smbDomainedit {
|
||||
background-color:#c9ddd2;
|
||||
border:1px solid #1d993e;
|
||||
|
|
|
@ -56,14 +56,6 @@ table.userlist input, table.userlist select, table.userlist button {
|
|||
background-color:#fff2a3 !important;
|
||||
}
|
||||
|
||||
/* color of sorted column */
|
||||
.userlist-sort {
|
||||
background-color:#fffde2 !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/* style of navigation bar */
|
||||
table.usernav {
|
||||
background-color:#fffde2;
|
||||
|
|
Loading…
Reference in New Issue