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 <noreply@anthropic.com>
This commit is contained in:
ediblerope 2026-04-16 13:28:39 +01:00
parent 6ad1a249bf
commit 28264dd39b

View file

@ -2,8 +2,8 @@
/* Override system accent color variables */ /* Override system accent color variables */
stage { stage {
-st-accent-color: {{colors.primary.default.hex}} !important; -st-accent-color: {{colors.primary_container.default.hex}} !important;
-st-accent-fg-color: {{colors.on_primary.default.hex}} !important; -st-accent-fg-color: {{colors.on_primary_container.default.hex}} !important;
} }
#panel { #panel {
@ -330,38 +330,3 @@ stage {
#dash .dash-item-container .grid-search-result:focus .overview-icon { #dash .dash-item-container .grid-search-result:focus .overview-icon {
background-color: {{colors.surface_container_high.default.hex}} !important; 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;
}