diff options
author | Felix Hammerl <fhammerl@thoughtworks.com> | 2016-04-14 14:17:51 +0200 |
---|---|---|
committer | Felix Hammerl <fhammerl@thoughtworks.com> | 2016-04-14 14:17:51 +0200 |
commit | cd571f8542566a83e7f95e23859433e09b7df814 (patch) | |
tree | edbd8fc4b5c5a0dc6da6d826af49ac759491aa2b | |
parent | 5bca3a2d8d98fe01d4595f336e53fa0d266dd33f (diff) |
Issue #670: Fix custom tag unread count
-rw-r--r-- | web-ui/app/scss/views/_navigation.scss | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/web-ui/app/scss/views/_navigation.scss b/web-ui/app/scss/views/_navigation.scss index 98272483..5c8d1bd7 100644 --- a/web-ui/app/scss/views/_navigation.scss +++ b/web-ui/app/scss/views/_navigation.scss @@ -461,6 +461,12 @@ div.side-nav-bottom { padding: 5px 20px 5px 38px; } } + + .unread-count, .total-count { + padding: 1px 4px; + position: relative; + } + } ul#custom-tag-list.expanded { @@ -564,10 +570,12 @@ div.side-nav-bottom { .unread-count { @extend .mail-count; + background: $secondary_callout; } .total-count { @extend .mail-count; + background: $medium_light_grey; } |