This commit is contained in:
Vince 2021-04-09 20:16:57 +08:00
parent 95c51b30f8
commit a626e49518
2 changed files with 12 additions and 4 deletions

View File

@ -3363,12 +3363,14 @@ calendar {
// Dialogs
//
$messagedialog_bg: if($trans == 'true', rgba($bg_color, 0.95), $bg_color);
messagedialog { // Message Dialog styling
&.background { background-color: rgba($bg_color, 0.95); }
&.background { background-color: rgba($messagedialog_bg, 1); }
.titlebar {
min-height: 28px;
background-color: rgba($bg_color, 0.95);
background-color: rgba($messagedialog_bg, 1);
border: none;
}
@ -3417,6 +3419,8 @@ messagedialog { // Message Dialog styling
border-bottom-right-radius: $wm_radius;
border: none;
}
&.background, .titlebar { background-color: $messagedialog_bg; }
}
}

View File

@ -3558,12 +3558,14 @@ calendar {
// Dialogs
//
$messagedialog_bg: if($trans == 'true', rgba($bg_color, 0.95), $bg_color);
window.dialog.message { // Message Dialog styling
&.background { background-color: rgba($bg_color, 0.95); }
&.background { background-color: rgba($messagedialog_bg, 1); }
.titlebar {
min-height: 28px;
background-color: rgba($bg_color, 0.95);
background-color: rgba($messagedialog_bg, 1);
border: none;
}
@ -3621,6 +3623,8 @@ window.dialog.message { // Message Dialog styling
border-bottom-right-radius: $wm_radius;
border: none;
}
&.background, .titlebar { background-color: $messagedialog_bg; }
}
}