Make WordPress Core

Changeset 31142


Ignore:
Timestamp:
01/11/2015 08:29:56 PM (10 years ago)
Author:
azaozz
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/css/editor.css

    r30890 r31142  
    885885}
    886886
     887/* RTL button icons */
     888.rtl i.mce-i-outdent:before {
     889    content: '\f222';
     890}
     891
     892.rtl i.mce-i-indent:before {
     893    content: '\f221';
     894}
     895
    887896/* Editors */
    888897.wp-editor-wrap {
Note: See TracChangeset for help on using the changeset viewer.