Disable pointer events on checker highlights to simplify DevTools inspections

pull/12186/head
Thibaud Colas 2024-07-31 09:16:07 +02:00
rodzic aa070ef08e
commit 96db233bf0
3 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -37,6 +37,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

@ -60,6 +60,7 @@ StreamField definitions within migrations are now represented in a more compact
* 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