diff --git a/prefs.js b/prefs.js index b9f558b..d7c4ccf 100644 --- a/prefs.js +++ b/prefs.js @@ -712,17 +712,8 @@ var AppearanceColorSettingsPanel = GObject.registerClass( // The primary color updates the focus hint: theme.setCssProperty(selector, "border-color", rgba.to_string()); - // Only apply below on the primary/tiled scheme - if (colorScheme === "tiled") { - // Then the overview app icons, search and search results: - theme.setCssProperty(".search-entry:focus", "border-color", rgba.to_string()); - theme.setCssProperty(".kbd-shortcut:focus", "border-color", rgba.to_string()); - theme.setCssProperty( - ".search-provider-icon:focus", - "background-color", - overviewBackgroundRgba.to_string() - ); - } else if (colorScheme === "tabbed") { + // Only apply below on the tabbed scheme + if (colorScheme === "tabbed") { const tabBorderRgba = rgba.copy(); const tabActiveBackgroundRgba = rgba.copy(); tabBorderRgba.alpha = 0.6; diff --git a/stylesheet.css b/stylesheet.css index f3699b9..4159ffc 100644 --- a/stylesheet.css +++ b/stylesheet.css @@ -28,7 +28,6 @@ opacity: 1; } -.window-clone-border, .window-tiled-border { border-width: 3px; border-color: rgba(236, 94, 94, 1); @@ -36,13 +35,6 @@ border-radius: 14px; } -.workspace-thumbnail-indicator { - border-width: 3px; - border-color: rgba(236, 94, 94, 1); - border-style: solid; - border-radius: 6px; -} - .window-split-border { border-width: 3px; border-color: rgba(255, 246, 108, 1); @@ -138,27 +130,3 @@ border-radius: 14px; background-color: rgba(17, 199, 224, 0.3); } - -.search-entry:focus { - border-color: rgba(236, 94, 94, 1); - border-width: 2px; - border-style: solid; -} - -.kbd-shortcut:focus { - color: rgba(236, 94, 94, 1); -} - -.icon-grid .app-well-app:hover, -#searchResultsContent .app-well-app:hover, -.search-section-content-item:hover, -.icon-grid .app-well-app:focus, -#searchResultsContent .app-well-app:focus, -.search-section-content-item:focus, -.list-search-result:hover, -.list-search-result:focus, -.search-provider-icon:hover, -.search-provider-icon:focus { - background-color: rgba(236, 94, 94, 0.5); - border-radius: 14px; -}