From 51ab6d5affb3f9d111ce1c6bd1f2d7e8a3170b56 Mon Sep 17 00:00:00 2001 From: mARTin-B78 Date: Tue, 9 Jun 2026 19:34:48 +0200 Subject: [PATCH] ui: larger, more visible tab labels (v2.01.03) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Tab font-size 12px → 14px (matches body text) - Inactive tabs: muted foreground color so they're clearly readable but visually distinct from the active tab - Active tab: bold + blue (#1a73e8), slightly more padding (8px 18px) Co-Authored-By: Claude Sonnet 4.6 --- linux/blitztext/__init__.py | 2 +- linux/blitztext/gtksettings.py | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/linux/blitztext/__init__.py b/linux/blitztext/__init__.py index 5769bbe..63aae94 100644 --- a/linux/blitztext/__init__.py +++ b/linux/blitztext/__init__.py @@ -6,4 +6,4 @@ counterpart to the macOS Blitztext menu bar app: it runs natively on the host (not in a container) so it can type into any application via xdotool. """ -__version__ = "2.01.02" +__version__ = "2.01.03" diff --git a/linux/blitztext/gtksettings.py b/linux/blitztext/gtksettings.py index 0a967e5..93cc3fc 100644 --- a/linux/blitztext/gtksettings.py +++ b/linux/blitztext/gtksettings.py @@ -750,13 +750,15 @@ class SettingsDialog: color: @theme_fg_color; } notebook.bt-nb tab { - padding: 7px 16px; + padding: 8px 18px; border-radius: 4px 4px 0 0; } notebook.bt-nb tab label { - font-size: 12px; + font-size: 14px; + color: mix(@theme_fg_color, @theme_bg_color, 0.35); } notebook.bt-nb tab:checked label { + font-size: 14px; font-weight: bold; color: #1a73e8; }