diff -r f507feede89a -r 09a1c134465b web/wp-admin/customize.php --- a/web/wp-admin/customize.php Wed Dec 19 12:35:13 2012 -0800 +++ b/web/wp-admin/customize.php Wed Dec 19 17:46:52 2012 -0800 @@ -44,7 +44,7 @@ wp_user_settings(); _wp_admin_html_begin(); -$body_class = ''; +$body_class = 'wp-core-ui'; if ( wp_is_mobile() ) : $body_class .= ' mobile'; @@ -57,6 +57,10 @@ if ( $is_ios ) $body_class .= ' ios'; +if ( is_rtl() ) + $body_class .= ' rtl'; +$body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) ); + $admin_title = sprintf( __( '%1$s — WordPress' ), strip_tags( sprintf( __( 'Customize %s' ), $wp_customize->theme()->display('Name') ) ) ); ?>