summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/views/_security-labels.scss
diff options
context:
space:
mode:
authorCaio Carrara <caiocarrara@gmail.com>2016-03-28 10:32:51 -0300
committerCaio Carrara <caiocarrara@gmail.com>2016-03-28 10:32:51 -0300
commit187b2b36f678f99c3112bed5128bea560e120e66 (patch)
treed85c8ecdad95be35f5106f0321395908fd9320f9 /web-ui/app/scss/views/_security-labels.scss
parent28341464bf5dd3d9a2600a2cf8a08ee411cf848c (diff)
parent0ab2b5d73f42536ca410485bf7e8b86f9e1d9df7 (diff)
Merge pull request #659 from cacarrara/security-labels
Issue #647: Refactor security labels stylesheet
Diffstat (limited to 'web-ui/app/scss/views/_security-labels.scss')
-rw-r--r--web-ui/app/scss/views/_security-labels.scss67
1 files changed, 67 insertions, 0 deletions
diff --git a/web-ui/app/scss/views/_security-labels.scss b/web-ui/app/scss/views/_security-labels.scss
new file mode 100644
index 00000000..3a15d99b
--- /dev/null
+++ b/web-ui/app/scss/views/_security-labels.scss
@@ -0,0 +1,67 @@
+.security-status {
+ margin: 0 0 5px;
+
+ &__label {
+ display: inline-block;
+ padding: 2px 6px;
+ white-space: nowrap;
+ background: $success;
+ color: $white;
+ border-radius: 12px;
+
+ &:before {
+ font-family: FontAwesome;
+ }
+
+ &--encrypted {
+ &:before {
+ content: "\f023";
+ }
+
+ &--with-error {
+ background: $attention;
+ &:before {
+ content: "\f023 \f057";
+ }
+ }
+ }
+
+ &--not-encrypted {
+ background: $attention;
+
+ &:before {
+ content: "\f13e ";
+ }
+ }
+
+ &--signed {
+ &:before {
+ content: "\f00c";
+ }
+
+ &--revoked, &--expired {
+ background: $attention;
+
+ &:before {
+ content: "\f05e";
+ }
+ }
+
+ &--not-trusted {
+ background: $error;
+
+ &:before {
+ content: "\f05e";
+ }
+ }
+ }
+
+ &--not-signed {
+ background: $attention;
+
+ &:before {
+ content: "\f05e";
+ }
+ }
+ }
+}