summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/views/_compose-view.scss
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2017-08-02 00:05:25 +0200
committerRuben Pollan <meskio@sindominio.net>2017-08-02 00:05:25 +0200
commitc49293b7f3eff7a478fc388768366e7b025f7da0 (patch)
tree00e205a21f9541f5bd4debd57136eee9ecfdfcc8 /web-ui/app/scss/views/_compose-view.scss
parentccb4f03fe5854793742bed68ee5a83c343899ee1 (diff)
[feat] Display mixnet status on outgoing emails
Diffstat (limited to 'web-ui/app/scss/views/_compose-view.scss')
-rw-r--r--web-ui/app/scss/views/_compose-view.scss29
1 files changed, 29 insertions, 0 deletions
diff --git a/web-ui/app/scss/views/_compose-view.scss b/web-ui/app/scss/views/_compose-view.scss
index 61e785a0..be193186 100644
--- a/web-ui/app/scss/views/_compose-view.scss
+++ b/web-ui/app/scss/views/_compose-view.scss
@@ -344,6 +344,35 @@
background-color: $background_light_grey;
border: 1px solid $border_light_grey;
border-radius: 2px;
+
+ .recipient-mixnet {
+ &:before {
+ font-family: FontAwesome;
+ padding-right: 6px;
+ font-size: 1.4em;
+ }
+
+ &.mixnet {
+ &:before {
+ color: $will_be_mixed;
+ content: "\f135";
+ }
+ }
+
+ &.unsuported-mixnet {
+ &:before {
+ color: $unsuported_mixed;
+ content: "\f135";
+ }
+ }
+
+ &.not-mixnet {
+ &:before {
+ color: $unsuported_mixed;
+ content: "";
+ }
+ }
+ }
}
.recipient-del {