diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2015-04-09 11:49:16 -0300 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2015-04-09 11:52:47 -0300 |
commit | 07feec923d11e10af311797d29cd1dc8c799bbc8 (patch) | |
tree | 27c8c69a8bfb123c0f18bd29d842665b84abf376 | |
parent | bcdb3b4d93508f1f0adbce9ea1d4e1e635a90fa1 (diff) |
Changing icons for encryption statuses on email headers
-rw-r--r-- | web-ui/app/scss/_security.scss | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/web-ui/app/scss/_security.scss b/web-ui/app/scss/_security.scss index be306d86..2644fc3e 100644 --- a/web-ui/app/scss/_security.scss +++ b/web-ui/app/scss/_security.scss @@ -12,35 +12,35 @@ } &.encrypted { &:before { - content: "\f023 \f00c"; + content: "\f023 "; } &.encryption-error { background: $attention; &:before { - content: "\f023 \f12a"; + content: "\f023 \f057"; } } } &.signed { &:before { - content: "\f007 \f00c"; + content: "\f00c"; } &.signature-not-trusted { background: $error; &:before { - content: "\f007 \f05e"; + content: "\f05e"; } } } &[class^=not-], &.signature-expired, &.signature-revoked { background: $attention; &:before { - content: "\f007 \f12a" + content: "\f05e" } } &.not-encrypted { &:before { - content: "\f023 \f12a"; + content: "\f13e "; } } } |