From 16c40e19c6868aebe904f41ede7d0766d8dbeca6 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Wed, 13 May 2026 13:43:30 +0100 Subject: fix(wofi): allow fuzzy search in emoji picker The bemoji invocation passed --hide-search, and the shared wofi stylesheet additionally forced #input opacity to 0, so even without the flag the search box was unusable. Drop --hide-search from bemoji's picker cmd and replace the CSS hack with a normal styled input. Pickers that want arrow-only UI (mako-history, clip-picker) keep --hide-search and continue to render without an input row. --- dot_config/wofi/style.css | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'dot_config/wofi') diff --git a/dot_config/wofi/style.css b/dot_config/wofi/style.css index 2e2a4ea..bda412d 100644 --- a/dot_config/wofi/style.css +++ b/dot_config/wofi/style.css @@ -1,7 +1,5 @@ -/* Minimal gruvbox style for wofi. - * Currently used only by ~/.config/waybar/mako-history.py for its - * arrow-only notification picker. The search input row is always hidden - * via --hide-search, but we still hide it here in case wofi falls back. +/* Minimal gruvbox style for wofi pickers (notifications, clipboard, emoji). + * Pickers that want a search-less arrow-only UI pass --hide-search. */ * { @@ -16,12 +14,11 @@ window { } #input { - /* belt-and-suspenders: hidden via --hide-search too */ - min-height: 0; - margin: 0; - padding: 0; - border: 0; - opacity: 0; + margin: 4px; + padding: 4px 6px; + border: 1px solid #504945; + background-color: #1d2021; + color: #ebdbb2; } #inner-box { -- cgit v1.3.1