fix: light theme for all admin modals

This commit is contained in:
chris 2026-05-21 12:02:56 -04:00
parent 1435964f6f
commit 55055ae9bc

View File

@ -167,3 +167,23 @@
#response { #response {
border-radius: 10px; border-radius: 10px;
} }
/* ── Modal light theme ──────────────────────────────────────────────────────── */
.modal-card-head {
background-color: #f5f5f5;
border-bottom-color: #dbdbdb;
}
.modal-card-title {
color: #363636;
}
.modal-card-head .delete {
background-color: rgba(0, 0, 0, 0.2);
}
.modal-card-body {
background-color: #ffffff;
color: #363636;
}
.modal-card-foot {
background-color: #f5f5f5;
border-top-color: #dbdbdb;
}