This commit is contained in:
vinceliuice
2024-04-13 02:53:20 +08:00
parent bff2f811d8
commit 96f65423f4
2 changed files with 8 additions and 8 deletions

View File

@@ -24,10 +24,10 @@ $cakeisalie: "This stylesheet is generated, DO NOT EDIT";
*/ */
// Stage // Stage
// stage { stage {
// @include fontsize($font_size); @include fontsize($font_size);
// color: $text; color: $text;
// } }
/* General Typography */ /* General Typography */

View File

@@ -3120,22 +3120,22 @@ calendar {
***********/ ***********/
messagedialog { // Message Dialog styling messagedialog { // Message Dialog styling
&.background { &.background {
background-color: if($variant == 'dark', background(f), background(c)); background-color: $surface;
.titlebar { .titlebar {
&, &:backdrop { &, &:backdrop {
background-color: if($variant == 'dark', background(f), background(c)); background-color: $surface;
} }
} }
&.csd { // rounded bottom border styling for csd version &.csd { // rounded bottom border styling for csd version
border-bottom-left-radius: $window-radius; border-bottom-left-radius: $window-radius;
border-bottom-right-radius: $window-radius; border-bottom-right-radius: $window-radius;
background-color: if($variant == 'dark', background(f), background(c)); background-color: $surface;
.titlebar { .titlebar {
&, &:backdrop { &, &:backdrop {
background-color: if($variant == 'dark', background(f), background(c)); background-color: $surface;
} }
} }
} }