diff options
Diffstat (limited to 'web-ui')
-rw-r--r-- | web-ui/app/scss/_mixins.scss | 9 | ||||
-rw-r--r-- | web-ui/app/templates/mails/full_view.hbs | 1 |
2 files changed, 9 insertions, 1 deletions
diff --git a/web-ui/app/scss/_mixins.scss b/web-ui/app/scss/_mixins.scss index 14a1679f..0bfc93a3 100644 --- a/web-ui/app/scss/_mixins.scss +++ b/web-ui/app/scss/_mixins.scss @@ -81,6 +81,12 @@ } @mixin tags { + i.tags-label { + vertical-align: bottom; + font-size: medium; + color: #999; + } + ul.tags { li { font-size: 0.6rem; @@ -105,7 +111,7 @@ background: transparent; border: 1px solid #DDD; line-height: 0; - padding: 3px 2px 2px 2px; + padding: 1px 2px; @include border-radius(2px); &:hover { opacity: 1; @@ -114,6 +120,7 @@ i { &:before { vertical-align: middle; + font-size: smaller; } } } diff --git a/web-ui/app/templates/mails/full_view.hbs b/web-ui/app/templates/mails/full_view.hbs index c72b3af9..50ac2776 100644 --- a/web-ui/app/templates/mails/full_view.hbs +++ b/web-ui/app/templates/mails/full_view.hbs @@ -43,6 +43,7 @@ <div class="tagsArea"> <ul class="tags"> + <i class="tags-label fa fa-tags"></i> {{#each tags }} <li class="tag" data-tag="{{this}}">{{ this }}</li> {{/each }} |