Bundled Themes: Fix Separator block "Dots" style variation on various themes.
This changeset fixes an issue with the "Dots" style of the Separator block on multiple bundled themes. It adds `max-width: 100%` to this style variation on the following themes: Twenty Eleven, Twenty Thirteen, Twenty Fourteen, Twenty Fifteen, and Twenty Sixteen. Props umesh84, sabernhardt, audrasjb, amin7, esratpopy, multidots1896. Fixes #56114. Built from https://develop.svn.wordpress.org/trunk@55114 git-svn-id: http://core.svn.wordpress.org/trunk@54647 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
524bd7ba46
commit
e4f070a161
|
@ -275,7 +275,8 @@ p.has-drop-cap:not(:focus)::first-letter {
|
|||
max-width: 100px;
|
||||
}
|
||||
|
||||
.wp-block-separator.is-style-wide {
|
||||
.wp-block-separator.is-style-wide,
|
||||
.wp-block-separator.is-style-dots {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
|
|
@ -472,7 +472,8 @@ p.has-drop-cap:not(:focus)::first-letter {
|
|||
max-width: 100px;
|
||||
}
|
||||
|
||||
.wp-block-separator.is-style-wide {
|
||||
.wp-block-separator.is-style-wide,
|
||||
.wp-block-separator.is-style-dots {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
|
|
@ -804,7 +804,8 @@ p.has-drop-cap:not(:focus)::first-letter {
|
|||
max-width: 100px;
|
||||
}
|
||||
|
||||
.wp-block-separator.is-style-wide {
|
||||
.wp-block-separator.is-style-wide,
|
||||
.wp-block-separator.is-style-dots {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
|
|
@ -261,7 +261,8 @@ p.has-drop-cap:not(:focus)::first-letter {
|
|||
max-width: 100px;
|
||||
}
|
||||
|
||||
.wp-block-separator.is-style-wide {
|
||||
.wp-block-separator.is-style-wide,
|
||||
.wp-block-separator.is-style-dots {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
|
|
@ -289,7 +289,8 @@ hr.wp-block-separator {
|
|||
max-width: 100px;
|
||||
}
|
||||
|
||||
.wp-block-separator.is-style-wide {
|
||||
.wp-block-separator.is-style-wide,
|
||||
.wp-block-separator.is-style-dots {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
|
|
@ -423,7 +423,8 @@ body:not(.sidebar) .wp-block-table.alignfull {
|
|||
max-width: 100px;
|
||||
}
|
||||
|
||||
.wp-block-separator.is-style-wide {
|
||||
.wp-block-separator.is-style-wide,
|
||||
.wp-block-separator.is-style-dots {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.2-alpha-55113';
|
||||
$wp_version = '6.2-alpha-55114';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue