Changes between Initial Version and Version 1 of Ticket #65032
- Timestamp:
- 04/07/2026 12:00:48 PM (2 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #65032 – Description
initial v1 1 Since 7.0 enabled view transitions in wp-admin (#64470, [10699]), 2 navigating between admin screens crossfades the entire admin sidebar 3 into itself, even when its markup is identical between the two pages. 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. 4 2 5 `src/wp-admin/css/view-transitions.css` gives each top-level menu item 6 a stable `view-transition-name`, but `#adminmenu` itself does not — so 7 the whole sidebar falls into the default root snapshot and crossfades 8 on every navigation. 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. 9 4 10 5 Screencast: https://github.com/user-attachments/assets/7a48ae52-70d7-47ee-95e0-aec80463dcde 11 6 12 == Steps to reproduce == 7 **Steps to reproduce** 13 8 14 9 1. Run trunk in Chrome. … … 16 11 3. Click between two screens whose sidebars are nearly identical (e.g. Dashboard → Posts → Pages). 17 12 18 == Expected == 13 **Expected** 19 14 20 15 Sidebar stays visually stable across the navigation — nothing in it has changed. 21 16 22 == Actual == 17 **Actual** 23 18 24 19 The whole sidebar crossfades between two identical snapshots.