Disable pointer events on checker highlights to simplify DevTools inspections

pull/12195/head
Thibaud Colas 2024-07-31 09:16:07 +02:00 zatwierdzone przez Sage Abdullah
rodzic 43ede8879b
commit 1e517bac27
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: EB1A33CC51CC0217
3 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -28,6 +28,7 @@ Changelog
* Add concurrent editing notifications for pages and snippets (Matt Westcott, Sage Abdullah)
* Add "soft" client-side validation for `StreamBlock` / `ListBlock` `min_num` / `max_num` (Matt Westcott)
* Log accessibility checker results in the console to help developers with troubleshooting (Thibaud Colas)
* Disable pointer events on checker highlights to simplify DevTools inspections (Thibaud Colas)
* Fix: Make `WAGTAILIMAGES_CHOOSER_PAGE_SIZE` setting functional again (Rohit Sharma)
* Fix: Enable `richtext` template tag to convert lazy translation values (Benjamin Bach)
* Fix: Ensure permission labels on group permissions page are translated where available (Matt Westcott)

Wyświetl plik

@ -424,6 +424,7 @@ export class Userbar extends HTMLElement {
z-index: 129;
outline: 1px solid #CD4444;
box-shadow: 0px 0px 12px 1px #FF0000;
pointer-events: none;
`;
};

Wyświetl plik

@ -57,6 +57,7 @@ All built-in and custom report views now use the Universal Listings visual desig
* Allow changing available privacy options per page model (Shlomo Markowitz)
* Add "soft" client-side validation for `StreamBlock` / `ListBlock` `min_num` / `max_num` (Matt Westcott)
* Log accessibility checker results in the console to help developers with troubleshooting (Thibaud Colas)
* Disable pointer events on checker highlights to simplify DevTools inspections (Thibaud Colas)
### Bug fixes