summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/_security.scss
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/scss/_security.scss')
-rw-r--r--web-ui/app/scss/_security.scss48
1 files changed, 0 insertions, 48 deletions
diff --git a/web-ui/app/scss/_security.scss b/web-ui/app/scss/_security.scss
deleted file mode 100644
index ff36cb3e..00000000
--- a/web-ui/app/scss/_security.scss
+++ /dev/null
@@ -1,48 +0,0 @@
-.security-status {
- margin: 0 0 5px;
- clear: both;
- span {
- display: inline-block;
- padding: 2px 6px;
- white-space: nowrap;
- background: $success;
- color: $white;
- border-radius: 12px;
- &: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 ";
- }
- }
- }
-}