Gnome-shell: Fix color of horizontal workspace switcher

This commit is contained in:
EliverLara
2021-08-27 15:12:21 -05:00
parent 753550b442
commit 8dff9e6e9e
2 changed files with 11 additions and 3 deletions
+5 -1
View File
@@ -719,13 +719,17 @@ StScrollBar {
spacing: 8px;
}
.ws-switcher-active-up, .ws-switcher-active-down {
.ws-switcher-active-up,
.ws-switcher-active-down,
.ws-switcher-active-left,
.ws-switcher-active-right {
height: 50px;
background-color: $selected_bg_color;
color: $selected_fg_color;
//background-image: url("resource:///org/gnome/shell/theme/assets/ws-switch-arrow-up.png");
background-size: 32px;
border-radius: 8px;
border-color: $selected_bg_color;
}
.ws-switcher-active-up {
background-image: url("assets/ws-switch-arrow-up.png"); }
+6 -2
View File
@@ -658,12 +658,16 @@ StScrollBar {
padding: 0px;
spacing: 8px; }
.ws-switcher-active-up, .ws-switcher-active-down {
.ws-switcher-active-up,
.ws-switcher-active-down,
.ws-switcher-active-left,
.ws-switcher-active-right {
height: 50px;
background-color: #8fbcbb;
color: #fefefe;
background-size: 32px;
border-radius: 8px; }
border-radius: 8px;
border-color: #8fbcbb; }
.ws-switcher-active-up {
background-image: url("assets/ws-switch-arrow-up.png"); }