This commit is contained in:
Vince 2021-08-21 12:20:18 +08:00
parent 4f5a1ea8d0
commit 981252ef24
3 changed files with 6 additions and 6 deletions

View File

@ -13,9 +13,9 @@
.candidate-popup-content { .candidate-popup-content {
@extend %theme_dialogs; @extend %theme_dialogs;
color: $hint_fg_color; color: $hint_fg_color;
box-shadow: 0 8px 16px 0 rgba(black, 0.25); box-shadow: 0 4px 10px 0 rgba(black, 0.25);
border: 1px solid if($variant=='light', rgba(black, 0), rgba(black, 0.75)); border: 1px solid if($variant=='light', rgba(black, 0), rgba(black, 0.75));
margin: ($container_padding / 2) 8px; margin: ($container_padding / 2) 12px 17px 12px;
padding: $container_padding + 2px; padding: $container_padding + 2px;
spacing: $container_padding; spacing: $container_padding;
} }

View File

@ -108,16 +108,16 @@ $panel_height: $menuitem_size;
} }
&:hover, &:active, &:overview, &:focus, &:checked { &:hover, &:active, &:overview, &:focus, &:checked {
box-shadow: none; box-shadow: none !important;
// The clock display needs to have the background on .clock because // The clock display needs to have the background on .clock because
// we want to exclude the do-not-disturb indicator from the background // we want to exclude the do-not-disturb indicator from the background
&.clock-display { &.clock-display {
box-shadow: none; box-shadow: none !important;
background-color: transparent !important; background-color: transparent !important;
.clock { .clock {
box-shadow: none; box-shadow: none !important;
} }
} }
} }

View File

@ -26,7 +26,7 @@ $popop_menuitem_radius: $wm_radius - 4px;
@extend %theme_dialogs; @extend %theme_dialogs;
box-shadow: 0 5px 10px 0 rgba(black, 0.18); box-shadow: 0 5px 10px 0 rgba(black, 0.18);
border: 1px solid if($variant=='light', rgba(black, 0), rgba(black, 0.75)); border: 1px solid if($variant=='light', rgba(black, 0), rgba(black, 0.75));
margin: 4px 10px 17px 12px !important; margin: 4px 12px 17px 12px !important;
@include font(body-1); @include font(body-1);
} }