18
|
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 |
/** |
19
|
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 |
/** |
18
|
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 |
.wp-block-button__link { |
|
78 |
color: #fff; |
|
79 |
background-color: #32373c; |
|
80 |
border-radius: 9999px; |
|
81 |
box-shadow: none; |
|
82 |
cursor: pointer; |
|
83 |
display: inline-block; |
|
84 |
font-size: 1.125em; |
|
85 |
padding: calc(0.667em + 2px) calc(1.333em + 2px); |
|
86 |
text-align: center; |
|
87 |
text-decoration: none; |
19
|
88 |
word-break: break-word; |
18
|
89 |
box-sizing: border-box; |
|
90 |
} |
|
91 |
.wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:active, .wp-block-button__link:visited { |
|
92 |
color: #fff; |
|
93 |
} |
|
94 |
.wp-block-button__link.aligncenter { |
|
95 |
text-align: center; |
|
96 |
} |
|
97 |
.wp-block-button__link.alignright { |
|
98 |
/*rtl:ignore*/ |
|
99 |
text-align: right; |
|
100 |
} |
|
101 |
|
|
102 |
.wp-block-buttons > .wp-block-button.has-custom-width { |
|
103 |
max-width: none; |
|
104 |
} |
|
105 |
.wp-block-buttons > .wp-block-button.has-custom-width .wp-block-button__link { |
|
106 |
width: 100%; |
|
107 |
} |
|
108 |
.wp-block-buttons > .wp-block-button.has-custom-font-size .wp-block-button__link { |
|
109 |
font-size: inherit; |
|
110 |
} |
|
111 |
.wp-block-buttons > .wp-block-button.wp-block-button__width-25 { |
19
|
112 |
width: calc(25% - (var(--wp--style--block-gap, 0.5em) * 0.75)); |
18
|
113 |
} |
|
114 |
.wp-block-buttons > .wp-block-button.wp-block-button__width-50 { |
19
|
115 |
width: calc(50% - (var(--wp--style--block-gap, 0.5em) * 0.5)); |
18
|
116 |
} |
|
117 |
.wp-block-buttons > .wp-block-button.wp-block-button__width-75 { |
19
|
118 |
width: calc(75% - (var(--wp--style--block-gap, 0.5em) * 0.25)); |
18
|
119 |
} |
|
120 |
.wp-block-buttons > .wp-block-button.wp-block-button__width-100 { |
|
121 |
width: 100%; |
19
|
122 |
flex-basis: 100%; |
18
|
123 |
} |
|
124 |
|
19
|
125 |
.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-25 { |
|
126 |
width: 25%; |
18
|
127 |
} |
19
|
128 |
.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-50 { |
|
129 |
width: 50%; |
|
130 |
} |
|
131 |
.wp-block-buttons.is-vertical > .wp-block-button.wp-block-button__width-75 { |
|
132 |
width: 75%; |
|
133 |
} |
|
134 |
|
18
|
135 |
.wp-block-button.is-style-squared, |
|
136 |
.wp-block-button__link.wp-block-button.is-style-squared { |
|
137 |
border-radius: 0; |
|
138 |
} |
|
139 |
|
|
140 |
.wp-block-button.no-border-radius, |
|
141 |
.wp-block-button__link.no-border-radius { |
|
142 |
border-radius: 0 !important; |
|
143 |
} |
|
144 |
|
19
|
145 |
.is-style-outline > :where(.wp-block-button__link), |
|
146 |
:where(.wp-block-button__link).is-style-outline { |
18
|
147 |
border: 2px solid currentColor; |
|
148 |
padding: 0.667em 1.333em; |
|
149 |
} |
|
150 |
|
|
151 |
.is-style-outline > .wp-block-button__link:not(.has-text-color), |
|
152 |
.wp-block-button__link.is-style-outline:not(.has-text-color) { |
|
153 |
color: currentColor; |
|
154 |
} |
|
155 |
|
|
156 |
.is-style-outline > .wp-block-button__link:not(.has-background), |
|
157 |
.wp-block-button__link.is-style-outline:not(.has-background) { |
|
158 |
background-color: transparent; |
|
159 |
} |