[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-admin/css/ -> l10n.css (source)

   1  /*------------------------------------------------------------------------------
   2    27.0 - Localization
   3  ------------------------------------------------------------------------------*/
   4  
   5  /* RTL except Hebrew (see below): Tahoma as the first font; */
   6  body.rtl,
   7  body.rtl .press-this a.wp-switch-editor {
   8      font-family: Tahoma, Arial, sans-serif;
   9  }
  10  
  11  /* Arial is best for RTL headings. */
  12  .rtl h1,
  13  .rtl h2,
  14  .rtl h3,
  15  .rtl h4,
  16  .rtl h5,
  17  .rtl h6 {
  18      font-family: Arial, sans-serif;
  19      font-weight: 600;
  20  }
  21  
  22  /* he_IL: Remove Tahoma from the font stack. Arial is best for Hebrew. */
  23  body.locale-he-il,
  24  body.locale-he-il .press-this a.wp-switch-editor {
  25      font-family: Arial, sans-serif;
  26  }
  27  
  28  /* he_IL: Have <em> be bold rather than italic. */
  29  .locale-he-il em {
  30      font-style: normal;
  31      font-weight: 600;
  32  }
  33  
  34  /* zh_CN: Remove italic properties. */
  35  .locale-zh-cn .howto,
  36  .locale-zh-cn .tablenav .displaying-num,
  37  .locale-zh-cn .js .input-with-default-title,
  38  .locale-zh-cn .link-to-original,
  39  .locale-zh-cn .inline-edit-row fieldset span.title,
  40  .locale-zh-cn .inline-edit-row fieldset span.checkbox-title,
  41  .locale-zh-cn #utc-time,
  42  .locale-zh-cn #local-time,
  43  .locale-zh-cn p.install-help,
  44  .locale-zh-cn p.help,
  45  .locale-zh-cn p.description,
  46  .locale-zh-cn span.description,
  47  .locale-zh-cn .form-wrap p {
  48      font-style: normal;
  49  }
  50  
  51  /* zh_CN: Enlarge dashboard widget 'Configure' link */
  52  .locale-zh-cn .hdnle a {
  53      font-size: 12px;
  54  }
  55  
  56  /* zn_CH: Enlarge font size, set font-size: normal */
  57  .locale-zh-cn form.upgrade .hint {
  58      font-style: normal;
  59      font-size: 100%;
  60  }
  61  
  62  /* zh_CN: Enlarge font-size. */
  63  .locale-zh-cn #sort-buttons {
  64      font-size: 1em !important;
  65  }
  66  
  67  /* de_DE: Text needs more space for translation */
  68  .locale-de-de #customize-header-actions .button,
  69  .locale-de-de-formal #customize-header-actions .button {
  70      padding: 0 5px 1px; /* default 0 10px 1px */
  71  }
  72  
  73  .locale-de-de #customize-header-actions .spinner,
  74  .locale-de-de-formal #customize-header-actions .spinner {
  75      margin: 16px 3px 0; /* default 16px 4px 0 5px */
  76  }
  77  
  78  body[class*="locale-de-"] .inline-edit-row fieldset label span.title,
  79  body[class*="locale-de-"] .inline-edit-row fieldset.inline-edit-date legend {
  80      width: 7em; /* default 6em */
  81  }
  82  
  83  body[class*="locale-de-"] .inline-edit-row fieldset label span.input-text-wrap,
  84  body[class*="locale-de-"] .inline-edit-row fieldset .timestamp-wrap {
  85      margin-left: 7em; /* default 6em */
  86  }
  87  
  88  /* ru_RU: Text needs more room to breathe. */
  89  .locale-ru-ru #adminmenu {
  90      width: inherit; /* back-compat for pre-3.2 */
  91  }
  92  
  93  .locale-ru-ru #adminmenu,
  94  .locale-ru-ru #wpbody {
  95      margin-left: 0; /* back-compat for pre-3.2 */
  96  }
  97  
  98  .locale-ru-ru .inline-edit-row fieldset label span.title,
  99  .locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend {
 100      width: 8em; /* default 6em */
 101  }
 102  
 103  .locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,
 104  .locale-ru-ru .inline-edit-row fieldset .timestamp-wrap {
 105      margin-left: 8em; /* default 6em */
 106  }
 107  
 108  .locale-ru-ru.post-php .tagsdiv .newtag,
 109  .locale-ru-ru.post-new-php .tagsdiv .newtag {
 110      width: 165px; /* default 180px - 15px */
 111  }
 112  
 113  .locale-ru-ru.press-this .posting {
 114      margin-right: 277px; /* default 252px + 25px */
 115  }
 116  
 117  .locale-ru-ru .press-this-sidebar {
 118      width: 265px; /* default 240px + 25px */
 119  }
 120  
 121  .locale-ru-ru #customize-header-actions .button {
 122      padding: 0 5px 1px; /* default 0 10px 1px */
 123  }
 124  
 125  .locale-ru-ru #customize-header-actions .spinner {
 126      margin: 16px 3px 0; /* default 16px 4px 0 5px */
 127  }
 128  
 129  /* lt_LT: QuickEdit */
 130  .locale-lt-lt .inline-edit-row fieldset label span.title,
 131  .locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend {
 132      width: 8em; /* default 6em */
 133  }
 134  
 135  .locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,
 136  .locale-lt-lt .inline-edit-row fieldset .timestamp-wrap {
 137      margin-left: 8em; /* default 6em */
 138  }
 139  
 140  /* Fix overridden width for adjusted locales */
 141  body[class*="locale-de-"] .quick-edit-row-post fieldset.inline-edit-col-right label span.title,
 142  .locale-ru-ru .quick-edit-row-post fieldset.inline-edit-col-right label span.title,
 143  .locale-lt-lt .quick-edit-row-post fieldset.inline-edit-col-right label span.title {
 144      width: auto;
 145  }
 146  
 147  @media screen and (max-width: 782px) {
 148      body[class*="locale-de-"] .inline-edit-row fieldset label span.input-text-wrap,
 149      body[class*="locale-de-"] .inline-edit-row fieldset .timestamp-wrap,
 150      .locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,
 151      .locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,
 152      .locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,
 153      .locale-lt-lt .inline-edit-row fieldset .timestamp-wrap {
 154          margin-left: 0;
 155      }
 156  }


Generated : Fri Sep 4 08:20:24 2026 Cross-referenced by PHPXref