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