PluginProbe
OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin / 1.1.10
OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin v1.1.10
1.1.10 1.1.9 1.1.8 1.1.7 1.1.6 1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.1 1.0.0 0.9.8 0.9.7 0.9.6 0.9.4 0.9.5 0.9.3 0.9.2 0.9.1 0.9.0 0.8.9 0.8.8 0.8.7 All 34 releases
← All changes | includes/render/shell.php +7 -1 1.1.51.1.10 View file →
@@ -50,10 +50,16 @@
50 50 // system default (and nothing else about themes runs at all).
51 51 $desktop_theme = function_exists( 'openstation_active_desktop_theme_slug' )
52 52 ? openstation_active_desktop_theme_slug()
53 53 : '';
54 +
55 + // A shell asked to boot into overview (a switch from another site's
56 + // switcher) arrives with its desk hidden until overview is up, so the
57 + // desk slides in as one piece instead of the bare desk flashing first.
58 + // See `src/multisite/instance-transition.ts`.
59 + $arriving = openstation_shell_lands_in_overview() ? ' os-shell--arriving' : '';
54 60 ?>
55 - <div id="os-shell" class="os-shell" data-os-scheme="<?php echo esc_attr( $scheme ); ?>"<?php echo '' !== $desktop_theme ? ' data-os-desktop-theme="' . esc_attr( $desktop_theme ) . '"' : ''; ?> role="application" aria-label="<?php esc_attr_e( 'Desktop shell', 'desktop-mode' ); ?>">
61 + <div id="os-shell" class="os-shell<?php echo esc_attr( $arriving ); ?>" data-os-scheme="<?php echo esc_attr( $scheme ); ?>"<?php echo '' !== $desktop_theme ? ' data-os-desktop-theme="' . esc_attr( $desktop_theme ) . '"' : ''; ?> role="application" aria-label="<?php esc_attr_e( 'Desktop shell', 'desktop-mode' ); ?>">
56 62 <?php
57 63 /*
58 64 * Wallpaper layer — sits behind both the dock and the desktop
59 65 * area so a translucent dock bleeds through to the wallpaper