Skip to content
Snippets Groups Projects
Commit a01b2c38 authored by Rajab Natshah's avatar Rajab Natshah
Browse files

Issue #3357698: Add SCSS/SASS compiling for selected components with Webpack...

Issue #3357698: Add SCSS/SASS compiling for selected components with Webpack ~5, Bootstrap ~5, PostCSS
parent 649c8b1a
No related branches found
No related tags found
No related merge requests found
.alert {
--bs-alert-bg: transparent;
--bs-alert-padding-x: 1rem;
--bs-alert-padding-y: 1rem;
--bs-alert-margin-bottom: 1rem;
--bs-alert-color: inherit;
--bs-alert-border-color: transparent;
--bs-alert-border: 1px solid var(--bs-alert-border-color);
--bs-alert-border-radius: .375rem;
position: relative;
padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
margin-bottom: var(--bs-alert-margin-bottom);
color: var(--bs-alert-color);
background-color: var(--bs-alert-bg);
border: var(--bs-alert-border);
border-radius: var(--bs-alert-border-radius);
}
.alert-heading {
color: inherit;
}
.alert-link {
font-weight: 700;
}
[dir="ltr"] .alert-dismissible {
padding-right: 3rem;
}
[dir="rtl"] .alert-dismissible {
padding-left: 3rem;
}
.alert-dismissible .btn-close {
position: absolute;
top: 0;
z-index: 2;
padding: 1.25rem 1rem;
}
[dir="ltr"] .alert-dismissible .btn-close {
right: 0;
}
[dir="rtl"] .alert-dismissible .btn-close {
left: 0;
}
.alert-primary {
--bs-alert-color: #084298;
--bs-alert-bg: #cfe2ff;
--bs-alert-border-color: #b6d4fe;
}
.alert-primary .alert-link {
color: #06357a;
}
.alert-secondary {
--bs-alert-color: #41464b;
--bs-alert-bg: #e2e3e5;
--bs-alert-border-color: #d3d6d8;
}
.alert-secondary .alert-link {
color: #34383c;
}
.alert-success {
--bs-alert-color: #0f5132;
--bs-alert-bg: #d1e7dd;
--bs-alert-border-color: #badbcc;
}
.alert-success .alert-link {
color: #0c4128;
}
.alert-info {
--bs-alert-color: #055160;
--bs-alert-bg: #cff4fc;
--bs-alert-border-color: #b6effb;
}
.alert-info .alert-link {
color: #04414d;
}
.alert-warning {
--bs-alert-color: #664d03;
--bs-alert-bg: #fff3cd;
--bs-alert-border-color: #ffecb5;
}
.alert-warning .alert-link {
color: #523e02;
}
.alert-danger {
--bs-alert-color: #842029;
--bs-alert-bg: #f8d7da;
--bs-alert-border-color: #f5c2c7;
}
.alert-danger .alert-link {
color: #6a1a21;
}
.alert-light {
--bs-alert-color: #636464;
--bs-alert-bg: #fefefe;
--bs-alert-border-color: #fdfdfe;
}
.alert-light .alert-link {
color: #4f5050;
}
.alert-dark {
--bs-alert-color: #141619;
--bs-alert-bg: #d3d3d4;
--bs-alert-border-color: #bcbebf;
}
.alert-dark .alert-link {
color: #101214;
}
.vb-tags {
list-style: none;
}
......
......@@ -5,7 +5,6 @@
@import "../../../node_modules/bootstrap/scss/mixins";
@import "../../../node_modules/bootstrap/scss/utilities";
@import "../../../node_modules/bootstrap/scss/alert";
.vb-tags {
padding-left: 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment