Fix dialog component's message to have rounded corners at the top side

Fixes #10177
pull/10298/head
Sam 2023-03-07 19:17:59 +05:30 zatwierdzone przez Sage Abdullah
rodzic c4d9df2d2b
commit 7600327485
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: EB1A33CC51CC0217
4 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -12,6 +12,7 @@ Changelog
* Fix: Fix page/snippet cannot proceed a `GroupApprovalTask` if it's locked by someone outside of the group (Sage Abdullah)
* Fix: Add missing log information for `wagtail.schedule.cancel` (Stefan Hammer)
* Fix: Fix timezone activation leaking into subsequent requests in `require_admin_access()` (Stefan Hammer)
* Fix: Fix dialog component's message to have rounded corners at the top side (Sam)
4.2 (06.02.2023)

Wyświetl plik

@ -685,6 +685,7 @@ Contributors
* Nick Lee
* Beniamin Bucur
* Satvik Vashisht
* Sam
Translators
===========

Wyświetl plik

@ -106,6 +106,8 @@
display: flex;
align-items: center;
padding: theme('spacing.5');
border-start-start-radius: theme('borderRadius.md');
border-start-end-radius: theme('borderRadius.md');
@media (forced-colors: $media-forced-colours) {
border-bottom: 1px solid currentColor;

Wyświetl plik

@ -20,3 +20,4 @@ depth: 1
* Fix page/snippet cannot proceed a `GroupApprovalTask` if it's locked by someone outside of the group (Sage Abdullah)
* Add missing log information for `wagtail.schedule.cancel` (Stefan Hammer)
* Fix timezone activation leaking into subsequent requests in `require_admin_access()` (Stefan Hammer)
* Fix dialog component's message to have rounded corners at the top side (Sam)