summaryrefslogtreecommitdiff
path: root/themes/seven
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-08-05 06:53:13 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-08-05 06:53:13 +0000
commitee74b5000b7ff3fe074b13ddffb985d561fc0f4a (patch)
tree7e9ddb1b3716082630d184184148d355155bf5f0 /themes/seven
parenta1ce6bac55287fa815921561d747b5fc2e88fde6 (diff)
downloadbrdo-ee74b5000b7ff3fe074b13ddffb985d561fc0f4a.tar.gz
brdo-ee74b5000b7ff3fe074b13ddffb985d561fc0f4a.tar.bz2
#639368 by mgifford, marcvangend, yoroy, Bojhan, Cliff, Druid, marvil07, et al: Fixed contrast between error and link colour in status messages.
Diffstat (limited to 'themes/seven')
-rw-r--r--themes/seven/style.css75
1 files changed, 57 insertions, 18 deletions
diff --git a/themes/seven/style.css b/themes/seven/style.css
index caf7164ab..1ea94bdfe 100644
--- a/themes/seven/style.css
+++ b/themes/seven/style.css
@@ -247,26 +247,26 @@ div.messages {
padding: 9px;
margin: 0.5em 0 0;
color: #036;
- background: #bdf;
- border: 1px solid #ace;
+ background: #f8fff0;
+ border-left: 16px solid #be7;
}
div.warning {
color: #840;
- background: #fe6;
- border-color: #ed5;
+ background: #fffce5;
+ border-left: 16px solid #ed5;
}
div.error {
- color: #fff;
- background: #e63;
- border-color: #d52;
+ color: #8c2e0b;
+ background: #fef5f1;
+ border-left: 16px solid #ed541d;
}
div.error p.error {
color: #333;
}
div.status {
- color: #360;
- background: #cf8;
- border-color: #be7;
+ color: #234600;
+ background: #f8fff0;
+ border-left: 16px solid #be7;
}
/**
@@ -533,20 +533,26 @@ table tr.selected td {
border-color: #eeb;
}
table.system-status-report tr {
- border-bottom: 1px solid #bebfb9;
+ border-bottom: 1px solid #ccc;
}
-table.system-status-report tr.ok td {
- background-color: #dfd;
+table.system-status-report tr.ok {
+ color: #255b1e;
+ background-color: #e5ffe2;
}
-table.system-status-report tr.info td {
+table.system-status-report tr.info {
+ color: #040f37;
background-color: #bdf;
}
-table.system-status-report tr.warning td {
- background-color: #ffd;
+table.system-status-report tr.warning {
+ color: #840;
+ background-color: #fffce5;
}
-table.system-status-report tr.error td {
- background-color: #fdd;
+table.system-status-report tr.error {
+ color: #8c2e0b;
+ background-color: #fef5f1;
}
+
+
/**
* Fieldsets.
*
@@ -995,3 +1001,36 @@ div.add-or-remove-shortcuts {
#user-login-form .openid-links .user-link {
margin-left: 1.5em; /* LTR */
}
+
+
+/* Available Updates */
+.update tr.ok {
+ color: #255b1e;
+ background: #e5ffe2;
+ border-bottom: 1px solid #89D47F;
+}
+.update tr.warning {
+ color: #840;
+ background: #fffce5;
+ border-bottom: 1px solid #ed5;
+}
+.update tr.warning .version-recommended {
+ background: #ffe;
+}
+.update tr.unknown {
+ background: #ddd;
+}
+.update tr.error {
+ color: #840;
+ background: #fffce5;
+ border-bottom: 1px solid #ed5;
+}
+.update tr.error .version-recommended {
+ background: #fdd;
+}
+table tbody tr.update-security,
+table tbody tr.update-unsupported {
+ color: #840;
+ background: #fffce5;
+ border-bottom: 1px solid #ed5;
+}