From 98fcff063f604fb00a2f58f6910548db4ca48bc0 Mon Sep 17 00:00:00 2001 From: supahgreg Date: Mon, 20 Oct 2025 19:47:18 +0000 Subject: [PATCH] minor: improve checkbox display for light mode --- themes/compact.css | 3 +++ themes/light-high-contrast.css | 3 +++ themes/light.css | 3 +++ themes/light/dijit_light.less | 4 ++++ 4 files changed, 13 insertions(+) diff --git a/themes/compact.css b/themes/compact.css index 92cfd8bd7..300224177 100644 --- a/themes/compact.css +++ b/themes/compact.css @@ -2091,6 +2091,9 @@ body.ttrss_utility.share_popup .content { .flat .dijitTab:not(.dijitTabChecked) { background: #f5f5f5; } +.flat .dijitCheckBox { + background: rgba(204, 204, 204, 0.1); +} body.ttrss_zoom { max-width: 900px; margin: 2em auto; diff --git a/themes/light-high-contrast.css b/themes/light-high-contrast.css index 60e01a1aa..11cfd93c0 100644 --- a/themes/light-high-contrast.css +++ b/themes/light-high-contrast.css @@ -2091,6 +2091,9 @@ body.ttrss_utility.share_popup .content { .flat .dijitTab:not(.dijitTabChecked) { background: #f5f5f5; } +.flat .dijitCheckBox { + background: rgba(204, 204, 204, 0.1); +} body.ttrss_zoom { max-width: 900px; margin: 2em auto; diff --git a/themes/light.css b/themes/light.css index aca791b3a..d09cbc5c6 100644 --- a/themes/light.css +++ b/themes/light.css @@ -2091,6 +2091,9 @@ body.ttrss_utility.share_popup .content { .flat .dijitTab:not(.dijitTabChecked) { background: #f5f5f5; } +.flat .dijitCheckBox { + background: rgba(204, 204, 204, 0.1); +} body.ttrss_zoom { max-width: 900px; margin: 2em auto; diff --git a/themes/light/dijit_light.less b/themes/light/dijit_light.less index 899371ba2..fd91613eb 100644 --- a/themes/light/dijit_light.less +++ b/themes/light/dijit_light.less @@ -7,4 +7,8 @@ .dijitTab:not(.dijitTabChecked) { background : @color-panel-bg; } + + .dijitCheckBox { + background : rgb(204 204 204 / 10%); + } }