summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/custom
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets/styles/bmc/custom')
-rw-r--r--src/assets/styles/bmc/custom/_alert.scss8
-rw-r--r--src/assets/styles/bmc/custom/_badge.scss2
-rw-r--r--src/assets/styles/bmc/custom/_toasts.scss8
3 files changed, 9 insertions, 9 deletions
diff --git a/src/assets/styles/bmc/custom/_alert.scss b/src/assets/styles/bmc/custom/_alert.scss
index 741eb692..0e78ba64 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
diff --git a/src/assets/styles/bmc/custom/_badge.scss b/src/assets/styles/bmc/custom/_badge.scss
index 87b96e61..0b88b499 100644
--- a/src/assets/styles/bmc/custom/_badge.scss
+++ b/src/assets/styles/bmc/custom/_badge.scss
@@ -16,6 +16,6 @@
}
.badge-primary {
- background-color: $info-light;
+ background-color: theme-color-light("info");
color: theme-color("info");
} \ No newline at end of file
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