style-rtl.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. @charset "UTF-8";
  2. /**
  3. * Colors
  4. */
  5. /**
  6. * Breakpoints & Media Queries
  7. */
  8. /**
  9. * SCSS Variables.
  10. *
  11. * Please use variables from this sheet to ensure consistency across the UI.
  12. * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
  13. * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
  14. */
  15. /**
  16. * Colors
  17. */
  18. /**
  19. * Fonts & basic variables.
  20. */
  21. /**
  22. * Grid System.
  23. * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
  24. */
  25. /**
  26. * Dimensions.
  27. */
  28. /**
  29. * Shadows.
  30. */
  31. /**
  32. * Editor widths.
  33. */
  34. /**
  35. * Block & Editor UI.
  36. */
  37. /**
  38. * Block paddings.
  39. */
  40. /**
  41. * React Native specific.
  42. * These variables do not appear to be used anywhere else.
  43. */
  44. /**
  45. * Converts a hex value into the rgb equivalent.
  46. *
  47. * @param {string} hex - the hexadecimal value to convert
  48. * @return {string} comma separated rgb values
  49. */
  50. /**
  51. * Breakpoint mixins
  52. */
  53. /**
  54. * Long content fade mixin
  55. *
  56. * Creates a fading overlay to signify that the content is longer
  57. * than the space allows.
  58. */
  59. /**
  60. * Focus styles.
  61. */
  62. /**
  63. * Applies editor left position to the selector passed as argument
  64. */
  65. /**
  66. * Styles that are reused verbatim in a few places
  67. */
  68. /**
  69. * Allows users to opt-out of animations via OS-level preferences.
  70. */
  71. /**
  72. * Reset default styles for JavaScript UI based pages.
  73. * This is a WP-admin agnostic reset
  74. */
  75. /**
  76. * Reset the WP Admin page styles for Gutenberg-like pages.
  77. */
  78. .wp-block-separator {
  79. border-top: 1px solid currentColor;
  80. border-bottom: 1px solid currentColor;
  81. }
  82. .wp-block-separator.is-style-dots {
  83. background: none !important;
  84. border: none;
  85. text-align: center;
  86. line-height: 1;
  87. height: auto;
  88. }
  89. .wp-block-separator.is-style-dots::before {
  90. content: "···";
  91. color: currentColor;
  92. font-size: 1.5em;
  93. letter-spacing: 2em;
  94. padding-left: 2em;
  95. font-family: serif;
  96. }