fixes #2427 add styles for infos banner

Introduced .infos-message class with specific background, text color, and border styles for both light and dark themes in standard pages.
This commit is contained in:
Linty
2025-10-31 14:47:51 +01:00
parent 696236e76b
commit 615867a857
+14 -1
View File
@@ -382,7 +382,8 @@ a.btn-main{
text-decoration:underline;
}
.success-message{
.success-message,
.infos-message {
width: calc(100% - 34px);
display: block;
padding: 15px;
@@ -950,6 +951,12 @@ input:checked + .slider:before, input:checked + .slider::after {
border-left: 4px solid #6DCE5E;
}
.light .infos-message{
background-color: #bde5f8;
color: #00529b !important;
border-left: 4px solid #00529b;
}
.light input:checked + .slider {
background-color: #FFA646;
}
@@ -1077,6 +1084,12 @@ input:checked + .slider:before, input:checked + .slider::after {
border-left: 4px solid #AAF6E4;
}
.dark .infos-message{
background-color: #4f71a4;
color: #bad6ff !important;
border-left: 4px solid #bad6ff;
}
.dark .btn-secondary {
background-color: #202020!important;
color: white!important;