Gnome-shell: Fix popover issues on v3.36 related to #84

This commit is contained in:
EliverLara
2020-04-27 13:19:16 -05:00
parent 0160c1d8d9
commit 4e258fa0c0
2 changed files with 40 additions and 16 deletions

View File

@@ -524,12 +524,19 @@ StScrollBar {
box-shadow: $depth6;
}
.popup-menu-content { padding: 1em 0em; }
.popup-menu-content { padding: 15px 0; }
.popup-menu-item {
spacing: 12px;
spacing: 5px;
padding: 5px;
&:ltr { padding: .4em 1.75em .4em 0em; }
&:rtl { padding: .4em 0em .4em 1.75em; }
&:ltr { padding-right: 1.75em; padding-left: 0; }
&:rtl { padding-right: 0; padding-left: 1.75em; }
// Fix overlaping text in 'opened windows' title
&:first-child:insensitive {
margin-bottom: 10px;
margin-left: 0;
}
&:checked {
@include gradient();
// background-color: transparentize($selected_bg_color,0.1);
@@ -576,13 +583,20 @@ StScrollBar {
}
.popup-separator-menu-item {
//-margin-horizontal: 24px;
height: 1px; //not really the whole box
margin: 6px 64px;
background-color: transparent;
border-color: transparent;
border-bottom-width: 1px;
border-bottom-style: solid;
&, &-separator {
//-margin-horizontal: 24px;
height: 1px; //not really the whole box
margin: 6px 64px;
background-color: transparent;
border-color: transparent;
border-bottom-width: 1px;
border-bottom-style: solid;
}
.popup-sub-menu & &-separator { //submenu separators
margin: 0 64px 0 32px;
background: transparent;
}
}