aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorPatrick J Cherry <patrick@bytemark.co.uk>2012-11-30 13:17:55 +0000
committerPatrick J Cherry <patrick@bytemark.co.uk>2012-11-30 13:17:55 +0000
commit1459686965ca91ce7ac5af1b4d1ab3da829685c5 (patch)
tree56f960bc92bc8a3e26e48ee070d2287be7218609 /static
parent5a099132ff0fffceda0eec2921a513b10070beb7 (diff)
Adjusted CSS not to colour non-raised alerts in tables.
Diffstat (limited to 'static')
-rw-r--r--static/stylesheets/mauve.css7
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;
}