From 28264dd39b1bfc03674d5689592144bf00c68563 Mon Sep 17 00:00:00 2001 From: ediblerope Date: Thu, 16 Apr 2026 13:28:39 +0100 Subject: [PATCH] Revert GNOME shell accent and app grid focus changes The focus ring overrides didn't take effect and the accent color change made some elements look worse. Co-Authored-By: Claude Opus 4.6 --- templates/gnome-shell.css | 39 ++------------------------------------- 1 file changed, 2 insertions(+), 37 deletions(-) diff --git a/templates/gnome-shell.css b/templates/gnome-shell.css index b88fcfc..b1c66f4 100644 --- a/templates/gnome-shell.css +++ b/templates/gnome-shell.css @@ -2,8 +2,8 @@ /* Override system accent color variables */ stage { - -st-accent-color: {{colors.primary.default.hex}} !important; - -st-accent-fg-color: {{colors.on_primary.default.hex}} !important; + -st-accent-color: {{colors.primary_container.default.hex}} !important; + -st-accent-fg-color: {{colors.on_primary_container.default.hex}} !important; } #panel { @@ -330,38 +330,3 @@ stage { #dash .dash-item-container .grid-search-result:focus .overview-icon { background-color: {{colors.surface_container_high.default.hex}} !important; } - -/* App grid edit mode button (pencil icon) */ -.icon-button.edit-button, -.app-grid-edit-button { - background-color: {{colors.surface_container_high.default.hex}} !important; - color: {{colors.on_surface.default.hex}} !important; -} - -.icon-button.edit-button:hover, -.app-grid-edit-button:hover { - background-color: {{colors.surface_container_highest.default.hex}} !important; -} - -.icon-button.edit-button:checked, -.app-grid-edit-button:checked { - background-color: {{colors.primary_container.default.hex}} !important; - color: {{colors.on_primary_container.default.hex}} !important; -} - -/* App grid focused/selected app highlight ring */ -.overview-tile:focus, -.overview-tile:selected { - outline-color: {{colors.primary.default.hex}} !important; -} - -/* Global focus/keyboard-navigation highlight */ -*:focus { - outline-color: {{colors.primary.default.hex}} !important; - border-color: {{colors.primary.default.hex}} !important; -} - -/* App icon active/running indicator dot */ -.app-well-app .overview-icon .app-running-dot { - background-color: {{colors.primary.default.hex}} !important; -}