From 5a29757b926f85c001c848c21bca9630b9084f90 Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Sun, 11 Jan 2015 20:29:56 +0000 Subject: [PATCH] TinyMCE: fix (switch) the indent/outdent icons in RTL mode so the arrow points at the proper direction. Props avryl, fixes #21281. git-svn-id: https://develop.svn.wordpress.org/trunk@31142 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/css/editor.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/wp-includes/css/editor.css b/src/wp-includes/css/editor.css index b90bdf88da..ff6409ccf0 100644 --- a/src/wp-includes/css/editor.css +++ b/src/wp-includes/css/editor.css @@ -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;