From 53942aece01f55de4048e1ac92d3d19ad435c576 Mon Sep 17 00:00:00 2001 From: nocode Date: Sat, 4 Jul 2026 00:26:31 +0200 Subject: [PATCH] feat(releng): add wofi keyboard shortcuts panel styling Add CSS stylesheet for the FWS keyboard shortcuts panel (fws-hypr-keys) using monospace font to align key combinations with descriptions. Uses the same color palette as the wofi menu with Catppuccin theme colors. --- .../usr/local/share/fws/wofi-keys.css | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 configs/releng/airootfs/usr/local/share/fws/wofi-keys.css diff --git a/configs/releng/airootfs/usr/local/share/fws/wofi-keys.css b/configs/releng/airootfs/usr/local/share/fws/wofi-keys.css new file mode 100644 index 0000000..34a4ce7 --- /dev/null +++ b/configs/releng/airootfs/usr/local/share/fws/wofi-keys.css @@ -0,0 +1,40 @@ +/* FWS — style du panneau « Raccourcis clavier » (fws-hypr-keys). + Même palette que le menu wofi, mais police MONOSPACE : les colonnes + combinaison/description sont alignées par des espaces. */ + +window { + background-color: rgba(30, 30, 46, 0.97); + border: 2px solid #89b4fa; + border-radius: 14px; + font-family: "Noto Sans Mono", monospace; + font-size: 13px; +} + +#input { + background-color: #313244; + color: #cdd6f4; + border: none; + border-radius: 10px; + margin: 12px; + padding: 8px 12px; + font-family: "Noto Sans", sans-serif; +} + +#input image { color: #89b4fa; } + +#inner-box { + margin: 0 8px 8px 8px; +} + +#entry { + padding: 5px 10px; + border-radius: 8px; + color: #cdd6f4; +} + +#entry:selected { + background-color: #313244; + color: #89b4fa; +} + +#text { color: inherit; }