From 890ed46e1cdf6353af70ba901de5ec665b04c426 Mon Sep 17 00:00:00 2001 From: projectdx Date: Tue, 6 Jan 2026 23:49:31 +0900 Subject: [PATCH] Fix: Force body background to Superhero theme (fixes white background on other themes) --- info.yaml | 2 +- .../gommi_downloader_manager_queue_list.html | 20 ++++++++++++++----- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/info.yaml b/info.yaml index e46c280..61abc36 100644 --- a/info.yaml +++ b/info.yaml @@ -1,6 +1,6 @@ title: "GDM" package_name: gommi_downloader_manager -version: '0.2.5' +version: '0.2.6' description: FlaskFarm 범용 다운로더 큐 - YouTube, 애니24, 링크애니, Anilife 지원 developer: projectdx home: https://gitea.yommi.duckdns.org/projectdx/gommi_downloader_manager diff --git a/templates/gommi_downloader_manager_queue_list.html b/templates/gommi_downloader_manager_queue_list.html index 7c52e1b..97b78c8 100644 --- a/templates/gommi_downloader_manager_queue_list.html +++ b/templates/gommi_downloader_manager_queue_list.html @@ -30,10 +30,20 @@ --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important; } - /* Force background color on container */ - #gommi_download_manager_queue_list { - background-color: var(--bg-body) !important; - color: var(--text-main) !important; + /* FORCE body background (overrides global theme) */ + body { + background-color: #2b3e50 !important; + color: #ebebeb !important; + } + + /* Also override main containers that might have theme colors */ + .main, #main, .container, .container-fluid, #main_container { + background-color: #2b3e50 !important; + } + + /* Navigation bar override */ + .navbar, .navbar-dark, .bg-dark, .bg-primary { + background-color: #3e5770 !important; } #loading { display: none !important; } @@ -41,7 +51,7 @@ #gommi_download_manager_queue_list { font-family: var(--font-sans); color: var(--text-main); - background-color: transparent; + background-color: #2b3e50 !important; padding-bottom: 2rem; }