l10n.css 3.6 KB

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