From 5971b15d8115c60c3a16b1d219ecffd2cfcdb323 Mon Sep 17 00:00:00 2001 From: Vladyslav Hroshev Date: Tue, 25 Jun 2024 20:17:21 +0300 Subject: [PATCH] Added more contrast to the selected item in Alt + Tab (Resolves #29) --- theme/gnome-shell_css/osd.css | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/theme/gnome-shell_css/osd.css b/theme/gnome-shell_css/osd.css index 665e570..0ef9f15 100644 --- a/theme/gnome-shell_css/osd.css +++ b/theme/gnome-shell_css/osd.css @@ -12,12 +12,17 @@ } /* alt + tab */ -.switcher-list { border-radius: 24px; } +.switcher-list { + border-radius: 30px; + padding: 10px; +} /* running apps in switcher list */ .switcher-list .item-box { - border-radius: 20px; + border-radius: 22px; + padding: 8px; color: TEXT-PRIMARY-COLOR; + border: 3px solid transparent; background-color: transparent; } @@ -25,8 +30,9 @@ .switcher-list .item-box:focus, .switcher-list .item-box:selected, .switcher-list .item-box:outlined { - background-color: ACCENT-DISABLED-COLOR; - box-shadow: inset 0 0 0 1px BORDER-SHADOW; + background-color: ACCENT-DISABLED_HOVER; + /* box-shadow: inset 0 0 0 2px ACCENT-SECONDARY-COLOR; */ + border: 3px solid ACCENT-SECONDARY-COLOR; }