From 46a88e0c70f70e9158f4d8fc3ab9b741dce50d55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Hanol?= Date: Fri, 1 Aug 2014 19:18:31 +0200 Subject: [PATCH] FIX: helpful/flagged posts styling on mobile --- app/assets/stylesheets/mobile/user.scss | 34 ++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/mobile/user.scss b/app/assets/stylesheets/mobile/user.scss index bf52114d5a2..519288f21f0 100644 --- a/app/assets/stylesheets/mobile/user.scss +++ b/app/assets/stylesheets/mobile/user.scss @@ -222,7 +222,7 @@ color: scale-color($primary, $lightness: 50%); } .item.moderator-action { - background-color: scale-color($tertiary, $lightness: 40%); + background-color: scale-color($highlight, $lightness: 50%); } .item.deleted { opacity: 0.8; @@ -272,6 +272,38 @@ } } + .staff-counters { + text-align: center; + > div { + margin-bottom: 10px; + } + a.active { + font-weight: bold; + } + } + + .pill { + border-radius: 15px; + display: inline-block; + height: 30px; + width: 30px; + text-align: center; + vertical-align: middle; + line-height: 30px; + } + .helpful-flags { + background-color: green; + } + .flagged-posts { + background-color: #E49735; + } + .deleted-posts { + background-color: #EC441B; + } + .suspensions { + background-color: #c22020; + } + div#pagedown-editor { width: 100%; }