[DURACOM-195] fix prefix of custom CSS variables

(cherry picked from commit 46fe7f63e3)
This commit is contained in:
Davide Negretti
2024-02-02 13:45:48 +01:00
parent 9518f70b42
commit 8efc401811
5 changed files with 13 additions and 11 deletions

View File

@@ -24,7 +24,7 @@
}
&.ds-warning {
background-color: var(--bs-warning-bg);
background-color: var(--ds-warning-bg);
.ds-flex-cell {
border: 1px solid var(--bs-warning);
@@ -32,7 +32,7 @@
}
&.ds-danger {
background-color: var(--bs-danger-bg);
background-color: var(--ds-danger-bg);
.ds-flex-cell {
border: 1px solid var(--bs-danger);
@@ -40,7 +40,7 @@
}
&.ds-success {
background-color: var(--bs-success-bg);
background-color: var(--ds-success-bg);
.ds-flex-cell {
border: 1px solid var(--bs-success);

View File

@@ -1,5 +1,5 @@
.ds-success {
background-color: var(--bs-success-bg);
background-color: var(--ds-success-bg);
border: 1px solid var(--bs-success);
}

View File

@@ -7,7 +7,7 @@
border: 1px solid var(--bs-gray-200);
&.ds-success {
background-color: var(--bs-success-bg);
background-color: var(--ds-success-bg);
border: 1px solid var(--bs-success);
}
}

View File

@@ -29,17 +29,11 @@
--bs-teal: #{$teal};
--bs-cyan: #{$cyan};
--bs-primary: #{$primary};
--bs-primary-bg: #{$ds-primary-bg};
--bs-secondary: #{$secondary};
--bs-secondary-bg: #{$ds-secondary-bg};
--bs-success: #{$success};
--bs-success-bg: #{$ds-success-bg};
--bs-info: #{$info};
--bs-info-bg: #{$ds-info-bg};
--bs-warning: #{$warning};
--bs-warning-bg: #{$ds-warning-bg};
--bs-danger: #{$danger};
--bs-danger-bg: #{$ds-danger-bg};
--bs-light: #{$light};
--bs-dark: #{$dark};

View File

@@ -124,4 +124,12 @@
--ds-comcol-logo-max-width: 500px;
--ds-comcol-logo-max-height: 500px;
--ds-primary-bg: #{$ds-primary-bg};
--ds-secondary-bg: #{$ds-secondary-bg};
--ds-success-bg: #{$ds-success-bg};
--ds-info-bg: #{$ds-info-bg};
--ds-warning-bg: #{$ds-warning-bg};
--ds-danger-bg: #{$ds-danger-bg};
}