summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/_security.scss
blob: 8e9a6b5dcbd7a3eebb77f0aff213bd65694cc550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.security-status {
  margin: 0 0 5px;
  clear: both;
  span {
    display: inline-block;
    padding: 2px 5px;
    white-space: nowrap;
    background: $success;
    color: $white;
    &:before {
      font-family: FontAwesome;
    }
    &.encrypted {
      &:before {
        content: "\f023";
      }
      &.encryption-error {
        background: $attention;
        &:before {
          content: "\f023 \f057";
        }
      }
    }
    &.signed {
      &:before {
        content: "\f00c";
      }
      &.signature-not-trusted {
        background: $error;
        &:before {
          content: "\f05e";
        }
      }
    }
    &[class^=not-], &.signature-expired, &.signature-revoked {
      background: $attention;
      &:before {
        content: "\f05e"
      }
    }
    &.not-encrypted {
      &:before {
        content: "\f13e ";
      }
    }
  }
}