Fix CSS selector: make checkboxes visible in light mode

Signed-off-by: Andras Timar <andras.timar@collabora.com>
Change-Id: I6e8194ea456e4af3104754cf9219be22f135c042
This commit is contained in:
Andras Timar 2023-10-13 19:23:48 +02:00
parent 8afe3dc922
commit af8ba81943

View file

@ -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;
}
@ -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');
}
@ -1771,4 +1771,4 @@ kbd,
/* clipboard warning dialog */
#modal-dialog-copy_paste_download_progress .ui-dialog-content {
width: 450px;
}
}