From 4d5e3ecd51d222801e0d2135761e74c52471eb7f Mon Sep 17 00:00:00 2001 From: The_miro Date: Fri, 17 Oct 2025 13:53:53 +0200 Subject: [PATCH] and menubar --- gtk-themes/cyberqueer/gtk-3.0/gtk.css | 29 +++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gtk-themes/cyberqueer/gtk-3.0/gtk.css b/gtk-themes/cyberqueer/gtk-3.0/gtk.css index aaa63d8..e97c900 100644 --- a/gtk-themes/cyberqueer/gtk-3.0/gtk.css +++ b/gtk-themes/cyberqueer/gtk-3.0/gtk.css @@ -132,3 +132,32 @@ tooltip { padding: 5px; } +/* Top menu bar (File, Edit, View, etc.) */ +menubar { + background-color: #1a1a1a; + border-bottom: 1px solid #5018dd; /* subtle accent line */ + padding: 4px 8px; + spacing: 6px; /* adds space between menu items */ +} + +/* Individual menu items */ +menubar > menuitem { + padding: 4px 10px; + margin: 0 4px; /* spacing between each item */ + border-radius: 8px; + color: #d6abab; +} + +/* Hover state */ +menubar > menuitem:hover { + background-color: rgba(80, 24, 221, 0.2); + color: #ffffff; +} + +/* Active/open menu */ +menubar > menuitem:active, +menubar > menuitem:checked { + background-color: rgba(80, 24, 221, 0.35); + color: #ffffff; +} +