blob: 6d68066b3db40983f8eb55570db6d3227d322edf (
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 \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";
}
}
}
}
|