Skip to content

Commit

Permalink
Fix CSS selector: make checkboxes visible in light mode
Browse files Browse the repository at this point in the history
Signed-off-by: Andras Timar <[email protected]>
Change-Id: I6e8194ea456e4af3104754cf9219be22f135c042
  • Loading branch information
timar committed Oct 16, 2023
1 parent 8afe3dc commit af8ba81
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions browser/css/jsdialogs.css
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ input[type='checkbox'].autofilter, .jsdialog input[type='checkbox'] {
margin: 1px 8px;
}

[data-theme='dark'] input[type='checkbox'].autofilter, .jsdialog input[type='checkbox'] {
[data-theme='dark'] input[type='checkbox'].autofilter, [data-theme='dark'] .jsdialog input[type='checkbox'] {
background: url('images/dark/lc_checkboxoff.svg') no-repeat center;
}

Expand All @@ -441,7 +441,7 @@ input[type='checkbox']:checked.autofilter, .jsdialog input[type='checkbox']:chec
background-image: url('images/lc_checkbox.svg');
}

[data-theme='dark'] input[type='checkbox']:checked.autofilter, .jsdialog input[type='checkbox']:checked {
[data-theme='dark'] input[type='checkbox']:checked.autofilter, [data-theme='dark'] .jsdialog input[type='checkbox']:checked {
background-image: url('images/dark/lc_checkbox.svg');
}

Expand Down Expand Up @@ -1771,4 +1771,4 @@ kbd,
/* clipboard warning dialog */
#modal-dialog-copy_paste_download_progress .ui-dialog-content {
width: 450px;
}
}

0 comments on commit af8ba81

Please sign in to comment.