Fix: Force body background to Superhero theme (fixes white background on other themes)

This commit is contained in:
2026-01-06 23:49:31 +09:00
parent bbdafb4ce0
commit 890ed46e1c
2 changed files with 16 additions and 6 deletions

View File

@@ -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;
}