Themes: Correct the width of theme preview on Add Themes screen.
This ensures that the preview ratio remains accurate for the user's screen size when the sidebar is open. Follow-up to [19995], [20110], [20133], [20138], [28033]. Props shreyasikhar26, costdev, sumitsingh, SergeyBiryukov. Fixes #54764. Built from https://develop.svn.wordpress.org/trunk@52647 git-svn-id: http://core.svn.wordpress.org/trunk@52236 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1d561e1fa6
commit
445d687680
|
@ -1806,7 +1806,7 @@ body.full-overlay-active {
|
|||
#customize-container iframe,
|
||||
.theme-install-overlay iframe {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
width: 100vw;
|
||||
z-index: 20;
|
||||
transition: opacity 0.3s;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1805,7 +1805,7 @@ body.full-overlay-active {
|
|||
#customize-container iframe,
|
||||
.theme-install-overlay iframe {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
width: 100vw;
|
||||
z-index: 20;
|
||||
transition: opacity 0.3s;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.0-alpha-52646';
|
||||
$wp_version = '6.0-alpha-52647';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue