Twenty Twenty-One: Prevent `<iframe>` embeds from being too narrow.

This fixes an issue where `<iframe>` embeds were being pushed to the side of the screen and compressed to the point of being unusable.

Props helen, mukesh27, poena, thorlentz.
Merges [49823] to the 5.6 branch.
Fixes #52004.
Built from https://develop.svn.wordpress.org/branches/5.6@49851


git-svn-id: http://core.svn.wordpress.org/branches/5.6@49570 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2020-12-21 13:27:07 +00:00
parent cbd035f1a5
commit c58417db0d
5 changed files with 1 additions and 23 deletions

View File

@ -5866,12 +5866,6 @@ h1.entry-title {
margin: 30px 0 !important;
max-width: 100% !important;
}
@media only screen and (min-width: 482px) {
.entry-content > iframe[style] {
max-width: 30px !important;
}
}
.entry-footer {
color: #28303d;

View File

@ -53,10 +53,6 @@ h1.entry-title {
margin: var(--global--spacing-vertical) 0 !important;
max-width: 100% !important;
@include media(mobile) {
max-width: var(--global--spacing-vertical) !important;
}
}
// Classic editor audio embeds.

View File

@ -4135,12 +4135,6 @@ h1.entry-title {
margin: var(--global--spacing-vertical) 0 !important;
max-width: 100% !important;
}
@media only screen and (min-width: 482px) {
.entry-content > iframe[style] {
max-width: var(--global--spacing-vertical) !important;
}
}
.entry-footer {
color: var(--global--color-primary);

View File

@ -4155,12 +4155,6 @@ h1.entry-title {
margin: var(--global--spacing-vertical) 0 !important;
max-width: 100% !important;
}
@media only screen and (min-width: 482px) {
.entry-content > iframe[style] {
max-width: var(--global--spacing-vertical) !important;
}
}
.entry-footer {
color: var(--global--color-primary);

View File

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