summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/system/system-messages.css36
1 files changed, 36 insertions, 0 deletions
diff --git a/modules/system/system-messages.css b/modules/system/system-messages.css
new file mode 100644
index 000000000..90d43d07d
--- /dev/null
+++ b/modules/system/system-messages.css
@@ -0,0 +1,36 @@
+/* $Id */
+
+div.messages {
+ background-color: #dfd;
+ color: #000;
+ margin-bottom: 0.25em;
+ padding: 0.25em 0.5em;
+}
+
+.error {
+ color: #e55;
+}
+
+div.error,
+tr.error {
+ background-color: #fcc;
+}
+
+.warning {
+ color: #e09010;
+}
+
+div.warning,
+tr.warning {
+ background-color: #fcfca7;
+}
+
+.ok {
+ color: #008000;
+}
+
+div.ok,
+tr.ok {
+ background-color: #dfd;
+ color: #020;
+} \ No newline at end of file