minor: improve checkbox display for light mode

This commit is contained in:
supahgreg 2025-10-20 19:47:18 +00:00
parent ebcd8e4455
commit 98fcff063f
No known key found for this signature in database
4 changed files with 13 additions and 0 deletions

View File

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

View File

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

View File

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

View File

@ -7,4 +7,8 @@
.dijitTab:not(.dijitTabChecked) {
background : @color-panel-bg;
}
.dijitCheckBox {
background : rgb(204 204 204 / 10%);
}
}