fixed css
This commit is contained in:
parent
66a19d6c8e
commit
39e810c39a
|
@ -39,15 +39,11 @@ body {
|
||||||
/// links
|
/// links
|
||||||
a {
|
a {
|
||||||
color:darkblue;
|
color:darkblue;
|
||||||
font-size:18px;
|
text-decoration:none;
|
||||||
font-weight:normal;
|
|
||||||
text-decoration:underline;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
color:lightblue;
|
color:red;
|
||||||
font-size:18px;
|
|
||||||
font-weight:normal;
|
|
||||||
text-decoration:none;
|
text-decoration:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -56,42 +52,35 @@ text-decoration:none;
|
||||||
* table style for userlist.php
|
* table style for userlist.php
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
th.userlist {
|
|
||||||
|
/* table preferences */
|
||||||
|
table.userlist {
|
||||||
border-width:1px;
|
border-width:1px;
|
||||||
border-style:solid;
|
border-style:solid;
|
||||||
border-color:#B7C7B7;
|
border-color:#000000;
|
||||||
padding:10px;
|
}
|
||||||
background-color:#C7E7C7;
|
|
||||||
font-size:14px;
|
/* color of entry rows */
|
||||||
|
tr.userlist {
|
||||||
|
background-color:#FFFFEE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* color of head row */
|
||||||
|
tr.userlist_head {
|
||||||
|
background-color:#FFFFAA;
|
||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
td.userlist {
|
/* color of rows on mouseOver */
|
||||||
border-width:1px;
|
tr.userlist_over {
|
||||||
border-style:solid;
|
background-color:#CCCCFF;
|
||||||
border-color:#C7D7C7;
|
|
||||||
padding:4px;
|
|
||||||
background-color:#DDDDDD;
|
|
||||||
bgcolor:#DDDDDD;
|
|
||||||
font-size:14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// links of userlist
|
/* color of checked rows */
|
||||||
a {
|
tr.userlist_checked {
|
||||||
color:darkblue;
|
background-color:#FFCCCC;
|
||||||
font-size:14px;
|
|
||||||
font-weight:normal;
|
|
||||||
text-decoration:underline;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
|
||||||
color:red;
|
|
||||||
font-size:14px;
|
|
||||||
font-weight:normal;
|
|
||||||
text-decoration:none;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* table style for grouplist.php
|
* table style for grouplist.php
|
||||||
*
|
*
|
||||||
|
@ -102,7 +91,6 @@ table.grouplist {
|
||||||
border-width:1px;
|
border-width:1px;
|
||||||
border-style:solid;
|
border-style:solid;
|
||||||
border-color:#7167bf;
|
border-color:#7167bf;
|
||||||
font-size:14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* color of entry rows */
|
/* color of entry rows */
|
||||||
|
@ -136,7 +124,6 @@ table.hostlist {
|
||||||
border-width:1px;
|
border-width:1px;
|
||||||
border-style:solid;
|
border-style:solid;
|
||||||
border-color:#911a1a;
|
border-color:#911a1a;
|
||||||
font-size:14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* color of entry rows */
|
/* color of entry rows */
|
||||||
|
|
|
@ -27,7 +27,7 @@ $Id$
|
||||||
|
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<link rel=\"stylesheet\" type=\"text/css\" href=\"../style/layout.css\" />
|
<link rel="stylesheet" type="text/css" href="../style/layout.css" />
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
Loading…
Reference in New Issue