Tint toast glass effect with message color

This commit is contained in:
Koha9
2025-07-13 07:18:14 +09:00
parent bf67d702dc
commit 43a9c01f13
2 changed files with 13 additions and 2 deletions
+12 -1
View File
@@ -5,5 +5,16 @@
/* Toast with frosted glass effect */
.glass-toast {
backdrop-filter: blur(8px);
background-color: rgba(var(--bs-body-bg-rgb), 0.75) !important;
}
.glass-toast-success {
background-color: rgba(var(--bs-success-rgb), 0.75) !important;
}
.glass-toast-danger {
background-color: rgba(var(--bs-danger-rgb), 0.75) !important;
}
.glass-toast-info {
background-color: rgba(var(--bs-info-rgb), 0.75) !important;
}