1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

dark theme styles

This commit is contained in:
Kyle Spearrin
2018-05-30 15:21:41 -04:00
parent a0b59ab9bd
commit 829d0f22cc
11 changed files with 358 additions and 99 deletions

View File

@@ -37,7 +37,10 @@ $fa-font-path: "~font-awesome/fonts";
&.toast-danger, &.toast-error {
background-image: none !important;
background-color: $brand-danger;
@include themify($themes) {
background-color: themed('dangerColor');
}
&:before {
content: "\f0e7";
@@ -47,7 +50,10 @@ $fa-font-path: "~font-awesome/fonts";
&.toast-warning {
background-image: none !important;
background-color: $brand-warning;
@include themify($themes) {
background-color: themed('warningColor');
}
&:before {
content: "\f071";
@@ -56,7 +62,10 @@ $fa-font-path: "~font-awesome/fonts";
&.toast-info {
background-image: none !important;
background-color: $brand-info;
@include themify($themes) {
background-color: themed('infoColor');
}
&:before {
content: "\f05a";
@@ -65,7 +74,10 @@ $fa-font-path: "~font-awesome/fonts";
&.toast-success {
background-image: none !important;
background-color: $brand-success;
@include themify($themes) {
background-color: themed('successColor');
}
&:before {
content: "\f00C";