summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/custom/_toasts.scss
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-08-10 21:17:12 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-08-17 17:54:03 +0300
commit1f4eaa1695bde5891a786784a8845b54ad18e1f9 (patch)
tree55ec0e05250824df30674382207e39e8bfd90acc /src/assets/styles/bmc/custom/_toasts.scss
parentf0a1ac7eb7cf724d412acd2c0c9a3bf3d1fcc204 (diff)
downloadwebui-vue-1f4eaa1695bde5891a786784a8845b54ad18e1f9.tar.xz
Update use of Sass variable background variant colors
The hardcoded Sass variable assignments to lighter variant background colors does not work well with the theme-color functions that are used. Use Bootstrap's built in theme-color-level function to programatically get a lighter variant color to use for component backgrounds. https://getbootstrap.com/docs/4.5/getting-started/theming/#functions Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I9d5a1a66c92d347ba1797be5e0810a24c34094f9
Diffstat (limited to 'src/assets/styles/bmc/custom/_toasts.scss')
-rw-r--r--src/assets/styles/bmc/custom/_toasts.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/assets/styles/bmc/custom/_toasts.scss b/src/assets/styles/bmc/custom/_toasts.scss
index c3e91b8a..42b91dbb 100644
--- a/src/assets/styles/bmc/custom/_toasts.scss
+++ b/src/assets/styles/bmc/custom/_toasts.scss
@@ -25,20 +25,20 @@
.b-toast-success .toast {
border-left-color: theme-color("success")!important;
- background-color: $success-light;
+ background-color: theme-color-light("success")!important;
}
.b-toast-info .toast {
border-left-color: theme-color("info")!important;
- background-color: $info-light;
+ background-color: theme-color-light("info")!important;
}
.b-toast-danger .toast {
border-left-color: theme-color("danger")!important;
- background-color: $danger-light;
+ background-color: theme-color-light("danger")!important;
}
.b-toast-warning .toast {
border-left-color: theme-color("warning")!important;
- background-color: $warning-light;
+ background-color: theme-color-light("warning")!important;
} \ No newline at end of file