Changes between Version 1 and Version 2 of Ticket #65032
- Timestamp:
- 04/07/2026 12:01:28 PM (2 months ago)
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. 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. 4 2 5 3 Screencast: https://github.com/user-attachments/assets/7a48ae52-70d7-47ee-95e0-aec80463dcde … … 21 19 == Notes == 22 20 23 Claude claims a likely fix is to give `#adminmenu` (and possibly `#adminmenuwrap`) 21 Claude 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`) 24 25 its 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.26 across navigations rather than part of the default root snapshot. 26 27 27 28 cc @westonruter @annezazu