diff --git a/wp-content/themes/twentysixteen/css/editor-blocks.css b/wp-content/themes/twentysixteen/css/editor-blocks.css index 6fd2ddb01e..6d2a23662d 100644 --- a/wp-content/themes/twentysixteen/css/editor-blocks.css +++ b/wp-content/themes/twentysixteen/css/editor-blocks.css @@ -27,6 +27,10 @@ Description: Used to style blocks in the editor. line-height: 1.75; } +.rtl .editor-styles-wrapper { + font-family: Arial, Tahoma, sans-serif; +} + .edit-post-visual-editor .editor-block-list__block { color: #1a1a1a; } @@ -262,16 +266,12 @@ Description: Used to style blocks in the editor. /* Captions */ -[class^="wp-block-"] figcaption { +figure[class*="wp-block-"] > figcaption { color: #686868; font-style: italic; line-height: 1.6153846154; padding-top: 0.5384615385em; - text-align: left; -} - -.rtl [class^="wp-block-"] figcaption { - text-align: right; + text-align: start; } /*-------------------------------------------------------------- diff --git a/wp-content/themes/twentysixteen/css/editor-style.css b/wp-content/themes/twentysixteen/css/editor-style.css index ef1682efee..6f7d7e92e3 100644 --- a/wp-content/themes/twentysixteen/css/editor-style.css +++ b/wp-content/themes/twentysixteen/css/editor-style.css @@ -313,19 +313,22 @@ table th, .mce-item-table th, table caption { border-width: 0 1px 1px 0; - font-size: 16px; font-weight: 700; padding: 7px; - text-align: left; + text-align: start; vertical-align: baseline; } +table caption { + font-weight: normal; +} + table td, .mce-item-table td { border-width: 0 1px 1px 0; - font-size: 16px; padding: 7px; vertical-align: baseline; + text-align: start; } img { @@ -502,6 +505,11 @@ fieldset { * 8.0 - RTL */ +body.rtl, +[dir="rtl"] body { + font-family: Arial, Tahoma, sans-serif; +} + .rtl blockquote { border: 0 solid #1a1a1a; border-right-width: 4px; @@ -533,9 +541,3 @@ fieldset { margin-right: 24px; margin-left: auto; } - -.rtl table th, -.rtl .mce-item-table th, -.rtl table caption { - text-align: right; -} diff --git a/wp-includes/version.php b/wp-includes/version.php index 79b51375a9..f70c1286ae 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-58634'; +$wp_version = '6.7-alpha-58635'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.