From 0c96432d7d6b72f84d49106afbdfd744716bef58 Mon Sep 17 00:00:00 2001 From: Gabriel Albo Date: Tue, 14 Apr 2015 17:51:43 -0300 Subject: Adding icons to help identify whether an email is encryptable or not for a given address --- web-ui/app/scss/_mixins.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'web-ui/app/scss/_mixins.scss') 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; -- cgit v1.2.3