Workaround gnome-shell 3.30 popup-sub-menu glitch (#147)

https://github.com/NicoHood/arc-theme/issues/135
master
jnsh 2018-10-20 18:55:27 +03:00 committed by David Mohammed
parent 7ff5b36c28
commit 875eb9d83f
1 changed files with 9 additions and 3 deletions

View File

@ -623,9 +623,15 @@ StScrollBar {
.popup-menu-arrow { } //defined globally in the TOP BAR
.popup-sub-menu {
background: none;
box-shadow: none;
border-image: url("#{$asset_path}/menu/submenu.svg") 9 9 9 9;
background: if($variant=='light', rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15));
box-shadow: inset 0 -1px if($variant=='light', rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.15));
margin: 0 4px;
.popup-menu-item.selected {
background-color: $selected_bg_color;
border-image: none;
margin: 0;
}
}
.popup-menu-content { padding: 1em 0em 1em 0em; }