diff --git a/share/themes/Kali-Dark/gnome-shell/gnome-shell.css b/share/themes/Kali-Dark/gnome-shell/gnome-shell.css index 4dc4f2ae..0a210b1f 100644 --- a/share/themes/Kali-Dark/gnome-shell/gnome-shell.css +++ b/share/themes/Kali-Dark/gnome-shell/gnome-shell.css @@ -2810,6 +2810,14 @@ StScrollBar { color: transparent; transition-duration: 0s; } +/* Workspace Switcher */ +.ws-switcher-indicator { + padding: 2px; + margin: 10px; } + .ws-switcher-indicator:active { + padding: 4px; + margin: 8px; } + /* Screenshot UI */ .screenshot-ui-shot-cast-container { background-color: #383d4b; } diff --git a/share/themes/Kali-Light/gnome-shell/gnome-shell.css b/share/themes/Kali-Light/gnome-shell/gnome-shell.css index 193f144d..18ca84f3 100644 --- a/share/themes/Kali-Light/gnome-shell/gnome-shell.css +++ b/share/themes/Kali-Light/gnome-shell/gnome-shell.css @@ -2806,6 +2806,14 @@ StScrollBar { color: transparent; transition-duration: 0s; } +/* Workspace Switcher */ +.ws-switcher-indicator { + padding: 2px; + margin: 10px; } + .ws-switcher-indicator:active { + padding: 4px; + margin: 8px; } + /* Screenshot UI */ .screenshot-ui-shot-cast-container { background-color: #383d4b; } diff --git a/src/themes/Kali/sass/gnome-shell/_common-tweaks.scss b/src/themes/Kali/sass/gnome-shell/_common-tweaks.scss index b895f2ee..2a733556 100644 --- a/src/themes/Kali/sass/gnome-shell/_common-tweaks.scss +++ b/src/themes/Kali/sass/gnome-shell/_common-tweaks.scss @@ -132,6 +132,17 @@ $dialog_box_shadow: 0 2px 8px 0 transparentize(black, .6); } } +/* Workspace Switcher */ +.ws-switcher-indicator { + padding: 2px; + margin: 10px; + + &:active { + padding: 4px; + margin: 8px; + } +} + /* Screenshot UI */ .screenshot-ui-shot-cast-container { background-color: lighten($osd_bg_color, 4%);