diff options
Diffstat (limited to 'modules/extra/webcpanel/templates/default/style.css')
-rw-r--r-- | modules/extra/webcpanel/templates/default/style.css | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/modules/extra/webcpanel/templates/default/style.css b/modules/extra/webcpanel/templates/default/style.css index 94e7a900d..13b4e4759 100644 --- a/modules/extra/webcpanel/templates/default/style.css +++ b/modules/extra/webcpanel/templates/default/style.css @@ -126,8 +126,9 @@ body { td.right a:link, td.right a:visited {
color: #000;
+ background-color: #FFF;
border: 1px solid #000;
- padding: 1px 4px;
+ padding: 0px 4px;
-webkit-border-radius: 5x;
border-radius: 5px;
text-decoration: none;
@@ -136,6 +137,28 @@ td.right a:link, td.right a:visited { td.right a:hover {
color: #00F;
}
+
+table#memoTable {
+ border-spacing: 0px;
+ border-collapse: collapse;
+}
+
+table#memoTable tr {
+ padding: 1px;
+}
+
+tr.read {
+ background-color: #FFF;
+}
+
+tr.unread {
+ background-color: #EEE;
+}
+
+tr.read td, tr.unread td {
+ padding: 2px;
+}
+
/* Modal Window */
#mask {
position: absolute;
|