Themes: Fix unwanted horizontal scrolling in theme details screen on mobile.
This changeset fixes an issue where the theme browser created unwanted horizontal scrolling on some mobile devices. The issue occured when viewing theme details on mobile. Follow-up to [26142]. Props wildworks, abcd95, sainathpoojary, dhruvang21, sabernhardt. Fixes #62411. Built from https://develop.svn.wordpress.org/trunk@59553 git-svn-id: http://core.svn.wordpress.org/trunk@58939 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
51a1a54a87
commit
ceb9b355bf
|
@ -936,6 +936,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
|
|||
.theme-overlay .theme-screenshots {
|
||||
width: 100%;
|
||||
float: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.theme-overlay .theme-info {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -935,6 +935,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
|
|||
.theme-overlay .theme-screenshots {
|
||||
width: 100%;
|
||||
float: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.theme-overlay .theme-info {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.8-alpha-59552';
|
||||
$wp_version = '6.8-alpha-59553';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue