blob: 0c2baa52da22b6a0df964c3b77175a3666ef6170 (
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: #FFF;
&: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 ";
}
}
}
}
|