Make WordPress Core

Changes between Version 2 and Version 6 of Ticket #65032


Ignore:
Timestamp:
04/08/2026 09:02:48 PM (2 months ago)
Author:
sabernhardt
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #65032

    • Property Keywords reporter-feedback added
    • Property Version changed from to trunk
    • Property Milestone changed from Awaiting Review to 7.0
  • Ticket #65032 – Description

    v2 v6  
    1 Since 7.0 enabled view transitions in wp-admin (#64470, [10699]), navigating between admin screens crossfades the entire admin sidebar into itself, even when its markup is nearly identical between the two pages.
     1Since 7.0 enabled view transitions in wp-admin (#64470, [https://github.com/WordPress/wordpress-develop/pull/10699 PR 10699]), navigating between admin screens crossfades the entire admin sidebar into itself, even when its markup is nearly identical between the two pages.
    22
    33Screencast: https://github.com/user-attachments/assets/7a48ae52-70d7-47ee-95e0-aec80463dcde
     
    2222
    2323* `src/wp-admin/css/view-transitions.css` gives each top-level menu item a stable `view-transition-name`, but `#adminmenu` itself does not — so the whole sidebar falls into the default root snapshot and crossfades on every navigation.
    24 * a likely fix is to give `#adminmenu` (and possibly `#adminmenuwrap`)
    25 its own `view-transition-name` so it's treated as a single persistent element
    26 across navigations rather than part of the default root snapshot.
     24* a likely fix is to give `#adminmenu` (and possibly `#adminmenuwrap`) its own `view-transition-name` so it's treated as a single persistent element across navigations rather than part of the default root snapshot.
    2725
    2826cc @westonruter @annezazu