Forráskód Böngészése

Remove opacity property from unpublished page titles (#12043)

Inju Michorius 9 hónapja
szülő
commit
ac38343957
4 módosított fájl, 5 hozzáadás és 6 törlés
  1. 3 2
      CHANGELOG.txt
  2. 1 0
      CONTRIBUTORS.md
  3. 0 4
      client/scss/components/_listing.scss
  4. 1 0
      docs/releases/6.2.md

+ 3 - 2
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)

+ 1 - 0
CONTRIBUTORS.md

@@ -822,6 +822,7 @@
 * Byron Peebles
 * Arnar Tumi Þorsteinsson
 * Roel Koper
+* Inju Michorius
 
 ## Translators
 

+ 0 - 4
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;

+ 1 - 0
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