diff options
author | Dave Whiteland <dave@mysociety.org> | 2012-09-30 21:14:53 +0100 |
---|---|---|
committer | Dave Whiteland <dave@mysociety.org> | 2012-09-30 21:14:53 +0100 |
commit | 980970e7a85e9371bb34929b7d46882654f3e7f4 (patch) | |
tree | 8e83947f6c54db825a4ecc16dd1eca6a57331d77 | |
parent | 5657b851489339e33d60798b42f3d075260cac59 (diff) |
display 'owned' message very strongly (since we're using exclusive locks), now matches the 'click map to report...' call-to-action
-rw-r--r-- | web/cobrands/fixmybarangay/message_manager.scss | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/web/cobrands/fixmybarangay/message_manager.scss b/web/cobrands/fixmybarangay/message_manager.scss index 5b6d7bd62..00644a448 100644 --- a/web/cobrands/fixmybarangay/message_manager.scss +++ b/web/cobrands/fixmybarangay/message_manager.scss @@ -1,3 +1,5 @@ +@import "_colours"; + $mm_status_message_color: #a66; $mm_border_color: #eee; @@ -59,7 +61,7 @@ $color_bg_mm_list: #F6F6F6; background-color: inherit; margin: 0.25em 0 0 0; padding: 0.5em 1em; - &:hover { background-color: #efe;} + // &:hover { background-color: #efe;} } ul.mm-reply-thread { li { @@ -77,10 +79,10 @@ $color_bg_mm_list: #F6F6F6; .mm-reply-5 { margin-left: 5em; background-color: $color_bg_reply_5;} .mm-reply-6 { margin-left: 6em; background-color: $color_bg_reply_6;} } + &:hover { background-color: #efe;} &.msg-is-locked { background-color: #fdd;} - &.msg-is-owned { background-color: #dfd;} &.msg-is-busy { background-color: #ffd;} - &:hover { background-color: #efe;} + &.msg-is-owned { background-color: $contrast1; color:#fff;} // was: #dfd, now stronger span.msg-tag { width: 3em; float:left; |