blob: 2a6b60aa59c42b8d9bb8c3d33c4a078d7b505abf (
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
48
49
50
51
52
53
|
.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";
}
}
&.encryption-error {
background: $attention;
&:before {
content: "\f023 \f12a";
}
}
}
&.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";
}
}
}
}
|