From a2d9215b229ec46b669c5fea583250fbb39aad36 Mon Sep 17 00:00:00 2001 From: xRangerDE Date: Wed, 20 May 2026 01:41:35 +0200 Subject: [PATCH] =?UTF-8?q?release:=205.0.11=20=E2=80=94=20Light-Theme=20b?= =?UTF-8?q?order-overrides=20fuer=20.form-stack/.input-narrow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 5.0.9 hatte .form-stack input/select und .input-narrow Dark-Theme-Styling gegeben, aber der border-color in der base rule ist rgba(255,255,255,0.1) — auf hellem Light-Theme-Background unsichtbar. Im Light-Theme-Block sind .form-group und .add-streamer schon ueberschrieben, .form-stack und .input-narrow fehlten. Fix: light-theme border-color rgba(0,0,0,0.12) auch fuer .form-stack input/select und .input-narrow. Co-Authored-By: Claude Opus 4.7 (1M context) --- package-lock.json | 4 ++-- package.json | 2 +- src/styles.css | 3 +++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 06742db..c080585 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "twitch-vod-manager", - "version": "5.0.10", + "version": "5.0.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "twitch-vod-manager", - "version": "5.0.10", + "version": "5.0.11", "license": "MIT", "dependencies": { "axios": "^1.16.1", diff --git a/package.json b/package.json index b15eb3b..9990baa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "twitch-vod-manager", - "version": "5.0.10", + "version": "5.0.11", "description": "Twitch VOD Manager - Download Twitch VODs easily", "main": "dist/main.js", "author": "xRangerDE", diff --git a/src/styles.css b/src/styles.css index 6b8ca26..a8efffd 100644 --- a/src/styles.css +++ b/src/styles.css @@ -3328,6 +3328,9 @@ body.theme-light .status-bar { body.theme-light .add-streamer input, body.theme-light .form-group input:not([type="checkbox"]):not([type="radio"]), body.theme-light .form-group select, +body.theme-light .form-stack input:not([type="checkbox"]):not([type="radio"]), +body.theme-light .form-stack select, +body.theme-light .input-narrow, body.theme-light .clip-input input, body.theme-light .time-input-group input, body.theme-light .part-number-group input,