adds new classes because alert-info/warning/... are not consistent in the new bootstrap versions

This commit is contained in:
SimonGschnell
2024-03-01 15:36:10 +01:00
parent 621429798c
commit ccf01100bb
4 changed files with 112 additions and 67 deletions
+41
View File
@@ -1,7 +1,48 @@
.select-w500 {
width: 500px;
}
.pl-15 {
padding-left: 15px !important;
}
.bg-info-subtle{
background-color: #D9EDF7 !important;
color: #31708F !important;
border-style: solid !important;
border-width: 1px !important;
border-color: #bce8f1 !important;
}
.bg-warning-subtle{
background-color: #FFF3CD !important;
color: #664D03 !important;
border-style: solid !important;
border-width: 1px !important;
border-color: #FFE69C !important;
}
.bg-success-subtle{
background-color: #D1E7DD !important;
color: #0A3622 !important;
border-style: solid !important;
border-width: 1px !important;
border-color: #A3CFBB !important;
}
.bg-danger-subtle{
background-color: #F8D7DA !important;
color: #672B31 !important;
border-style: solid !important;
border-width: 1px !important;
border-color: #F1AEB5 !important;
}
.bg-primary-subtle{
background-color: #CFE2FF !important;
color: #052C65 !important;
border-style: solid !important;
border-width: 1px !important;
border-color: #9EC5FE !important;
}