UNPKG

1.97 kBCSSView Raw
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 border-left: none;
82 border-right: none;
83}
84.wp-block-separator.is-style-dots {
85 background: none !important;
86 border: none;
87 text-align: center;
88 line-height: 1;
89 height: auto;
90}
91.wp-block-separator.is-style-dots::before {
92 content: "···";
93 color: currentColor;
94 font-size: 1.5em;
95 letter-spacing: 2em;
96 /*rtl:ignore*/
97 padding-left: 2em;
98 font-family: serif;
99}
\No newline at end of file