Fix comment buttons not displaying correctly in high contrast mode

- fixes #7459
pull/7653/head
Jason Attwood 2021-10-23 19:14:25 +01:00 zatwierdzone przez LB Johnston
rodzic 28d9ded998
commit a0e55cedee
3 zmienionych plików z 7 dodań i 2 usunięć

Wyświetl plik

@ -34,7 +34,7 @@ Changelog
* Improve display of image listing for long image titles (Krzysztof Jeziorny)
* Use SVG icons in admin home page site summary items (Jérôme Lebleu)
* Ensure site summary items wrap on smaller devices on the admin home page (Jérôme Lebleu)
* Fix: Accessibility fixes for Windows high contrast mode; Dashboard icons colour and contrast, help/error/warning blocks for fields and general content (Sakshi Uppoor, Shariq Jamil, LB (Ben Johnston))
* Fix: Accessibility fixes for Windows high contrast mode; Dashboard icons colour and contrast, help/error/warning blocks for fields and general content, side comment buttons within the page editor (Sakshi Uppoor, Shariq Jamil, LB (Ben Johnston), Jason Attwood)
* Fix: Rename additional 'spin' CSS animations to avoid clashes with other libraries (Kevin Gutiérrez)
* Fix: `default_app_config` deprecations for Django >= 3.2 (Tibor Leupold)
* Fix: Refresh page from database on create before passing to hooks. Page aliases get correct `first_published_date` and `last_published_date` (Dan Braghis)

Wyświetl plik

@ -533,6 +533,11 @@ li.inline:first-child {
width: 30px;
height: 30px;
color: $color-teal;
@media (forced-colors: $media-forced-colours) {
color: ButtonText;
border: 1px solid;
}
}
}
}

Wyświetl plik

@ -40,7 +40,7 @@
### Bug fixes
* Accessibility fixes for Windows high contrast mode; Dashboard icons colour and contrast, help/error/warning blocks for fields and general content (Sakshi Uppoor, Shariq Jamil, LB (Ben Johnston))
* Accessibility fixes for Windows high contrast mode; Dashboard icons colour and contrast, help/error/warning blocks for fields and general content, side comment buttons within the page editor (Sakshi Uppoor, Shariq Jamil, LB (Ben Johnston), Jason Attwood)
* Rename additional 'spin' CSS animations to avoid clashes with other libraries (Kevin Gutiérrez)
* Pages are refreshed from database on create before passing to hooks. Page aliases get correct `first_published_date` and `last_published_date` (Dan Braghis)
* Additional login form fields from `WAGTAILADMIN_USER_LOGIN_FORM` are now rendered correctly (Michael Karamuth)