summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/_mixins.scss
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/scss/_mixins.scss')
-rw-r--r--web-ui/app/scss/_mixins.scss18
1 files changed, 17 insertions, 1 deletions
diff --git a/web-ui/app/scss/_mixins.scss b/web-ui/app/scss/_mixins.scss
index 2ce4999a..e1f06425 100644
--- a/web-ui/app/scss/_mixins.scss
+++ b/web-ui/app/scss/_mixins.scss
@@ -133,7 +133,7 @@
input {
display: inline;
font-size: 1em;
- padding: 2px 5px;
+ padding: 1px 5px;
width: 120px;
margin: 0;
}
@@ -202,11 +202,27 @@
&.selected {
border: 1px solid #666666;
}
+
+ &:before {
+ font-family: FontAwesome;
+ padding-right: 4px;
+
+ }
&.encrypted {
border-bottom-color: $will_be_encrypted;
+
+ &:before {
+ color: $will_be_encrypted;
+ content: "\f023 ";
+ }
}
&.not-encrypted {
border-bottom-color: $wont_be_encrypted;
+
+ &:before {
+ color: $wont_be_encrypted;
+ content: "\f13e ";
+ }
}
background-color: #F5F5F5;
border: 1px solid #D9D9D9;