mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-16 19:46:21 +00:00
Add some ru_RU-specific CSS to the customizer to prevent the spinner from being bumped to the next line. props SergeyBiryukov, see #21890.
git-svn-id: http://core.svn.wordpress.org/trunk@22474 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6a56b5e2cf
commit
c9cae7a1b3
@ -8523,6 +8523,9 @@ a.widget-control-edit {
|
|||||||
.locale-ru-ru.press-this #side-sortables {
|
.locale-ru-ru.press-this #side-sortables {
|
||||||
width: 245px; /* default 200px + 45px */
|
width: 245px; /* default 200px + 45px */
|
||||||
}
|
}
|
||||||
|
.locale-ru-ru #customize-header-actions .button {
|
||||||
|
padding: 0 8px 1px; /* default 0 10px 1px; */
|
||||||
|
}
|
||||||
|
|
||||||
/* lt_LT: QuickEdit */
|
/* lt_LT: QuickEdit */
|
||||||
.locale-lt-lt .inline-edit-row fieldset label span.title {
|
.locale-lt-lt .inline-edit-row fieldset label span.title {
|
||||||
|
@ -57,6 +57,10 @@ $is_ios = wp_is_mobile() && preg_match( '/iPad|iPod|iPhone/', $_SERVER['HTTP_USE
|
|||||||
if ( $is_ios )
|
if ( $is_ios )
|
||||||
$body_class .= ' 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') ) ) );
|
$admin_title = sprintf( __( '%1$s — WordPress' ), strip_tags( sprintf( __( 'Customize %s' ), $wp_customize->theme()->display('Name') ) ) );
|
||||||
?><title><?php echo $admin_title; ?></title><?php
|
?><title><?php echo $admin_title; ?></title><?php
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user