diff options
author | Jefferson Stachelski <jstachel@thoughtworks.com> | 2015-10-21 17:50:48 -0200 |
---|---|---|
committer | Jefferson Stachelski <jstachel@thoughtworks.com> | 2015-10-21 17:50:48 -0200 |
commit | 1c149819bd57de8b85351cd4a631a181faac9eee (patch) | |
tree | 624c715e3ab83850cd965ed5171cb78d84b80c28 /web-ui/app/scss | |
parent | 4d5f54625b13542237bd5a157fc3238828dd1e26 (diff) | |
parent | 949885a3ba8ba23a2e7a5785814be08d31708562 (diff) |
Merge branch 'master' of https://github.com/SamuelToh/pixelated-user-agent
Diffstat (limited to 'web-ui/app/scss')
-rw-r--r-- | web-ui/app/scss/_mixins.scss | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/web-ui/app/scss/_mixins.scss b/web-ui/app/scss/_mixins.scss index e1f06425..6546c224 100644 --- a/web-ui/app/scss/_mixins.scss +++ b/web-ui/app/scss/_mixins.scss @@ -197,12 +197,12 @@ display: inline-block; margin-right: -3px; flex: none; + position: relative; .recipient-value { &.selected { border: 1px solid #666666; } - &:before { font-family: FontAwesome; padding-right: 4px; @@ -224,12 +224,32 @@ content: "\f13e "; } } + &.deleting span { + text-decoration: line-through; + } background-color: #F5F5F5; border: 1px solid #D9D9D9; border-radius: 2px; margin: 3px; padding: 5px; } + + .recipient-del { + position: relative; + + &:before { + margin-left: 0.4em; + # padding-left: 0.4em; + font-weight: bold; + content: "x" + } + &.deleteTooltip:hover:after { + position: absolute; + content: "click to remove"; + font-size: 0.5rem; + @include tooltip(25px, 0px); + } + } } } } |