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
diff --git a/src/assets/styles/bmc/custom/_alert.scss b/src/assets/styles/bmc/custom/_alert.scss
index 741eb69..0e78ba6 100644
--- a/src/assets/styles/bmc/custom/_alert.scss
+++ b/src/assets/styles/bmc/custom/_alert.scss
@@ -46,25 +46,25 @@
&.alert-info {
border-left-color: theme-color("info");
- background-color: $info-light;
+ background-color: theme-color-light("info");
fill: theme-color("info");
}
&.alert-success {
border-left-color: theme-color("success");
- background-color: $success-light;
+ background-color: theme-color-light("success");
fill: theme-color("success");
}
&.alert-danger {
border-left-color: theme-color("danger");
- background-color: $danger-light;
+ background-color: theme-color-light("danger");
fill: theme-color("danger");
}
&.alert-warning {
border-left-color: theme-color("warning");
- background-color: $warning-light;
+ background-color: theme-color-light("warning");
fill: theme-color("warning");
}
}
\ No newline at end of file