From 272b959a44e9884856cef36f4105c45f3d722b91 Mon Sep 17 00:00:00 2001 From: fujie Date: Sun, 22 Feb 2026 00:24:37 +0800 Subject: [PATCH] fix(actions): fix white background bleed in dark mode when viewport is narrow --- plugins/actions/smart-mind-map/smart_mind_map.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/actions/smart-mind-map/smart_mind_map.py b/plugins/actions/smart-mind-map/smart_mind_map.py index 7a559a4..12a822b 100644 --- a/plugins/actions/smart-mind-map/smart_mind_map.py +++ b/plugins/actions/smart-mind-map/smart_mind_map.py @@ -693,7 +693,7 @@ CSS_TEMPLATE_MINDMAP = """ .content-area { padding: 0; flex: 1 1 0; - background: transparent; + background: var(--card-bg-color); position: relative; overflow: hidden; width: 100%; @@ -2204,7 +2204,7 @@ class Action: flex-grow: 1; position: relative; overflow: hidden; - background: transparent; + background: var(--card-bg-color); min-height: 0; width: 100%; height: 100%;