diff options
| -rw-r--r-- | modules/launcher.tsx | 2 | ||||
| -rw-r--r-- | scss/osds.scss | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/modules/launcher.tsx b/modules/launcher.tsx index a15052b..d9e842c 100644 --- a/modules/launcher.tsx +++ b/modules/launcher.tsx @@ -381,6 +381,8 @@ export default class Launcher extends Widget.Window { // Clear search on hide if not in math mode this.connect("hide", () => mode.get() !== "math" && entry.set_text("")); + + this.connect("destroy", () => showResults.drop()); } open(mode: Mode) { diff --git a/scss/osds.scss b/scss/osds.scss index 62a38f5..a711583 100644 --- a/scss/osds.scss +++ b/scss/osds.scss @@ -5,9 +5,11 @@ .brightness, .volume { @include lib.rounded(8); + @include lib.border(scheme.$overlay0, 0.1); + @include lib.shadow; @include font.icon; - background-color: scheme.$mantle; + background-color: scheme.$base; font-size: lib.s(28); padding: lib.s(3); @@ -18,7 +20,7 @@ min-width: lib.s(300); min-height: lib.s(32); background-color: scheme.$teal; - color: scheme.$mantle; + color: scheme.$base; } } |