diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-11-30 13:17:55 +0000 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-11-30 13:17:55 +0000 |
commit | 1459686965ca91ce7ac5af1b4d1ab3da829685c5 (patch) | |
tree | 56f960bc92bc8a3e26e48ee070d2287be7218609 /static/stylesheets | |
parent | 5a099132ff0fffceda0eec2921a513b10070beb7 (diff) |
Adjusted CSS not to colour non-raised alerts in tables.
Diffstat (limited to 'static/stylesheets')
-rw-r--r-- | static/stylesheets/mauve.css | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/static/stylesheets/mauve.css b/static/stylesheets/mauve.css index cac6833..64a95db 100644 --- a/static/stylesheets/mauve.css +++ b/static/stylesheets/mauve.css @@ -23,16 +23,15 @@ tr { border-bottom: none; } -tr.urgent { +tr.urgent.raised { background-color: #f88; } -tr.normal { - /* Mauve, as defined by wikipedia. */ +tr.normal.raised { background-color: #ff8; } -tr.low { +tr.low.raised { background-color: #8f8; } |