TinyMCE: fix (switch) the indent/outdent icons in RTL mode so the arrow points at the proper direction. Props avryl, fixes #21281.

Built from https://develop.svn.wordpress.org/trunk@31142


git-svn-id: http://core.svn.wordpress.org/trunk@31123 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2015-01-11 20:30:26 +00:00
parent 77875a273e
commit 49c0b22828
5 changed files with 21 additions and 3 deletions

View File

@ -884,6 +884,15 @@ i.mce-i-hr:before {
content: '\f475';
}
/* RTL button icons */
.rtl i.mce-i-outdent:before {
content: '\f222';
}
.rtl i.mce-i-indent:before {
content: '\f221';
}
/* Editors */
.wp-editor-wrap {
position: relative;

File diff suppressed because one or more lines are too long

View File

@ -884,6 +884,15 @@ i.mce-i-hr:before {
content: '\f475';
}
/* RTL button icons */
.rtl i.mce-i-outdent:before {
content: '\f222';
}
.rtl i.mce-i-indent:before {
content: '\f221';
}
/* Editors */
.wp-editor-wrap {
position: relative;

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.2-alpha-31141';
$wp_version = '4.2-alpha-31142';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.