summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-12-16 07:41:40 +0000
committerDries Buytaert <dries@buytaert.net>2003-12-16 07:41:40 +0000
commit595c790a9c488b16875e4a0f8eb5a35e0df2845c (patch)
tree91f6080d2565929f7920b43a03cdb6177b3197fb
parentce5d3a06e48207989f7c706d63e2b2f86cd6cbd5 (diff)
downloadbrdo-595c790a9c488b16875e4a0f8eb5a35e0df2845c.tar.gz
brdo-595c790a9c488b16875e4a0f8eb5a35e0df2845c.tar.bz2
- CSS improvements by Kristjan: <hr />-tag styling, better fieldset and table row
padding, more subtle color to watchdog special messages.
-rw-r--r--misc/drupal.css14
-rw-r--r--themes/chameleon/default.css4
2 files changed, 11 insertions, 7 deletions
diff --git a/misc/drupal.css b/misc/drupal.css
index 1ef38157f..1aef606a1 100644
--- a/misc/drupal.css
+++ b/misc/drupal.css
@@ -11,6 +11,7 @@ th {
}
fieldset {
margin-bottom: 1em;
+ padding: .5em;
}
#tracker table {
border-collapse: collapse;
@@ -256,6 +257,10 @@ tr.dark {
tr.light {
background-color: #eee;
}
+tr.dark td, tr.light td {
+ padding-left: .4em;
+ padding-right: .4em;
+}
pre {
white-space: pre-wrap;
white-space: -moz-pre-wrap;
@@ -315,8 +320,8 @@ td.watchdog-message {
border: 1px solid #ddd;
}
td.watchdog-special {
- background: #a9f;
- border: 1px solid #87d;
+ background: #ccf;
+ border: 1px solid #99c;
}
td.watchdog-warning {
background: #fa2;
@@ -330,4 +335,7 @@ td.watchdog-error {
background: #e44;
border: 1px solid #c22;
}
-
+hr {
+ height: 1px;
+ border: 1px solid gray;
+} \ No newline at end of file
diff --git a/themes/chameleon/default.css b/themes/chameleon/default.css
index 180f86ac7..472bb96ff 100644
--- a/themes/chameleon/default.css
+++ b/themes/chameleon/default.css
@@ -23,10 +23,6 @@ table {
padding: .5em;
border-collapse: collapse;
}
-hr {
- height: 1px;
- border: 1px solid gray;
-}
code, pre {
font-size: 1em;
}