This commit is contained in:
vinceliuice 2020-07-28 12:08:38 +08:00
parent b7385f7ba6
commit 58ac48257c
3 changed files with 10 additions and 5 deletions

View File

@ -830,7 +830,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
/* Popovers/Menus */ /* Popovers/Menus */
.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { .candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog {
background-color: rgba(36, 36, 36, 0.95); background-color: #242424;
border-radius: 14px; border-radius: 14px;
border: none; border: none;
} }
@ -971,7 +971,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
.candidate-popup-boxpointer { .candidate-popup-boxpointer {
-arrow-border-radius: 2px; -arrow-border-radius: 2px;
-arrow-background-color: rgba(36, 36, 36, 0.95); -arrow-background-color: #242424;
-arrow-border-width: 0; -arrow-border-width: 0;
-arrow-border-color: transparent; -arrow-border-color: transparent;
-arrow-base: 5px; -arrow-base: 5px;

View File

@ -830,7 +830,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
/* Popovers/Menus */ /* Popovers/Menus */
.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { .candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog {
background-color: rgba(245, 245, 245, 0.95); background-color: #f5f5f5;
border-radius: 14px; border-radius: 14px;
border: none; border: none;
} }
@ -971,7 +971,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
.candidate-popup-boxpointer { .candidate-popup-boxpointer {
-arrow-border-radius: 2px; -arrow-border-radius: 2px;
-arrow-background-color: rgba(245, 245, 245, 0.95); -arrow-background-color: #f5f5f5;
-arrow-border-width: 0; -arrow-border-width: 0;
-arrow-border-color: transparent; -arrow-border-color: transparent;
-arrow-base: 5px; -arrow-base: 5px;

View File

@ -664,7 +664,12 @@ $barlevel_boder_color: if($variant == 'light', rgba(black, 0.12), transparent);
/* Popovers/Menus */ /* Popovers/Menus */
$dialog_bg_color: if($variant == 'light', rgba($bg_color, 0.95), rgba($base_color, 0.95)); $dialog_bg_color: if($variant == 'light', $bg_color, $base_color);
@if $trans=='true' {
$dialog_bg_color: if($variant == 'light', rgba($bg_color, 0.95), rgba($base_color, 0.95));
}
$popop_menuitem_radius: $wm_radius - 4px; $popop_menuitem_radius: $wm_radius - 4px;
%theme_dialogs { %theme_dialogs {