Fix editor menu drop-downs in RTL, fixes #17798
git-svn-id: http://svn.automattic.com/wordpress/trunk@19088 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
12b9d51e2e
commit
5c5e45abda
File diff suppressed because one or more lines are too long
|
@ -1540,6 +1540,19 @@ RTL
|
|||
background-position: center right;
|
||||
}
|
||||
|
||||
.rtl .wp_themeSkin .mceListBox .mceText {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.rtl .wp_themeSkin .mceNoIcons a .mceText {
|
||||
padding-right: 10px;
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
.rtl .mceListBoxMenu.mceNoIcons {
|
||||
margin-left: -14px;
|
||||
}
|
||||
|
||||
.clearlooks2 .mceFocus .mceTop .mceLeft {
|
||||
background: #444444;
|
||||
border-left: 1px solid #999;
|
||||
|
|
|
@ -454,7 +454,7 @@ function wp_default_styles( &$styles ) {
|
|||
$styles->add( 'imgareaselect', '/wp-includes/js/imgareaselect/imgareaselect.css', array(), '0.9.1' );
|
||||
$styles->add( 'admin-bar', "/wp-includes/css/admin-bar$suffix.css", array(), '20111019' );
|
||||
$styles->add( 'wp-jquery-ui-dialog', "/wp-includes/css/jquery-ui-dialog$suffix.css", array(), '20101224' );
|
||||
$styles->add( 'editor-buttons', "/wp-includes/css/editor-buttons$suffix.css", array(), '20111014' );
|
||||
$styles->add( 'editor-buttons', "/wp-includes/css/editor-buttons$suffix.css", array(), '20111028' );
|
||||
$styles->add( 'wp-pointer', "/wp-includes/css/wp-pointer$suffix.css", array(), '20111017' );
|
||||
|
||||
foreach ( $rtl_styles as $rtl_style ) {
|
||||
|
|
Loading…
Reference in New Issue