Skip to content
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.

Commit

Permalink
fix: alt tab menu (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
nullishamy committed May 27, 2024
1 parent e7b8bb2 commit cae57c8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ def subst_text(path, _from, to):

GS_VERSION = "46-0"


def gnome_shell_version():
shutil.copyfile(
f"{SRC_DIR}/sass/gnome-shell/_common.scss",
Expand Down Expand Up @@ -459,6 +458,7 @@ def apply_colloid_patches():
"sass-palette-mocha.patch",
"sass-palette-latte.patch",
"sass-palette-macchiato.patch",
"fixes/alt-tab-background-color.patch"
]:
path = f"./patches/colloid/{patch}"
logger.info(f"Applying patch '{patch}', located at '{path}'")
Expand Down
13 changes: 13 additions & 0 deletions patches/colloid/fixes/alt-tab-background-color.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/src/sass/gnome-shell/common/_switcher-popup.scss b/src/sass/gnome-shell/common/_switcher-popup.scss
index 90b51ab4..408662fb 100644
--- a/src/sass/gnome-shell/common/_switcher-popup.scss
+++ b/src/sass/gnome-shell/common/_switcher-popup.scss
@@ -14,6 +14,8 @@
border-radius: $base_radius;
border: 1px solid transparent;

+ background-color: $osd;
+
&:outlined {
background-color: $divider;
color: $text; // for Ubuntu session

0 comments on commit cae57c8

Please sign in to comment.