From 20b1f2e06cc6adf0fca8e2f998d5b968de38d6be Mon Sep 17 00:00:00 2001 From: Sergio Costas Date: Mon, 18 Mar 2024 17:25:16 +0100 Subject: [PATCH] Fix apps view (#4056) 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). --- gnome-shell/src/gnome-shell-sass/_dock.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnome-shell/src/gnome-shell-sass/_dock.scss b/gnome-shell/src/gnome-shell-sass/_dock.scss index bb4595b468..5f7f5815b3 100644 --- a/gnome-shell/src/gnome-shell-sass/_dock.scss +++ b/gnome-shell/src/gnome-shell-sass/_dock.scss @@ -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; }