diff --git a/src/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss b/src/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss
index a7f215c984..806df3a760 100644
a
|
b
|
|
684 | 684 | max-width: 2.25em; |
685 | 685 | text-align: left; |
686 | 686 | |
| 687 | &:not(.wp-block-separator) { |
| 688 | max-width: 100%; |
| 689 | @include postContentMaxWidth(); |
| 690 | } |
| 691 | |
687 | 692 | &.is-style-wide { |
688 | 693 | max-width: 100%; |
689 | 694 | @include postContentMaxWidth(); |
diff --git a/src/wp-content/themes/twentynineteen/style-rtl.css b/src/wp-content/themes/twentynineteen/style-rtl.css
index 248e790b47..2e4e3fdbd3 100644
a
|
b
|
body.page .main-navigation { |
2958 | 2958 | line-height: 1.2; |
2959 | 2959 | text-shadow: none; |
2960 | 2960 | padding: calc( .5 * 1rem) 1rem calc( .5 * 1rem) calc( 24px + 1rem); |
2961 | | white-space: nowrap; |
| 2961 | max-width: 20rem; |
2962 | 2962 | } |
2963 | 2963 | |
2964 | 2964 | .main-navigation .sub-menu > li > a:hover, .main-navigation .sub-menu > li > a:focus, |
… |
… |
body.page .main-navigation { |
5639 | 5639 | margin: 0 0 0 0.25em; |
5640 | 5640 | } |
5641 | 5641 | |
| 5642 | @-moz-document url-prefix() { |
| 5643 | .entry .entry-content .has-drop-cap:not(:focus)::first-letter { |
| 5644 | margin-top: 0.2em; |
| 5645 | } |
| 5646 | } |
| 5647 | |
5642 | 5648 | .entry .entry-content .wp-block-pullquote { |
5643 | 5649 | border-color: transparent; |
5644 | 5650 | border-width: 2px; |
diff --git a/src/wp-content/themes/twentynineteen/style.css b/src/wp-content/themes/twentynineteen/style.css
index dc99af1dd4..bef8d61169 100644
a
|
b
|
body.page .main-navigation { |
5652 | 5652 | } |
5653 | 5653 | |
5654 | 5654 | @-moz-document url-prefix() { |
5655 | | .entry .entry-content .has-drop-cap:not(:focus)::first-letter { |
| 5655 | .entry .entry-content .has-drop-cap:not(:focus):first-letter { |
5656 | 5656 | margin-top: 0.2em; |
5657 | 5657 | } |
5658 | 5658 | } |
… |
… |
body.page .main-navigation { |
6035 | 6035 | * is followed by an H1, or H2 */ |
6036 | 6036 | } |
6037 | 6037 | |
| 6038 | .entry .entry-content .wp-block-separator:not(.wp-block-separator), |
| 6039 | .entry .entry-content hr:not(.wp-block-separator) { |
| 6040 | max-width: 100%; |
| 6041 | } |
| 6042 | |
| 6043 | @media only screen and (min-width: 768px) { |
| 6044 | .entry .entry-content .wp-block-separator:not(.wp-block-separator), |
| 6045 | .entry .entry-content hr:not(.wp-block-separator) { |
| 6046 | max-width: calc(8 * (100vw / 12) - 28px); |
| 6047 | } |
| 6048 | } |
| 6049 | |
| 6050 | @media only screen and (min-width: 1168px) { |
| 6051 | .entry .entry-content .wp-block-separator:not(.wp-block-separator), |
| 6052 | .entry .entry-content hr:not(.wp-block-separator) { |
| 6053 | max-width: calc(6 * (100vw / 12) - 28px); |
| 6054 | } |
| 6055 | } |
| 6056 | |
6038 | 6057 | .entry .entry-content .wp-block-separator.is-style-wide, |
6039 | 6058 | .entry .entry-content hr.is-style-wide { |
6040 | 6059 | max-width: 100%; |