Make WordPress Core

Changes between Version 1 and Version 2 of Ticket #65032


Ignore:
Timestamp:
04/07/2026 12:01:28 PM (2 months ago)
Author:
zieladam
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #65032 – Description

    v1 v2  
    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 identical between the two pages.
    2 
    3 `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.
     1Since 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.
    42
    53Screencast: https://github.com/user-attachments/assets/7a48ae52-70d7-47ee-95e0-aec80463dcde
     
    2119== Notes ==
    2220
    23 Claude claims a likely fix is to give `#adminmenu` (and possibly `#adminmenuwrap`)
     21Claude claims, to be verified:
     22
     23* `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`)
    2425its own `view-transition-name` so it's treated as a single persistent element
    25 across navigations rather than part of the default root snapshot. To be verified.
     26across navigations rather than part of the default root snapshot.
    2627
    2728cc @westonruter @annezazu