diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-04-01 14:47:16 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-04-01 14:47:16 +0000 |
commit | 5c60b7ca372a6ef1f5ccbd7a21ac04f986499cca (patch) | |
tree | 1358dab46b7075661ff6d0166d2aa514169e4812 /modules/system | |
parent | cc515842fa3b005b5a7a4e9449b89fe0b30bc778 (diff) | |
download | brdo-5c60b7ca372a6ef1f5ccbd7a21ac04f986499cca.tar.gz brdo-5c60b7ca372a6ef1f5ccbd7a21ac04f986499cca.tar.bz2 |
- Patch #193482 by xmacinfo, yoroy, james.elliott, Jacine, JohnAlbin, theborg: styling status messages in system.css.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.css | 33 | ||||
-rw-r--r-- | modules/system/system.module | 1 |
2 files changed, 1 insertions, 33 deletions
diff --git a/modules/system/system.css b/modules/system/system.css index 3d8814ffd..0e0981415 100644 --- a/modules/system/system.css +++ b/modules/system/system.css @@ -64,39 +64,6 @@ thead th { .breadcrumb { padding-bottom: .5em } -.error { - color: #e55; -} -div.error { - border: 1px solid #d77; -} -div.error, tr.error { - background: #fcc; - color: #200; - padding: 2px; -} -.warning { - color: #e09010; -} -div.warning { - border: 1px solid #f0c020; -} -div.warning, table tr.warning { - background: #ffd; - color: #220; - padding: 2px; -} -.ok { - color: #008000; -} -div.ok { - border: 1px solid #00aa00; -} -div.ok, tr.ok { - background: #dfd; - color: #020; - padding: 2px; -} .item-list .icon { color: #555; float: right; /* LTR */ diff --git a/modules/system/system.module b/modules/system/system.module index 7ea1d6599..5e65fd9e1 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1807,6 +1807,7 @@ function system_init() { drupal_add_css(drupal_get_path('module', 'system') . '/system.css', array('weight' => CSS_SYSTEM)); drupal_add_css(drupal_get_path('module', 'system') . '/system-behavior.css', array('weight' => CSS_SYSTEM)); drupal_add_css(drupal_get_path('module', 'system') . '/system-menus.css', array('weight' => CSS_SYSTEM)); + drupal_add_css(drupal_get_path('module', 'system') . '/system-messages.css', array('weight' => CSS_SYSTEM)); // Ignore slave database servers for this request. |