Make checkboxes visible in forced colors mode. Fix #8334 (#8718)

Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
pull/8831/head
anujaraj 2022-07-10 06:35:07 +05:30 zatwierdzone przez GitHub
rodzic 3f0a648181
commit 3cb9b70d12
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
3 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -80,6 +80,7 @@ Changelog
* Fix: Ensure the linting/formatting npm scripts work on Windows (Anuja Verma)
* Fix: Fix display of dates in exported xlsx files on macOS Preview and Numbers (Jaap Roes)
* Fix: Make progress bars progress visible in forced colors mode (Anuja Verma)
* Fix: Make checkboxes visible in forced colors mode (Anuja Verma)
3.0.1 (16.06.2022)

Wyświetl plik

@ -218,6 +218,10 @@ input[type='checkbox']:checked:before {
height: 1rem;
top: 2px;
inset-inline-start: 2px;
@media (forced-colors: active) {
background: ButtonText;
}
}
input[type='checkbox'][disabled]:before {

Wyświetl plik

@ -92,6 +92,7 @@ When using a queryset to render a list of images, you can now use the `prefetch_
* Ensure the linting/formatting npm scripts work on Windows (Anuja Verma)
* Fix display of dates in exported xlsx files on macOS Preview and Numbers (Jaap Roes)
* Make progress bars progress visible in forced colors mode (Anuja Verma)
* Make checkboxes visible in forced colors mode (Anuja Verma)
## Upgrade considerations