Skip to content

Commit

Permalink
Gnome-Shell-3.24&3.26: [AppSwitcher] Fix some minor issues
Browse files Browse the repository at this point in the history
* Enlarge 'down-arrow' size to 16px/12px.
* Try fixing unwanted window height jumping with tall/dense fonts.
  • Loading branch information
tista500 committed Aug 3, 2017
1 parent cdb8ec6 commit e411de3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
9 changes: 8 additions & 1 deletion shell/sass/gnome-shell/3.24/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -920,6 +920,11 @@ StScrollBar {
}

.switcher-list {
> StLabel { // for app titles in AlternativeTabExtension
// prepare for tall/dense font-families
min-height: 13.3px * 2; // use 'px' unit
}

&-item-container { spacing: if($eta == 'false', 8px, 6px); }

.item-box {
Expand Down Expand Up @@ -1018,7 +1023,9 @@ StScrollBar {
}

%osd-panel {
padding: if($eta == 'false', 12px, 8px);
// the value of bottom-padding is shared with '.switcher-arrow' size,
// so do not reduce to < 12px (StDrawingArea)
padding: if($eta == 'false', 16px, 12px);
border-radius: 2px;
border: none;
color: $osd_fg_color;
Expand Down
9 changes: 8 additions & 1 deletion shell/sass/gnome-shell/3.26/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -953,6 +953,11 @@ StScrollBar {
}

.switcher-list {
> StLabel { // for app titles in AlternativeTabExtension
// prepare for tall/dense font-families
min-height: 13.3px * 2; // use 'px' unit
}

&-item-container { spacing: if($eta == 'false', 8px, 6px); }

.item-box {
Expand Down Expand Up @@ -1051,7 +1056,9 @@ StScrollBar {
}

%osd-panel {
padding: if($eta == 'false', 12px, 8px);
// the value of bottom-padding is shared with '.switcher-arrow' size,
// so do not reduce to < 12px (StDrawingArea)
padding: if($eta == 'false', 16px, 12px);
border-radius: 2px;
border: none;
color: $osd_fg_color;
Expand Down

0 comments on commit e411de3

Please sign in to comment.