diff options
author | Dave Whiteland <dave@mysociety.org> | 2012-12-09 23:14:56 +0000 |
---|---|---|
committer | Dave Whiteland <dave@mysociety.org> | 2012-12-09 23:14:56 +0000 |
commit | 418b2eabc51b2b7b696b4ce6b86f30952ac3d2c3 (patch) | |
tree | a5ff182707b2092557c9cc9ebf35a3843d69af9d | |
parent | 832b4ecbad6afb4b2cbd686925bdf034c425523a (diff) |
archive messages can't sensible be used for creation, so hide radio button in archive list
-rw-r--r-- | web/cobrands/fixmybarangay/message_manager.scss | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/web/cobrands/fixmybarangay/message_manager.scss b/web/cobrands/fixmybarangay/message_manager.scss index c2d4d9774..7df7bc0ec 100644 --- a/web/cobrands/fixmybarangay/message_manager.scss +++ b/web/cobrands/fixmybarangay/message_manager.scss @@ -97,9 +97,6 @@ p.mm-submitted-by-sms { #mm-message-list { ul { - &.mm-archive { - display: none; // archive only shown on interaction - } list-style-type: none; padding: 0; margin: 0; @@ -185,6 +182,12 @@ p.mm-submitted-by-sms { background-color: $color_bg_btn_reply; } } + &.mm-archive { + display: none; // archive only shown on interaction + input[type=radio] { + display: none; // archive messages can't sensible be used for creation, so hide radio + } + } } } p.mm-empty { |