CSS: fixed userlist, added domedit
This commit is contained in:
parent
e1302797e8
commit
e207d03bd0
|
@ -92,6 +92,7 @@ tr.userlist-head {
|
|||
|
||||
/* color of rows on mouseOver */
|
||||
tr.userlist-over {
|
||||
background-color:#ccccff;
|
||||
}
|
||||
|
||||
/* color of checked rows */
|
||||
|
@ -299,6 +300,22 @@ tr.domainlist-checked {
|
|||
background-color:#f27c71;
|
||||
}
|
||||
|
||||
/**
|
||||
* style for domain.php
|
||||
*
|
||||
*/
|
||||
|
||||
/* fieldset and legend */
|
||||
|
||||
fieldset.domedit {
|
||||
background-color:#c9ddd2;
|
||||
}
|
||||
|
||||
legend.domedit {
|
||||
color:blue;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* table style for delete.php
|
||||
*
|
||||
|
|
|
@ -70,8 +70,8 @@ if (($_GET['action'] == "edit") || ($_GET['action'] == "new")) {
|
|||
// print fieldset
|
||||
echo "<form action=\"domain.php\" method=\"post\">\n";
|
||||
echo "<p> </p>\n";
|
||||
echo "<fieldset>\n";
|
||||
echo "<legend><b>" . _("Domain Settings") . "</b></legend>\n";
|
||||
echo "<fieldset class=\"domedit\">\n";
|
||||
echo "<legend class=\"domedit\"><b>" . _("Domain Settings") . "</b></legend>\n";
|
||||
echo "<table border=0>\n";
|
||||
echo "<tr>\n";
|
||||
echo "<td>\n";
|
||||
|
|
Loading…
Reference in New Issue