Skip to content

Commit e4f070a

Browse files
committed
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
1 parent 524bd7b commit e4f070a

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

wp-content/themes/twentyeleven/blocks.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,8 @@ p.has-drop-cap:not(:focus)::first-letter {
275275
max-width: 100px;
276276
}
277277

278-
.wp-block-separator.is-style-wide {
278+
.wp-block-separator.is-style-wide,
279+
.wp-block-separator.is-style-dots {
279280
max-width: 100%;
280281
}
281282

wp-content/themes/twentyfifteen/css/blocks.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,8 @@ p.has-drop-cap:not(:focus)::first-letter {
472472
max-width: 100px;
473473
}
474474

475-
.wp-block-separator.is-style-wide {
475+
.wp-block-separator.is-style-wide,
476+
.wp-block-separator.is-style-dots {
476477
max-width: 100%;
477478
}
478479

wp-content/themes/twentyfifteen/css/editor-blocks.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,8 @@ p.has-drop-cap:not(:focus)::first-letter {
804804
max-width: 100px;
805805
}
806806

807-
.wp-block-separator.is-style-wide {
807+
.wp-block-separator.is-style-wide,
808+
.wp-block-separator.is-style-dots {
808809
max-width: 100%;
809810
}
810811

wp-content/themes/twentyfourteen/css/blocks.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,8 @@ p.has-drop-cap:not(:focus)::first-letter {
261261
max-width: 100px;
262262
}
263263

264-
.wp-block-separator.is-style-wide {
264+
.wp-block-separator.is-style-wide,
265+
.wp-block-separator.is-style-dots {
265266
max-width: 100%;
266267
}
267268

wp-content/themes/twentysixteen/css/blocks.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,8 @@ hr.wp-block-separator {
289289
max-width: 100px;
290290
}
291291

292-
.wp-block-separator.is-style-wide {
292+
.wp-block-separator.is-style-wide,
293+
.wp-block-separator.is-style-dots {
293294
max-width: 100%;
294295
}
295296

wp-content/themes/twentythirteen/css/blocks.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,8 @@ body:not(.sidebar) .wp-block-table.alignfull {
423423
max-width: 100px;
424424
}
425425

426-
.wp-block-separator.is-style-wide {
426+
.wp-block-separator.is-style-wide,
427+
.wp-block-separator.is-style-dots {
427428
max-width: 100%;
428429
}
429430

wp-includes/version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* @global string $wp_version
1818
*/
19-
$wp_version = '6.2-alpha-55113';
19+
$wp_version = '6.2-alpha-55114';
2020

2121
/**
2222
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

0 commit comments

Comments
 (0)