Use predefined colours

This commit is contained in:
Jiiks 2018-08-12 15:46:17 +03:00
parent e8688c0ce4
commit 5f76d304f6
2 changed files with 7 additions and 7 deletions

View File

@ -16,7 +16,7 @@
&.bd-e2eeLock {
&.bd-error {
fill: #cc3e3e;
fill: $colerr;
}
&.bd-ok {
@ -24,7 +24,7 @@
}
&.bd-warn {
fill: #ccab3e;
fill: $colwarn;
animation: bd-pulse 2s ease-in-out infinite;
}
}
@ -45,13 +45,13 @@
position: relative;
display: inline-block;
top: 4px;
E2EE.encryptNewMessages
.bd-e2eeMdBtn {
cursor: pointer;
&.bd-e2eeLock {
&.bd-error {
fill: #cc3e3e;
fill: $colerr;
}
&.bd-ok {
@ -59,7 +59,7 @@
}
&.bd-warn {
fill: #ccab3e;
fill: $colwarn;
}
&.bd-loading {
@ -93,7 +93,7 @@
}
.bd-warn svg {
fill: #ccab3e;
fill: $colwarn;
}
.bd-popover-wrapper,

View File

@ -3,5 +3,5 @@ $colbdgreen: #3ecc9c;
$colbdblue: $colbdgreen;
$colerr: #d84040;
$colwarn: #faa61a;
$colok: #43b581;
$colok: $colbdgreen;
$coldimwhite: #b9bbbe;