diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2015-04-14 17:51:43 -0300 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2015-04-14 17:57:14 -0300 |
commit | 0c96432d7d6b72f84d49106afbdfd744716bef58 (patch) | |
tree | db74b4277dbd56eca61df651e1163a02417e99ed /web-ui | |
parent | 82a566e4df79913fb7f2c38c7a7800a61cb9cf29 (diff) |
Adding icons to help identify whether an email is encryptable or not for a given address
Diffstat (limited to 'web-ui')
-rw-r--r-- | web-ui/app/scss/_mixins.scss | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/web-ui/app/scss/_mixins.scss b/web-ui/app/scss/_mixins.scss index d6233db7..f06e8c7d 100644 --- a/web-ui/app/scss/_mixins.scss +++ b/web-ui/app/scss/_mixins.scss @@ -204,9 +204,23 @@ } &.encrypted { border-bottom-color: $will_be_encrypted; + + &:before { + font-family: FontAwesome; + padding-right: 4px; + color: $will_be_encrypted; + content: "\f023 "; + } } &.not-encrypted { border-bottom-color: $wont_be_encrypted; + + &:before { + font-family: FontAwesome; + padding-right: 4px; + color: $wont_be_encrypted; + content: "\f13e "; + } } background-color: #F5F5F5; border: 1px solid #D9D9D9; |