summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/views
diff options
context:
space:
mode:
authorFelix Hammerl <fhammerl@thoughtworks.com>2016-04-14 11:43:15 +0200
committerFelix Hammerl <fhammerl@thoughtworks.com>2016-04-14 13:18:04 +0200
commit5bca3a2d8d98fe01d4595f336e53fa0d266dd33f (patch)
treed14c13b69159cc318cda9acaee9474915da85947 /web-ui/app/scss/views
parent77e374ecca7f1d5ded1c6d20059d2ff8a05e23a6 (diff)
Issue #670: Move unread count to template
Diffstat (limited to 'web-ui/app/scss/views')
-rw-r--r--web-ui/app/scss/views/_navigation.scss34
1 files changed, 4 insertions, 30 deletions
diff --git a/web-ui/app/scss/views/_navigation.scss b/web-ui/app/scss/views/_navigation.scss
index 9d98d9e8..98272483 100644
--- a/web-ui/app/scss/views/_navigation.scss
+++ b/web-ui/app/scss/views/_navigation.scss
@@ -379,34 +379,6 @@ div.side-nav-bottom {
}
ul#default-tag-list {
- // .unread-count, .total-count {
- // font-size: 0.5em;
- // padding: 1px 5px 0;
- // top: 1px;
- // left: 0;
- // border: 1px solid $white;
- // position: absolute;
- // opacity: 0.95;
- // }
- //
- // .total-count {
- // background: $medium_light_grey;
- // }
-
- .unread-count, .total-count {
- font-size: 0.7em;
- padding: 0px 5px 0;
- top: 1px;
- left: 0;
- border: 1px solid $white;
- border-bottom: 1px solid white;
- position: absolute;
- opacity: 0.95;
- }
-
- .total-count {
- background: $medium_light_grey;
- }
span.tag-label {
padding-left: 2px;
@@ -591,9 +563,11 @@ div.side-nav-bottom {
}
.unread-count {
- @include mail-count($secondary_callout);
+ @extend .mail-count;
+ background: $secondary_callout;
}
.total-count {
- @include mail-count($medium_light_grey);
+ @extend .mail-count;
+ background: $medium_light_grey;
}