Themes: Prevent tags in Theme Details modal from being partially hidden behind action buttons on smaller screens.

Props sagarjadhav, valentinbora.
Fixes #31783.
Built from https://develop.svn.wordpress.org/trunk@47435


git-svn-id: http://core.svn.wordpress.org/trunk@47222 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-03-08 01:52:05 +00:00
parent cb5308b0ab
commit 9448f5c95e
5 changed files with 21 additions and 3 deletions

View File

@ -897,6 +897,15 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
.theme-browser .theme:nth-child(3n) {
margin-left: 0;
}
.theme-overlay .theme-about {
bottom: 105px;
}
.theme-overlay .theme-actions {
padding-right: 4%;
padding-left: 4%;
}
}
@media only screen and (max-width: 650px) {

File diff suppressed because one or more lines are too long

View File

@ -896,6 +896,15 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
.theme-browser .theme:nth-child(3n) {
margin-right: 0;
}
.theme-overlay .theme-about {
bottom: 105px;
}
.theme-overlay .theme-actions {
padding-left: 4%;
padding-right: 4%;
}
}
@media only screen and (max-width: 650px) {

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.5-alpha-47434';
$wp_version = '5.5-alpha-47435';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.