style-rtl.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /**
  2. * Colors
  3. */
  4. /**
  5. * Breakpoints & Media Queries
  6. */
  7. /**
  8. * SCSS Variables.
  9. *
  10. * Please use variables from this sheet to ensure consistency across the UI.
  11. * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
  12. * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
  13. */
  14. /**
  15. * Colors
  16. */
  17. /**
  18. * Fonts & basic variables.
  19. */
  20. /**
  21. * Grid System.
  22. * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
  23. */
  24. /**
  25. * Dimensions.
  26. */
  27. /**
  28. * Shadows.
  29. */
  30. /**
  31. * Editor widths.
  32. */
  33. /**
  34. * Block & Editor UI.
  35. */
  36. /**
  37. * Block paddings.
  38. */
  39. /**
  40. * React Native specific.
  41. * These variables do not appear to be used anywhere else.
  42. */
  43. /**
  44. * Converts a hex value into the rgb equivalent.
  45. *
  46. * @param {string} hex - the hexadecimal value to convert
  47. * @return {string} comma separated rgb values
  48. */
  49. /**
  50. * Breakpoint mixins
  51. */
  52. /**
  53. * Long content fade mixin
  54. *
  55. * Creates a fading overlay to signify that the content is longer
  56. * than the space allows.
  57. */
  58. /**
  59. * Focus styles.
  60. */
  61. /**
  62. * Applies editor left position to the selector passed as argument
  63. */
  64. /**
  65. * Styles that are reused verbatim in a few places
  66. */
  67. /**
  68. * Allows users to opt-out of animations via OS-level preferences.
  69. */
  70. /**
  71. * Reset default styles for JavaScript UI based pages.
  72. * This is a WP-admin agnostic reset
  73. */
  74. /**
  75. * Reset the WP Admin page styles for Gutenberg-like pages.
  76. */
  77. /* Styles for backwards compatibility with the legacy `post-comments` block */
  78. .wp-block-post-comments {
  79. /* utility classes */
  80. /* end utility classes */
  81. }
  82. .wp-block-post-comments .alignleft {
  83. float: right;
  84. }
  85. .wp-block-post-comments .alignright {
  86. float: left;
  87. }
  88. .wp-block-post-comments .navigation::after {
  89. content: "";
  90. display: table;
  91. clear: both;
  92. }
  93. .wp-block-post-comments .commentlist {
  94. clear: both;
  95. list-style: none;
  96. margin: 0;
  97. padding: 0;
  98. }
  99. .wp-block-post-comments .commentlist .comment {
  100. min-height: 2.25em;
  101. padding-right: 3.25em;
  102. }
  103. .wp-block-post-comments .commentlist .comment p {
  104. font-size: 1em;
  105. line-height: 1.8;
  106. margin: 1em 0;
  107. }
  108. .wp-block-post-comments .commentlist .children {
  109. list-style: none;
  110. margin: 0;
  111. padding: 0;
  112. }
  113. .wp-block-post-comments .comment-author {
  114. line-height: 1.5;
  115. }
  116. .wp-block-post-comments .comment-author .avatar {
  117. border-radius: 1.5em;
  118. display: block;
  119. float: right;
  120. height: 2.5em;
  121. margin-top: 0.5em;
  122. margin-left: 0.75em;
  123. width: 2.5em;
  124. }
  125. .wp-block-post-comments .comment-author cite {
  126. font-style: normal;
  127. }
  128. .wp-block-post-comments .comment-meta {
  129. font-size: 0.875em;
  130. line-height: 1.5;
  131. }
  132. .wp-block-post-comments .comment-meta b {
  133. font-weight: normal;
  134. }
  135. .wp-block-post-comments .comment-meta .comment-awaiting-moderation {
  136. margin-top: 1em;
  137. margin-bottom: 1em;
  138. display: block;
  139. }
  140. .wp-block-post-comments .comment-body .commentmetadata {
  141. font-size: 0.875em;
  142. }
  143. .wp-block-post-comments .comment-form-comment label,
  144. .wp-block-post-comments .comment-form-author label,
  145. .wp-block-post-comments .comment-form-email label,
  146. .wp-block-post-comments .comment-form-url label {
  147. display: block;
  148. margin-bottom: 0.25em;
  149. }
  150. .wp-block-post-comments .comment-form textarea,
  151. .wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox]) {
  152. display: block;
  153. box-sizing: border-box;
  154. width: 100%;
  155. }
  156. .wp-block-post-comments .comment-form-cookies-consent {
  157. display: flex;
  158. gap: 0.25em;
  159. }
  160. .wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent {
  161. margin-top: 0.35em;
  162. }
  163. .wp-block-post-comments .comment-reply-title {
  164. margin-bottom: 0;
  165. }
  166. .wp-block-post-comments .comment-reply-title :where(small) {
  167. font-size: var(--wp--preset--font-size--medium, smaller);
  168. margin-right: 0.5em;
  169. }
  170. .wp-block-post-comments .reply {
  171. font-size: 0.875em;
  172. margin-bottom: 1.4em;
  173. }
  174. .wp-block-post-comments textarea,
  175. .wp-block-post-comments input:not([type=submit]) {
  176. border: 1px solid #949494;
  177. font-size: 1em;
  178. font-family: inherit;
  179. }
  180. .wp-block-post-comments textarea,
  181. .wp-block-post-comments input:not([type=submit]):not([type=checkbox]) {
  182. padding: calc(0.667em + 2px);
  183. }
  184. :where(.wp-block-post-comments input[type="submit"]) {
  185. border: none;
  186. }