Skip to content

Commit

Permalink
Fix apps view (#4056)
Browse files Browse the repository at this point in the history
The apps view shows an extra rectangle in the icons when they
are hovered by the cursor.

This patch fixes it (extracted from patch for gnome 46 for
Dash to Dock).
  • Loading branch information
sergio-costas authored Mar 18, 2024
1 parent e3b4b87 commit 20b1f2e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions gnome-shell/src/gnome-shell-sass/_dock.scss
Original file line number Diff line number Diff line change
Expand Up @@ -240,11 +240,14 @@ $dock_style_modes: [null, shrink, extended, extended-shrink];
border: 0px;
}

.overview-tile .overview-icon, .show-apps .overview-icon {
.dash-item-container .overview-tile .overview-icon,
.dash-item-container .show-apps .overview-icon {
background-color: rgba(255,255,255,0);
}

.overview-tile:hover .overview-icon, .overview-tile.focused .overview-icon, .show-apps:hover .overview-icon {
.dash-item-container .overview-tile:hover .overview-icon,
.dash-item-container .overview-tile.focused .overview-icon,
.dash-item-container .show-apps:hover .overview-icon {
background-color: $remark_color;
}

Expand Down

0 comments on commit 20b1f2e

Please sign in to comment.