Skip to content

Commit c6f3ee4

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. git-svn-id: https://develop.svn.wordpress.org/trunk@55114 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 9bbef09 commit c6f3ee4

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

src/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

src/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

src/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

src/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

src/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

src/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

0 commit comments

Comments
 (0)