Fix transparent MessageDialogs

This commit is contained in:
Pepijn Bakker 2023-12-01 15:23:51 +01:00
parent a6e500a0ba
commit 13947b2ba1

View file

@ -3132,15 +3132,11 @@ messagedialog { // Message Dialog styling
border-bottom-left-radius: $window-radius;
border-bottom-right-radius: $window-radius;
@if $variant == 'dark' {
background-color: transparent;
} @else {
background-color: $surface;
}
background-color: $surface;
.titlebar {
&, &:backdrop {
background-color: if($variant == 'dark', transparent, $surface);
background-color: if($variant == 'dark', $base, $surface);
}
}
}