From 523b3a147df0dbb2922f15ef320993ab8c96202a Mon Sep 17 00:00:00 2001 From: anthony Date: Fri, 13 Dec 2024 23:37:41 +0100 Subject: [PATCH] Minor accesibility fix --- gnome-shell/gnome-shell.css | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/gnome-shell/gnome-shell.css b/gnome-shell/gnome-shell.css index 8aa3a9d..71807cf 100644 --- a/gnome-shell/gnome-shell.css +++ b/gnome-shell/gnome-shell.css @@ -65,7 +65,7 @@ background-size: 40px; padding: 5px 5px; background-color: rgba(85, 8, 44, 1); - color: rgba(0, 0, 0, 0) + color: rgba(0, 0, 0, 0); } @@ -74,16 +74,22 @@ .show-apps:focus .overview-icon, #dash .show-apps:hover .overview-icon, #dash .show-apps:focus .overview-icon { + background-image: url("./launchpad.svg") !important; + background-size: 40px; + padding: 5px 5px; background-color: rgba(6, 6, 6, 1); - color: rgba(0, 215, 145, 1); + color: rgba(0, 0, 0, 0); } /*.show-apps:active .overview-icon, .show-apps .overview-icon:insensitive*/ #dash .show-apps:active .overview-icon { + background-image: url("./launchpad.svg") !important; + background-size: 40px; + padding: 5px 5px; background-color: rgba(0, 215, 145, 1); - color: rgba(6, 6, 6, 1); + color: rgba(0, 0, 0, 0); } /* folders */ @@ -1485,7 +1491,7 @@ StEntry:focus { .popup-menu-content, /* popover content */ .candidate-popup-content { /* IBus Candidate Popup (i dunno how to call it) */ - color: rgba(40, 7, 43, 0.87); + color: rgba(0, 215, 145, 1); background: rgba(6, 6, 6, 1); padding: 10px; box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05); @@ -1494,16 +1500,19 @@ StEntry:focus { .popup-menu-item, /* menu items */ .app-menu { /* right-click (and panel) app menu */ margin: 3px 0; - border-radius: 12px; + border-radius: 20px; transition-duration: 150ms; + background-color: rgba(85, 5, 44, 1) !important; + box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05) !important; + color: rgba(6, 6, 6, 1); } .popup-menu-item:focus, .popup-menu-item:hover, .popup-menu-item:checked { - background-color: rgba(85, 8, 44, 1) !important; + background-color: rgba(0, 215, 145, 1) !important; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05) !important; - color: rgba(40, 7, 43, 0.87); + color: rgba(6, 6, 6, 1); } .popup-menu-item:checked { @@ -1511,7 +1520,7 @@ StEntry:focus { } .popup-menu-item:active { - background-color: rgba(227, 203, 230, 0.95); + background-color: rgba(0, 215, 145, 1); color: rgba(40, 7, 43, 0.87); }