diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 45f65cec17..17c5943d73 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -12,6 +12,7 @@ Changelog * Allow access to snippets and other model viewsets to users with "View" permission (Sage Abdullah) * Skip `ChooseParentView` if only one possible valid parent page availale (Matthias Brück) * Add `copy_for_translation_done` signal when a page is copied for translation (Arnar Tumi Þorsteinsson) + * Remove reduced opacity for draft page title in listings (Inju Michorius) * 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) @@ -21,18 +22,18 @@ Changelog * Fix: Do not show delete button on model edit views if per-instance permissions prevent deletion (Matt Westcott) * Fix: Remove duplicate header in privacy dialog when a privacy setting is set on a parent page or collection (Matthias Brück) * Fix: Allow renditions of `.ico` images (Julie Rymer) + * Fix: Handle choice groups as dictionaries in active filters (Sébastien Corbin) * Docs: Remove duplicate section on frontend caching proxies from performance page (Jake Howard) * Docs: Document `restriction_type` field on PageViewRestriction (Shlomo Markowitz) * Docs: Document Wagtail's bug bounty policy (Jake Howard) * Docs: Fix incorrect Sphinx-style code references to use MyST style (Byron Peebles) * Docs: Document the fact that `Orderable` is not required for inline panels (Bojan Mihelac) + * Docs: Add note about `prefers-reduced-motion` to the accessibility documentation (Roel Koper) * Maintenance: Use `DjangoJSONEncoder` instead of custom `LazyStringEncoder` to serialize Draftail config (Sage Abdullah) * Maintenance: Refactor image chooser pagination to check `WAGTAILIMAGES_CHOOSER_PAGE_SIZE` at runtime (Matt Westcott) * Maintenance: Exclude the `client/scss` directory in Tailwind content config to speed up CSS compilation (Sage Abdullah) * Maintenance: Split `contrib.frontend_cache.backends` into dedicated sub-modules (Andy Babic) * Maintenance: Remove unused `docs/autobuild.sh` script (Sævar Öfjörð Magnússon) - * Fix: Handle choice groups as dictionaries in active filters (Sébastien Corbin) - * Docs: Add note about `prefers-reduced-motion` to the accessibility documentation (Roel Koper) 6.1.2 (30.05.2024) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index b84f35f48a..66fe11cf45 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -822,6 +822,7 @@ * Byron Peebles * Arnar Tumi Þorsteinsson * Roel Koper +* Inju Michorius ## Translators diff --git a/client/scss/components/_listing.scss b/client/scss/components/_listing.scss index 1dccc9f04a..9f6e2dced0 100644 --- a/client/scss/components/_listing.scss +++ b/client/scss/components/_listing.scss @@ -355,10 +355,6 @@ ul.listing { padding-inline-start: 20px; } - .unpublished .title-wrapper { - opacity: 0.7; - } - .w-status { margin: 0; margin-inline: 0; diff --git a/docs/releases/6.2.md b/docs/releases/6.2.md index 9aaf0653eb..042cf5a744 100644 --- a/docs/releases/6.2.md +++ b/docs/releases/6.2.md @@ -22,6 +22,7 @@ depth: 1 * Allow access to snippets and other model viewsets to users with "View" permission (Sage Abdullah) * Skip `ChooseParentView` if only one possible valid parent page availale (Matthias Brück) * Add `copy_for_translation_done` signal when a page is copied for translation (Arnar Tumi Þorsteinsson) + * Remove reduced opacity for draft page title in listings (Inju Michorius) ### Bug fixes