aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Whiteland <dave@mysociety.org>2012-11-15 01:33:56 +0000
committerDave Whiteland <dave@mysociety.org>2012-11-15 01:33:56 +0000
commitcc8d957e65e361ed49705816b8b2300c341b2373 (patch)
tree66ac70fa2c5a0f55b1d4af61ff1928712f40662e
parent6953d0b7411f50c669567fe3b493fb3e4fbe9a55 (diff)
prevent mouseover changing colour on selected message
-rw-r--r--web/cobrands/fixmybarangay/message_manager.scss5
1 files changed, 4 insertions, 1 deletions
diff --git a/web/cobrands/fixmybarangay/message_manager.scss b/web/cobrands/fixmybarangay/message_manager.scss
index 01b7161d1..9d9555640 100644
--- a/web/cobrands/fixmybarangay/message_manager.scss
+++ b/web/cobrands/fixmybarangay/message_manager.scss
@@ -94,7 +94,10 @@ $weak_text_color: #666;
&.msg-is-locked { background-color: #fdd;}
&.msg-is-busy { background-color: #ffd;}
&.msg-is-owned { background-color: #dfd;}
- &.msg-is-active { background-color: $contrast1; color:#fff;}
+ &.msg-is-active {
+ background-color: $contrast1; color:#fff;
+ p:hover { background-color: $contrast1; color:#fff; } // fix for mouseover on p
+ }
span.msg-tag {
width: 3em;
float:left;