From ffcb897003996b7498ec285b9c594421e93a06c6 Mon Sep 17 00:00:00 2001 From: MoonlightWave-12 <135532-MoonlightWave-12@users.noreply.gitlab.gnome.org> Date: Tue, 26 Mar 2024 21:19:58 +0100 Subject: [PATCH] data/style.css: Highlight "wide"-outline The "wide"-outline was not highlighted on the default and high contrast styles, while it was highlighted on the "Adwaita:dark"-style. "Adwaita:dark" is the default on Phosh, so adjust to that, for consistent button-highlighting. Part-of: --- data/style.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/data/style.css b/data/style.css index cd685f14..a67184ce 100644 --- a/data/style.css +++ b/data/style.css @@ -15,12 +15,14 @@ sq_button:active { } sq_button.altline, -sq_button.special { +sq_button.special, +sq_button.wide { background: alpha(@theme_fg_color, 0.15); } sq_button.altline:active, -sq_button.special:active { +sq_button.special:active, +sq_button.wide:active { background: alpha(@theme_fg_color, 0.2); }