diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-18 04:35:30 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-18 04:35:30 +0000 |
commit | 001b22269b90f60d1e627e324be2748c572df4f5 (patch) | |
tree | bed0004befc28ccce8602ca91e1ee928d77483ba | |
parent | fcaf2e8016ea699294733ce82e7888aea8fabe93 (diff) | |
download | brdo-001b22269b90f60d1e627e324be2748c572df4f5.tar.gz brdo-001b22269b90f60d1e627e324be2748c572df4f5.tar.bz2 |
#601972 by sivaji: Fixed status messages not styled when displayed inline.
-rw-r--r-- | themes/seven/style.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/themes/seven/style.css b/themes/seven/style.css index c88a7b267..22c972b24 100644 --- a/themes/seven/style.css +++ b/themes/seven/style.css @@ -111,9 +111,9 @@ legend { } /** - * Console. + * Messages. */ -#console div.messages { +div.messages { padding: 9px; margin: 1em 0; color: #036; @@ -121,19 +121,19 @@ legend { border: 1px solid #ace; } -#console div.warning { +div.warning { color: #840; background: #fe6; border-color: #ed5; } -#console div.error { +div.error { color: #fff; background: #e63; border-color: #d52; } -#console div.status { +div.status { color: #360; background: #cf8; border-color: #be7; |