Ticket #21890: 21890.2.alt.diff

File 21890.2.alt.diff, 1.1 KB (added by SergeyBiryukov, 6 months ago)
  • wp-admin/css/wp-admin.css

     
    85238523.locale-ru-ru.press-this #side-sortables { 
    85248524        width: 245px; /* default 200px + 45px */ 
    85258525} 
     8526.locale-ru-ru #customize-header-actions .button { 
     8527        padding: 0 8px 1px; /* default 0 10px 1px; */ 
     8528} 
    85268529 
    85278530/* lt_LT: QuickEdit */ 
    85288531.locale-lt-lt .inline-edit-row fieldset label span.title { 
  • wp-admin/customize.php

     
    5757if ( $is_ios ) 
    5858        $body_class .= ' ios'; 
    5959 
     60if ( is_rtl() ) 
     61        $body_class .=  ' rtl'; 
     62$body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) ); 
     63 
    6064$admin_title = sprintf( __( '%1$s — WordPress' ), strip_tags( sprintf( __( 'Customize %s' ), $wp_customize->theme()->display('Name') ) ) ); 
    6165?><title><?php echo $admin_title; ?></title><?php 
    6266