From 7600327485e766e286c7d47ec26e3611b4376170 Mon Sep 17 00:00:00 2001 From: Sam Date: Tue, 7 Mar 2023 19:17:59 +0530 Subject: [PATCH] Fix dialog component's message to have rounded corners at the top side Fixes #10177 --- CHANGELOG.txt | 1 + CONTRIBUTORS.rst | 1 + client/scss/components/_dialog.scss | 2 ++ docs/releases/4.2.1.md | 1 + 4 files changed, 5 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 8d039e5621..472740cb42 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index b14af6cad9..2075212211 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -685,6 +685,7 @@ Contributors * Nick Lee * Beniamin Bucur * Satvik Vashisht +* Sam Translators =========== diff --git a/client/scss/components/_dialog.scss b/client/scss/components/_dialog.scss index ee75d2f758..864f833e7c 100644 --- a/client/scss/components/_dialog.scss +++ b/client/scss/components/_dialog.scss @@ -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; diff --git a/docs/releases/4.2.1.md b/docs/releases/4.2.1.md index d101d5d7b5..0edbc61066 100644 --- a/docs/releases/4.2.1.md +++ b/docs/releases/4.2.1.md @@ -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)