mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
108266d87a
fixes #29265. see #26510. Built from https://develop.svn.wordpress.org/trunk@29539 git-svn-id: http://core.svn.wordpress.org/trunk@29315 1a063a9b-81f0-0310-95a4-ce76da25c4cd
102 lines
3.0 KiB
CSS
102 lines
3.0 KiB
CSS
/*------------------------------------------------------------------------------
|
|
27.0 - Localization
|
|
------------------------------------------------------------------------------*/
|
|
|
|
/* RTL except Hebrew (see below): Tahoma as the first font; */
|
|
body.rtl,
|
|
body.rtl .press-this a.wp-switch-editor {
|
|
font-family: Tahoma, Arial, sans-serif;
|
|
}
|
|
|
|
|
|
/* he_IL: Remove Tahoma from the font stack. Arial is best for Hebrew. */
|
|
body.locale-he-il,
|
|
body.locale-he-il .press-this a.wp-switch-editor {
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
/* he_IL: Have <em> be bold rather than italic. */
|
|
.locale-he-il em {
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* zh_CN: Remove italic properties. */
|
|
.locale-zh-cn .howto,
|
|
.locale-zh-cn .tablenav .displaying-num,
|
|
.locale-zh-cn .js .input-with-default-title,
|
|
.locale-zh-cn .link-to-original,
|
|
.locale-zh-cn .inline-edit-row fieldset span.title,
|
|
.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,
|
|
.locale-zh-cn #utc-time,
|
|
.locale-zh-cn #local-time,
|
|
.locale-zh-cn p.install-help,
|
|
.locale-zh-cn p.help,
|
|
.locale-zh-cn p.description,
|
|
.locale-zh-cn span.description,
|
|
.locale-zh-cn .form-wrap p {
|
|
font-style: normal;
|
|
}
|
|
|
|
/* zh_CN: Enlarge dashboard widget 'Configure' link */
|
|
.locale-zh-cn .hdnle a { font-size: 12px; }
|
|
|
|
/* zn_CH: Enlarge font size, set font-size: normal */
|
|
.locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; }
|
|
|
|
/* Zn_CH: Distraction free writing.
|
|
* More beautiful font for "Just write."
|
|
* Larger text for HTML/Visual mode.
|
|
*/
|
|
.locale-zh-cn #wp-fullscreen-tagline { font-family: KaiTi, "楷体", sans-serif; }
|
|
.locale-zh-cn #wp-fullscreen-modes a { font-size: 12px; }
|
|
|
|
/* zh_CN: Enlarge font-size. */
|
|
.locale-zh-cn #sort-buttons { font-size: 1em !important; }
|
|
|
|
/* de_DE: Text needs more space for translation */
|
|
.locale-de-de .inline-edit-row fieldset label span.title {
|
|
width: 7em; /* default 5em */
|
|
}
|
|
.locale-de-de .inline-edit-row fieldset label span.input-text-wrap {
|
|
margin-right: 7em; /* default 5em */
|
|
}
|
|
.locale-de-de #customize-header-actions .button {
|
|
padding: 0 5px 1px; /* default 0 10px 1px */
|
|
}
|
|
.locale-de-de #customize-header-actions .spinner {
|
|
margin: 16px 3px 0; /* default 16px 4px 0 5px */
|
|
}
|
|
|
|
/* ru_RU: Text needs more room to breathe. */
|
|
.locale-ru-ru .inline-edit-row fieldset label span.title {
|
|
width: 8em; /* default 5em */
|
|
}
|
|
.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap {
|
|
margin-right: 8em; /* default 5em */
|
|
}
|
|
.locale-ru-ru.post-php .tagsdiv .newtag,
|
|
.locale-ru-ru.post-new-php .tagsdiv .newtag {
|
|
width: 165px; /* default 180px - 15px */
|
|
}
|
|
.locale-ru-ru.press-this .posting {
|
|
margin-left: 277px; /* default 252px + 25px */
|
|
}
|
|
.locale-ru-ru .press-this-sidebar {
|
|
width: 265px; /* default 240px + 25px */
|
|
}
|
|
.locale-ru-ru #customize-header-actions .button {
|
|
padding: 0 5px 1px; /* default 0 10px 1px */
|
|
}
|
|
.locale-ru-ru #customize-header-actions .spinner {
|
|
margin: 16px 3px 0; /* default 16px 4px 0 5px */
|
|
}
|
|
|
|
/* lt_LT: QuickEdit */
|
|
.locale-lt-lt .inline-edit-row fieldset label span.title {
|
|
width: 8em;
|
|
}
|
|
.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap {
|
|
margin-right: 8em;
|
|
}
|