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:
parent
cbd035f1a5
commit
c58417db0d
|
@ -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;
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue