Nessuna descrizione

style-rtl.css 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. * Breakpoint mixins
  46. */
  47. /**
  48. * Long content fade mixin
  49. *
  50. * Creates a fading overlay to signify that the content is longer
  51. * than the space allows.
  52. */
  53. /**
  54. * Focus styles.
  55. */
  56. /**
  57. * Applies editor left position to the selector passed as argument
  58. */
  59. /**
  60. * Styles that are reused verbatim in a few places
  61. */
  62. /**
  63. * Allows users to opt-out of animations via OS-level preferences.
  64. */
  65. /**
  66. * Reset default styles for JavaScript UI based pages.
  67. * This is a WP-admin agnostic reset
  68. */
  69. /**
  70. * Reset the WP Admin page styles for Gutenberg-like pages.
  71. */
  72. .wp-block-separator {
  73. border-top: 1px solid currentColor;
  74. border-bottom: 1px solid currentColor;
  75. }
  76. .wp-block-separator.is-style-wide {
  77. border-bottom-width: 1px;
  78. }
  79. .wp-block-separator.is-style-dots {
  80. background: none !important;
  81. border: none;
  82. text-align: center;
  83. width: none;
  84. line-height: 1;
  85. height: auto;
  86. }
  87. .wp-block-separator.is-style-dots::before {
  88. content: "···";
  89. color: currentColor;
  90. font-size: 1.5em;
  91. letter-spacing: 2em;
  92. padding-left: 2em;
  93. font-family: serif;
  94. }