summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/_security.scss
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/scss/_security.scss')
-rw-r--r--web-ui/app/scss/_security.scss47
1 files changed, 47 insertions, 0 deletions
diff --git a/web-ui/app/scss/_security.scss b/web-ui/app/scss/_security.scss
new file mode 100644
index 00000000..6d68066b
--- /dev/null
+++ b/web-ui/app/scss/_security.scss
@@ -0,0 +1,47 @@
+.security-status {
+ margin: 0 0 5px;
+ clear: both;
+ span {
+ display: inline-block;
+ padding: 2px 5px;
+ white-space: nowrap;
+ background: $success;
+ color: #FFF;
+ &:before {
+ font-family: FontAwesome;
+ }
+ &.encrypted {
+ &:before {
+ content: "\f023 \f00c";
+ }
+ &.encryption-failure {
+ background: $error;
+ &:before {
+ content: "\f023 \f05e";
+ }
+ }
+ }
+ &.signed {
+ &:before {
+ content: "\f007 \f00c";
+ }
+ &.signature-not-trusted {
+ background: $error;
+ &:before {
+ content: "\f007 \f05e";
+ }
+ }
+ }
+ &[class^=not-], &.signature-expired, &.signature-revoked {
+ background: $attention;
+ &:before {
+ content: "\f007 \f12a"
+ }
+ }
+ &.not-encrypted {
+ &:before {
+ content: "\f023 \f12a";
+ }
+ }
+ }
+}