summaryrefslogtreecommitdiff
path: root/web-ui
diff options
context:
space:
mode:
authorGabriel Albo <gabriel@albo.com.br>2015-02-19 14:51:20 -0200
committerAlexandre Pretto Nunes <anunes@thoughtworks.com>2015-02-19 16:41:25 -0200
commit22dde085dd14e7755f8bd6b16859edac191e2943 (patch)
tree48ad20767e8c948e12575fe2582a65b23a900ca0 /web-ui
parent46de90deddd264dc8c301916e3f139d74bbbcc76 (diff)
#239 Fixing unread count indicator styling for the new sidebar
Diffstat (limited to 'web-ui')
-rw-r--r--web-ui/app/scss/styles.scss19
1 files changed, 17 insertions, 2 deletions
diff --git a/web-ui/app/scss/styles.scss b/web-ui/app/scss/styles.scss
index b8fa7494..ece48319 100644
--- a/web-ui/app/scss/styles.scss
+++ b/web-ui/app/scss/styles.scss
@@ -173,6 +173,7 @@
font-size: 0.7em;
margin-left: 5px;
font-weight: 700;
+ position: relative;
@include border-radius(100px);
}
@@ -269,7 +270,19 @@ section {
}
ul#default-tag-list {
- span {
+ .unread-count, .total-count {
+ font-size: 0.7em;
+ padding: 0px 5px 0;
+ top: 1px;
+ left: 0;
+ border: 1px solid #FFF;
+ position: absolute;
+ opacity: 0.95;
+ }
+ .total-count {
+ background: #999;
+ }
+ span.tag-label {
padding-left: 2px;
}
li {
@@ -316,10 +329,12 @@ section {
ul#custom-tag-list {
padding-bottom: 30px;
li {
+ white-space: nowrap;
+ overflow: hidden;
font-size: 0.8em;
padding: 5px 10px 5px 15px;
- span {
+ span.tag-label {
padding: 5px 20px 5px 38px;
}
}