TinyMCE: remove `word-break: break-word;` from the default editor CSS to prevent irregular spaces when typing in RTL languages.
Props iehsanir, alireza1375, ankit-k-gupta. Fixes #33868. Built from https://develop.svn.wordpress.org/trunk@34317 git-svn-id: http://core.svn.wordpress.org/trunk@34281 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0891de90e0
commit
1b24c98739
|
@ -23,7 +23,6 @@ body {
|
||||||
-webkit-font-smoothing: antialiased !important;
|
-webkit-font-smoothing: antialiased !important;
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
word-wrap: break-word; /* Old syntax */
|
word-wrap: break-word; /* Old syntax */
|
||||||
word-break: break-word; /* iOS */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body.rtl {
|
body.rtl {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-34316';
|
$wp_version = '4.4-alpha-34317';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue