9
|
1 |
/**
|
|
2 |
* Colors
|
|
3 |
*/
|
|
4 |
/**
|
|
5 |
* Breakpoints & Media Queries
|
|
6 |
*/
|
|
7 |
/**
|
|
8 |
* Often re-used variables
|
|
9 |
*/
|
|
10 |
/**
|
|
11 |
* Breakpoint mixins
|
|
12 |
*/
|
|
13 |
/**
|
|
14 |
* Long content fade mixin
|
|
15 |
*
|
|
16 |
* Creates a fading overlay to signify that the content is longer
|
|
17 |
* than the space allows.
|
|
18 |
*/
|
|
19 |
/**
|
|
20 |
* Button states and focus styles
|
|
21 |
*/
|
|
22 |
/**
|
|
23 |
* Applies editor left position to the selector passed as argument
|
|
24 |
*/
|
|
25 |
/**
|
|
26 |
* Applies editor right position to the selector passed as argument
|
|
27 |
*/
|
|
28 |
/**
|
|
29 |
* Styles that are reused verbatim in a few places
|
|
30 |
*/
|
|
31 |
/**
|
|
32 |
* Allows users to opt-out of animations via OS-level preferences.
|
|
33 |
*/
|
|
34 |
.components-animate__appear {
|
|
35 |
animation: components-animate__appear-animation 0.1s cubic-bezier(0, 0, 0.2, 1) 0s;
|
|
36 |
animation-fill-mode: forwards; }
|
|
37 |
@media (prefers-reduced-motion: reduce) {
|
|
38 |
.components-animate__appear {
|
|
39 |
animation-duration: 1ms !important; } }
|
|
40 |
.components-animate__appear.is-from-top, .components-animate__appear.is-from-top.is-from-left {
|
|
41 |
transform-origin: top right; }
|
|
42 |
.components-animate__appear.is-from-top.is-from-right {
|
|
43 |
transform-origin: top left; }
|
|
44 |
.components-animate__appear.is-from-bottom, .components-animate__appear.is-from-bottom.is-from-left {
|
|
45 |
transform-origin: bottom right; }
|
|
46 |
.components-animate__appear.is-from-bottom.is-from-right {
|
|
47 |
transform-origin: bottom left; }
|
|
48 |
|
|
49 |
@keyframes components-animate__appear-animation {
|
|
50 |
from {
|
|
51 |
transform: translateY(-2em) scaleY(0) scaleX(0); }
|
|
52 |
to {
|
|
53 |
transform: translateY(0%) scaleY(1) scaleX(1); } }
|
|
54 |
|
|
55 |
.components-animate__slide-in {
|
|
56 |
animation: components-animate__slide-in-animation 0.1s cubic-bezier(0, 0, 0.2, 1);
|
|
57 |
animation-fill-mode: forwards; }
|
|
58 |
@media (prefers-reduced-motion: reduce) {
|
|
59 |
.components-animate__slide-in {
|
|
60 |
animation-duration: 1ms !important; } }
|
|
61 |
.components-animate__slide-in.is-from-left {
|
|
62 |
transform: translateX(-100%); }
|
|
63 |
|
|
64 |
@keyframes components-animate__slide-in-animation {
|
|
65 |
100% {
|
|
66 |
transform: translateX(0%); } }
|
|
67 |
|
|
68 |
.components-autocomplete__popover .components-popover__content {
|
|
69 |
min-width: 200px; }
|
|
70 |
|
|
71 |
.components-autocomplete__popover .components-autocomplete__results {
|
|
72 |
padding: 3px;
|
|
73 |
display: flex;
|
|
74 |
flex-direction: column;
|
|
75 |
align-items: stretch; }
|
|
76 |
.components-autocomplete__popover .components-autocomplete__results:empty {
|
|
77 |
display: none; }
|
|
78 |
|
|
79 |
.components-autocomplete__result.components-button {
|
|
80 |
margin-bottom: 0;
|
|
81 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
82 |
font-size: 13px;
|
|
83 |
color: #555d66;
|
|
84 |
display: flex;
|
|
85 |
flex-direction: row;
|
|
86 |
flex-grow: 1;
|
|
87 |
flex-shrink: 0;
|
|
88 |
align-items: center;
|
|
89 |
padding: 6px 8px;
|
|
90 |
margin-right: -3px;
|
|
91 |
margin-left: -3px;
|
|
92 |
text-align: right; }
|
|
93 |
.components-autocomplete__result.components-button.is-selected {
|
|
94 |
color: #191e23;
|
|
95 |
border: none;
|
|
96 |
box-shadow: none;
|
|
97 |
outline-offset: -2px;
|
|
98 |
outline: 1px dotted #555d66; }
|
|
99 |
.components-autocomplete__result.components-button:hover {
|
|
100 |
color: #191e23;
|
|
101 |
border: none;
|
|
102 |
box-shadow: none;
|
|
103 |
background: #f3f4f5; }
|
|
104 |
|
|
105 |
.components-base-control {
|
|
106 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
107 |
font-size: 13px; }
|
|
108 |
.components-base-control .components-base-control__field {
|
|
109 |
margin-bottom: 8px; }
|
|
110 |
.components-panel__row .components-base-control .components-base-control__field {
|
|
111 |
margin-bottom: inherit; }
|
|
112 |
.components-base-control .components-base-control__label {
|
|
113 |
display: block;
|
|
114 |
margin-bottom: 4px; }
|
|
115 |
.components-base-control .components-base-control__help {
|
|
116 |
margin-top: -8px;
|
|
117 |
font-style: italic; }
|
|
118 |
|
|
119 |
.components-base-control + .components-base-control {
|
|
120 |
margin-bottom: 16px; }
|
|
121 |
|
|
122 |
.components-button-group {
|
|
123 |
display: inline-block; }
|
|
124 |
.components-button-group .components-button.is-button {
|
|
125 |
border-radius: 0; }
|
|
126 |
.components-button-group .components-button.is-button + .components-button.is-button {
|
|
127 |
margin-right: -1px; }
|
|
128 |
.components-button-group .components-button.is-button:first-child {
|
|
129 |
border-radius: 0 3px 3px 0; }
|
|
130 |
.components-button-group .components-button.is-button:last-child {
|
|
131 |
border-radius: 3px 0 0 3px; }
|
|
132 |
.components-button-group .components-button.is-button:focus, .components-button-group .components-button.is-button.is-primary {
|
|
133 |
position: relative;
|
|
134 |
z-index: 1; }
|
|
135 |
.components-button-group .components-button.is-button.is-primary {
|
|
136 |
box-shadow: none; }
|
|
137 |
|
|
138 |
.components-button {
|
|
139 |
display: inline-flex;
|
|
140 |
text-decoration: none;
|
|
141 |
font-size: 13px;
|
|
142 |
margin: 0;
|
|
143 |
border: 0;
|
|
144 |
cursor: pointer;
|
|
145 |
-webkit-appearance: none;
|
|
146 |
background: none;
|
|
147 |
/* Buttons that look like links, for a cross of good semantics with the visual */
|
|
148 |
/* Link buttons that are red to indicate destructive behavior. */ }
|
|
149 |
.components-button.is-button {
|
|
150 |
padding: 0 10px 1px;
|
|
151 |
line-height: 26px;
|
|
152 |
height: 28px;
|
|
153 |
border-radius: 3px;
|
|
154 |
white-space: nowrap;
|
|
155 |
border-width: 1px;
|
|
156 |
border-style: solid; }
|
|
157 |
.components-button.is-default {
|
|
158 |
color: #555;
|
|
159 |
border-color: #ccc;
|
|
160 |
background: #f7f7f7;
|
|
161 |
box-shadow: inset 0 -1px 0 #ccc;
|
|
162 |
vertical-align: top; }
|
|
163 |
.components-button.is-default:hover {
|
|
164 |
background: #fafafa;
|
|
165 |
border-color: #999;
|
|
166 |
box-shadow: inset 0 -1px 0 #999;
|
|
167 |
color: #23282d;
|
|
168 |
text-decoration: none; }
|
|
169 |
.components-button.is-default:focus:enabled {
|
|
170 |
background: #fafafa;
|
|
171 |
color: #23282d;
|
|
172 |
border-color: #999;
|
|
173 |
box-shadow: inset 0 -1px 0 #999, 0 0 0 2px #bfe7f3;
|
|
174 |
text-decoration: none; }
|
|
175 |
.components-button.is-default:active:enabled {
|
|
176 |
background: #eee;
|
|
177 |
border-color: #999;
|
|
178 |
box-shadow: inset 0 1px 0 #999; }
|
|
179 |
.components-button.is-default:disabled, .components-button.is-default[aria-disabled="true"] {
|
|
180 |
color: #a0a5aa;
|
|
181 |
border-color: #ddd;
|
|
182 |
background: #f7f7f7;
|
|
183 |
box-shadow: none;
|
|
184 |
text-shadow: 0 1px 0 #fff;
|
|
185 |
transform: none; }
|
|
186 |
.components-button.is-primary {
|
|
187 |
background: rgb(0, 133, 186);
|
|
188 |
border-color: rgb(0, 106, 149) rgb(0, 100, 140) rgb(0, 100, 140);
|
|
189 |
box-shadow: inset 0 -1px 0 rgb(0, 100, 140);
|
|
190 |
color: #fff;
|
|
191 |
text-decoration: none;
|
|
192 |
text-shadow: 0 -1px 1px rgb(0, 93, 130), -1px 0 1px rgb(0, 93, 130), 0 1px 1px rgb(0, 93, 130), 1px 0 1px rgb(0, 93, 130); }
|
|
193 |
body.admin-color-sunrise .components-button.is-primary {
|
|
194 |
background: rgb(209, 134, 74);
|
|
195 |
border-color: rgb(167, 107, 59) rgb(157, 101, 56) rgb(157, 101, 56);
|
|
196 |
box-shadow: inset 0 -1px 0 rgb(157, 101, 56);
|
|
197 |
text-shadow: 0 -1px 1px rgb(146, 94, 52), -1px 0 1px rgb(146, 94, 52), 0 1px 1px rgb(146, 94, 52), 1px 0 1px rgb(146, 94, 52); }
|
|
198 |
body.admin-color-ocean .components-button.is-primary {
|
|
199 |
background: rgb(163, 185, 162);
|
|
200 |
border-color: rgb(130, 148, 130) rgb(122, 139, 122) rgb(122, 139, 122);
|
|
201 |
box-shadow: inset 0 -1px 0 rgb(122, 139, 122);
|
|
202 |
text-shadow: 0 -1px 1px rgb(114, 130, 113), -1px 0 1px rgb(114, 130, 113), 0 1px 1px rgb(114, 130, 113), 1px 0 1px rgb(114, 130, 113); }
|
|
203 |
body.admin-color-midnight .components-button.is-primary {
|
|
204 |
background: rgb(225, 77, 67);
|
|
205 |
border-color: rgb(180, 62, 54) rgb(169, 58, 50) rgb(169, 58, 50);
|
|
206 |
box-shadow: inset 0 -1px 0 rgb(169, 58, 50);
|
|
207 |
text-shadow: 0 -1px 1px rgb(158, 54, 47), -1px 0 1px rgb(158, 54, 47), 0 1px 1px rgb(158, 54, 47), 1px 0 1px rgb(158, 54, 47); }
|
|
208 |
body.admin-color-ectoplasm .components-button.is-primary {
|
|
209 |
background: rgb(167, 182, 86);
|
|
210 |
border-color: rgb(134, 146, 69) rgb(125, 137, 65) rgb(125, 137, 65);
|
|
211 |
box-shadow: inset 0 -1px 0 rgb(125, 137, 65);
|
|
212 |
text-shadow: 0 -1px 1px rgb(117, 127, 60), -1px 0 1px rgb(117, 127, 60), 0 1px 1px rgb(117, 127, 60), 1px 0 1px rgb(117, 127, 60); }
|
|
213 |
body.admin-color-coffee .components-button.is-primary {
|
|
214 |
background: rgb(194, 166, 140);
|
|
215 |
border-color: rgb(155, 133, 112) rgb(146, 125, 105) rgb(146, 125, 105);
|
|
216 |
box-shadow: inset 0 -1px 0 rgb(146, 125, 105);
|
|
217 |
text-shadow: 0 -1px 1px rgb(136, 116, 98), -1px 0 1px rgb(136, 116, 98), 0 1px 1px rgb(136, 116, 98), 1px 0 1px rgb(136, 116, 98); }
|
|
218 |
body.admin-color-blue .components-button.is-primary {
|
|
219 |
background: rgb(217, 171, 89);
|
|
220 |
border-color: rgb(174, 137, 71) rgb(163, 128, 67) rgb(163, 128, 67);
|
|
221 |
box-shadow: inset 0 -1px 0 rgb(163, 128, 67);
|
|
222 |
text-shadow: 0 -1px 1px rgb(152, 120, 62), -1px 0 1px rgb(152, 120, 62), 0 1px 1px rgb(152, 120, 62), 1px 0 1px rgb(152, 120, 62); }
|
|
223 |
body.admin-color-light .components-button.is-primary {
|
|
224 |
background: rgb(0, 133, 186);
|
|
225 |
border-color: rgb(0, 106, 149) rgb(0, 100, 140) rgb(0, 100, 140);
|
|
226 |
box-shadow: inset 0 -1px 0 rgb(0, 100, 140);
|
|
227 |
text-shadow: 0 -1px 1px rgb(0, 93, 130), -1px 0 1px rgb(0, 93, 130), 0 1px 1px rgb(0, 93, 130), 1px 0 1px rgb(0, 93, 130); }
|
|
228 |
.components-button.is-primary:hover, .components-button.is-primary:focus:enabled {
|
|
229 |
background: rgb(0, 126, 177);
|
|
230 |
border-color: rgb(0, 67, 93);
|
|
231 |
color: #fff; }
|
|
232 |
body.admin-color-sunrise .components-button.is-primary:hover, body.admin-color-sunrise .components-button.is-primary:focus:enabled {
|
|
233 |
background: rgb(199, 127, 70);
|
|
234 |
border-color: rgb(105, 67, 37); }
|
|
235 |
body.admin-color-ocean .components-button.is-primary:hover, body.admin-color-ocean .components-button.is-primary:focus:enabled {
|
|
236 |
background: rgb(155, 176, 154);
|
|
237 |
border-color: rgb(82, 93, 81); }
|
|
238 |
body.admin-color-midnight .components-button.is-primary:hover, body.admin-color-midnight .components-button.is-primary:focus:enabled {
|
|
239 |
background: rgb(214, 73, 64);
|
|
240 |
border-color: rgb(113, 39, 34); }
|
|
241 |
body.admin-color-ectoplasm .components-button.is-primary:hover, body.admin-color-ectoplasm .components-button.is-primary:focus:enabled {
|
|
242 |
background: rgb(159, 173, 82);
|
|
243 |
border-color: rgb(84, 91, 43); }
|
|
244 |
body.admin-color-coffee .components-button.is-primary:hover, body.admin-color-coffee .components-button.is-primary:focus:enabled {
|
|
245 |
background: rgb(184, 158, 133);
|
|
246 |
border-color: rgb(97, 83, 70); }
|
|
247 |
body.admin-color-blue .components-button.is-primary:hover, body.admin-color-blue .components-button.is-primary:focus:enabled {
|
|
248 |
background: rgb(206, 162, 85);
|
|
249 |
border-color: rgb(109, 86, 45); }
|
|
250 |
body.admin-color-light .components-button.is-primary:hover, body.admin-color-light .components-button.is-primary:focus:enabled {
|
|
251 |
background: rgb(0, 126, 177);
|
|
252 |
border-color: rgb(0, 67, 93); }
|
|
253 |
.components-button.is-primary:hover {
|
|
254 |
box-shadow: inset 0 -1px 0 rgb(0, 67, 93); }
|
|
255 |
body.admin-color-sunrise .components-button.is-primary:hover {
|
|
256 |
box-shadow: inset 0 -1px 0 rgb(105, 67, 37); }
|
|
257 |
body.admin-color-ocean .components-button.is-primary:hover {
|
|
258 |
box-shadow: inset 0 -1px 0 rgb(82, 93, 81); }
|
|
259 |
body.admin-color-midnight .components-button.is-primary:hover {
|
|
260 |
box-shadow: inset 0 -1px 0 rgb(113, 39, 34); }
|
|
261 |
body.admin-color-ectoplasm .components-button.is-primary:hover {
|
|
262 |
box-shadow: inset 0 -1px 0 rgb(84, 91, 43); }
|
|
263 |
body.admin-color-coffee .components-button.is-primary:hover {
|
|
264 |
box-shadow: inset 0 -1px 0 rgb(97, 83, 70); }
|
|
265 |
body.admin-color-blue .components-button.is-primary:hover {
|
|
266 |
box-shadow: inset 0 -1px 0 rgb(109, 86, 45); }
|
|
267 |
body.admin-color-light .components-button.is-primary:hover {
|
|
268 |
box-shadow: inset 0 -1px 0 rgb(0, 67, 93); }
|
|
269 |
.components-button.is-primary:focus:enabled {
|
|
270 |
box-shadow: inset 0 -1px 0 rgb(0, 67, 93), 0 0 0 2px #bfe7f3; }
|
|
271 |
body.admin-color-sunrise .components-button.is-primary:focus:enabled {
|
|
272 |
box-shadow: inset 0 -1px 0 rgb(105, 67, 37), 0 0 0 2px #bfe7f3; }
|
|
273 |
body.admin-color-ocean .components-button.is-primary:focus:enabled {
|
|
274 |
box-shadow: inset 0 -1px 0 rgb(82, 93, 81), 0 0 0 2px #bfe7f3; }
|
|
275 |
body.admin-color-midnight .components-button.is-primary:focus:enabled {
|
|
276 |
box-shadow: inset 0 -1px 0 rgb(113, 39, 34), 0 0 0 2px #bfe7f3; }
|
|
277 |
body.admin-color-ectoplasm .components-button.is-primary:focus:enabled {
|
|
278 |
box-shadow: inset 0 -1px 0 rgb(84, 91, 43), 0 0 0 2px #bfe7f3; }
|
|
279 |
body.admin-color-coffee .components-button.is-primary:focus:enabled {
|
|
280 |
box-shadow: inset 0 -1px 0 rgb(97, 83, 70), 0 0 0 2px #bfe7f3; }
|
|
281 |
body.admin-color-blue .components-button.is-primary:focus:enabled {
|
|
282 |
box-shadow: inset 0 -1px 0 rgb(109, 86, 45), 0 0 0 2px #bfe7f3; }
|
|
283 |
body.admin-color-light .components-button.is-primary:focus:enabled {
|
|
284 |
box-shadow: inset 0 -1px 0 rgb(0, 67, 93), 0 0 0 2px #bfe7f3; }
|
|
285 |
.components-button.is-primary:active:enabled {
|
|
286 |
background: rgb(0, 106, 149);
|
|
287 |
border-color: rgb(0, 67, 93);
|
|
288 |
box-shadow: inset 0 1px 0 rgb(0, 67, 93);
|
|
289 |
vertical-align: top; }
|
|
290 |
body.admin-color-sunrise .components-button.is-primary:active:enabled {
|
|
291 |
background: rgb(167, 107, 59);
|
|
292 |
border-color: rgb(105, 67, 37);
|
|
293 |
box-shadow: inset 0 1px 0 rgb(105, 67, 37); }
|
|
294 |
body.admin-color-ocean .components-button.is-primary:active:enabled {
|
|
295 |
background: rgb(130, 148, 130);
|
|
296 |
border-color: rgb(82, 93, 81);
|
|
297 |
box-shadow: inset 0 1px 0 rgb(82, 93, 81); }
|
|
298 |
body.admin-color-midnight .components-button.is-primary:active:enabled {
|
|
299 |
background: rgb(180, 62, 54);
|
|
300 |
border-color: rgb(113, 39, 34);
|
|
301 |
box-shadow: inset 0 1px 0 rgb(113, 39, 34); }
|
|
302 |
body.admin-color-ectoplasm .components-button.is-primary:active:enabled {
|
|
303 |
background: rgb(134, 146, 69);
|
|
304 |
border-color: rgb(84, 91, 43);
|
|
305 |
box-shadow: inset 0 1px 0 rgb(84, 91, 43); }
|
|
306 |
body.admin-color-coffee .components-button.is-primary:active:enabled {
|
|
307 |
background: rgb(155, 133, 112);
|
|
308 |
border-color: rgb(97, 83, 70);
|
|
309 |
box-shadow: inset 0 1px 0 rgb(97, 83, 70); }
|
|
310 |
body.admin-color-blue .components-button.is-primary:active:enabled {
|
|
311 |
background: rgb(174, 137, 71);
|
|
312 |
border-color: rgb(109, 86, 45);
|
|
313 |
box-shadow: inset 0 1px 0 rgb(109, 86, 45); }
|
|
314 |
body.admin-color-light .components-button.is-primary:active:enabled {
|
|
315 |
background: rgb(0, 106, 149);
|
|
316 |
border-color: rgb(0, 67, 93);
|
|
317 |
box-shadow: inset 0 1px 0 rgb(0, 67, 93); }
|
|
318 |
.components-button.is-primary:disabled, .components-button.is-primary[aria-disabled="true"] {
|
|
319 |
color: rgb(77, 170, 207);
|
|
320 |
background: rgb(0, 93, 130);
|
|
321 |
border-color: rgb(0, 106, 149);
|
|
322 |
box-shadow: none;
|
|
323 |
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1); }
|
|
324 |
body.admin-color-sunrise .components-button.is-primary:disabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled="true"] {
|
|
325 |
color: rgb(223, 170, 128);
|
|
326 |
background: rgb(146, 94, 52);
|
|
327 |
border-color: rgb(167, 107, 59); }
|
|
328 |
body.admin-color-ocean .components-button.is-primary:disabled, body.admin-color-ocean .components-button.is-primary[aria-disabled="true"] {
|
|
329 |
color: rgb(191, 206, 190);
|
|
330 |
background: rgb(114, 130, 113);
|
|
331 |
border-color: rgb(130, 148, 130); }
|
|
332 |
body.admin-color-midnight .components-button.is-primary:disabled, body.admin-color-midnight .components-button.is-primary[aria-disabled="true"] {
|
|
333 |
color: rgb(234, 130, 123);
|
|
334 |
background: rgb(158, 54, 47);
|
|
335 |
border-color: rgb(180, 62, 54); }
|
|
336 |
body.admin-color-ectoplasm .components-button.is-primary:disabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled="true"] {
|
|
337 |
color: rgb(193, 204, 137);
|
|
338 |
background: rgb(117, 127, 60);
|
|
339 |
border-color: rgb(134, 146, 69); }
|
|
340 |
body.admin-color-coffee .components-button.is-primary:disabled, body.admin-color-coffee .components-button.is-primary[aria-disabled="true"] {
|
|
341 |
color: rgb(212, 193, 175);
|
|
342 |
background: rgb(136, 116, 98);
|
|
343 |
border-color: rgb(155, 133, 112); }
|
|
344 |
body.admin-color-blue .components-button.is-primary:disabled, body.admin-color-blue .components-button.is-primary[aria-disabled="true"] {
|
|
345 |
color: rgb(228, 196, 139);
|
|
346 |
background: rgb(152, 120, 62);
|
|
347 |
border-color: rgb(174, 137, 71); }
|
|
348 |
body.admin-color-light .components-button.is-primary:disabled, body.admin-color-light .components-button.is-primary[aria-disabled="true"] {
|
|
349 |
color: rgb(77, 170, 207);
|
|
350 |
background: rgb(0, 93, 130);
|
|
351 |
border-color: rgb(0, 106, 149); }
|
|
352 |
.components-button.is-primary.is-busy, .components-button.is-primary.is-busy:disabled, .components-button.is-primary.is-busy[aria-disabled="true"] {
|
|
353 |
color: #fff;
|
|
354 |
background-size: 100px 100%;
|
|
355 |
/* stylelint-disable */
|
|
356 |
background-image: linear-gradient(45deg, #0085ba 28%, rgb(0, 93, 130) 28%, rgb(0, 93, 130) 72%, #0085ba 72%);
|
|
357 |
/* stylelint-enable */
|
|
358 |
border-color: rgb(0, 67, 93); }
|
|
359 |
body.admin-color-sunrise .components-button.is-primary.is-busy, body.admin-color-sunrise .components-button.is-primary.is-busy:disabled, body.admin-color-sunrise .components-button.is-primary.is-busy[aria-disabled="true"] {
|
|
360 |
background-image: linear-gradient(45deg, #d1864a 28%, rgb(146, 94, 52) 28%, rgb(146, 94, 52) 72%, #d1864a 72%);
|
|
361 |
border-color: rgb(105, 67, 37); }
|
|
362 |
body.admin-color-ocean .components-button.is-primary.is-busy, body.admin-color-ocean .components-button.is-primary.is-busy:disabled, body.admin-color-ocean .components-button.is-primary.is-busy[aria-disabled="true"] {
|
|
363 |
background-image: linear-gradient(45deg, #a3b9a2 28%, rgb(114, 130, 113) 28%, rgb(114, 130, 113) 72%, #a3b9a2 72%);
|
|
364 |
border-color: rgb(82, 93, 81); }
|
|
365 |
body.admin-color-midnight .components-button.is-primary.is-busy, body.admin-color-midnight .components-button.is-primary.is-busy:disabled, body.admin-color-midnight .components-button.is-primary.is-busy[aria-disabled="true"] {
|
|
366 |
background-image: linear-gradient(45deg, #e14d43 28%, rgb(158, 54, 47) 28%, rgb(158, 54, 47) 72%, #e14d43 72%);
|
|
367 |
border-color: rgb(113, 39, 34); }
|
|
368 |
body.admin-color-ectoplasm .components-button.is-primary.is-busy, body.admin-color-ectoplasm .components-button.is-primary.is-busy:disabled, body.admin-color-ectoplasm .components-button.is-primary.is-busy[aria-disabled="true"] {
|
|
369 |
background-image: linear-gradient(45deg, #a7b656 28%, rgb(117, 127, 60) 28%, rgb(117, 127, 60) 72%, #a7b656 72%);
|
|
370 |
border-color: rgb(84, 91, 43); }
|
|
371 |
body.admin-color-coffee .components-button.is-primary.is-busy, body.admin-color-coffee .components-button.is-primary.is-busy:disabled, body.admin-color-coffee .components-button.is-primary.is-busy[aria-disabled="true"] {
|
|
372 |
background-image: linear-gradient(45deg, #c2a68c 28%, rgb(136, 116, 98) 28%, rgb(136, 116, 98) 72%, #c2a68c 72%);
|
|
373 |
border-color: rgb(97, 83, 70); }
|
|
374 |
body.admin-color-blue .components-button.is-primary.is-busy, body.admin-color-blue .components-button.is-primary.is-busy:disabled, body.admin-color-blue .components-button.is-primary.is-busy[aria-disabled="true"] {
|
|
375 |
background-image: linear-gradient(45deg, #82b4cb 28%, rgb(91, 126, 142) 28%, rgb(91, 126, 142) 72%, #82b4cb 72%);
|
|
376 |
border-color: rgb(65, 90, 102); }
|
|
377 |
body.admin-color-light .components-button.is-primary.is-busy, body.admin-color-light .components-button.is-primary.is-busy:disabled, body.admin-color-light .components-button.is-primary.is-busy[aria-disabled="true"] {
|
|
378 |
background-image: linear-gradient(45deg, #0085ba 28%, rgb(0, 93, 130) 28%, rgb(0, 93, 130) 72%, #0085ba 72%);
|
|
379 |
border-color: rgb(0, 67, 93); }
|
|
380 |
.components-button.is-link {
|
|
381 |
margin: 0;
|
|
382 |
padding: 0;
|
|
383 |
box-shadow: none;
|
|
384 |
border: 0;
|
|
385 |
border-radius: 0;
|
|
386 |
background: none;
|
|
387 |
outline: none;
|
|
388 |
text-align: right;
|
|
389 |
/* Mimics the default link style in common.css */
|
|
390 |
color: #0073aa;
|
|
391 |
text-decoration: underline;
|
|
392 |
transition-property: border, background, color;
|
|
393 |
transition-duration: 0.05s;
|
|
394 |
transition-timing-function: ease-in-out; }
|
|
395 |
.components-button.is-link:hover, .components-button.is-link:active {
|
|
396 |
color: #00a0d2; }
|
|
397 |
.components-button.is-link:focus {
|
|
398 |
color: #124964;
|
|
399 |
box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8); }
|
|
400 |
.components-button.is-link.is-destructive {
|
|
401 |
color: #d94f4f; }
|
|
402 |
.components-button:active {
|
|
403 |
color: currentColor; }
|
|
404 |
.components-button:disabled, .components-button[aria-disabled="true"] {
|
|
405 |
cursor: default;
|
|
406 |
opacity: 0.3; }
|
|
407 |
.components-button:focus:enabled {
|
|
408 |
background-color: #fff;
|
|
409 |
color: #191e23;
|
|
410 |
box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
|
|
411 |
outline: 2px solid transparent;
|
|
412 |
outline-offset: -2px; }
|
|
413 |
.components-button.is-busy, .components-button.is-default.is-busy, .components-button.is-default.is-busy:disabled, .components-button.is-default.is-busy[aria-disabled="true"] {
|
|
414 |
animation: components-button__busy-animation 2500ms infinite linear;
|
|
415 |
background-size: 100px 100%;
|
|
416 |
background-image: repeating-linear-gradient(45deg, #e2e4e7, #fff 11px, #fff 10px, #e2e4e7 20px);
|
|
417 |
opacity: 1; }
|
|
418 |
.components-button.is-large {
|
|
419 |
height: 30px;
|
|
420 |
line-height: 28px;
|
|
421 |
padding: 0 12px 2px; }
|
|
422 |
.components-button.is-small {
|
|
423 |
height: 24px;
|
|
424 |
line-height: 22px;
|
|
425 |
padding: 0 8px 1px;
|
|
426 |
font-size: 11px; }
|
|
427 |
.components-button.is-tertiary {
|
|
428 |
color: #007cba;
|
|
429 |
padding: 0 10px;
|
|
430 |
line-height: 26px;
|
|
431 |
height: 28px; }
|
|
432 |
body.admin-color-sunrise .components-button.is-tertiary {
|
|
433 |
color: #837425; }
|
|
434 |
body.admin-color-ocean .components-button.is-tertiary {
|
|
435 |
color: #5e7d5e; }
|
|
436 |
body.admin-color-midnight .components-button.is-tertiary {
|
|
437 |
color: #497b8d; }
|
|
438 |
body.admin-color-ectoplasm .components-button.is-tertiary {
|
|
439 |
color: #523f6d; }
|
|
440 |
body.admin-color-coffee .components-button.is-tertiary {
|
|
441 |
color: #59524c; }
|
|
442 |
body.admin-color-blue .components-button.is-tertiary {
|
|
443 |
color: #417e9B; }
|
|
444 |
body.admin-color-light .components-button.is-tertiary {
|
|
445 |
color: #007cba; }
|
|
446 |
.components-button.is-tertiary .dashicon {
|
|
447 |
display: inline-block;
|
|
448 |
flex: 0 0 auto; }
|
|
449 |
.components-button.is-tertiary svg {
|
|
450 |
fill: currentColor;
|
|
451 |
outline: none; }
|
|
452 |
.components-button.is-tertiary:active:focus:enabled {
|
|
453 |
box-shadow: none; }
|
|
454 |
.components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
|
|
455 |
color: rgb(0, 93, 140); }
|
|
456 |
body.admin-color-sunrise .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
|
|
457 |
color: rgb(98, 87, 28); }
|
|
458 |
body.admin-color-ocean .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
|
|
459 |
color: rgb(71, 94, 71); }
|
|
460 |
body.admin-color-midnight .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
|
|
461 |
color: rgb(55, 92, 106); }
|
|
462 |
body.admin-color-ectoplasm .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
|
|
463 |
color: rgb(62, 47, 82); }
|
|
464 |
body.admin-color-coffee .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
|
|
465 |
color: rgb(67, 62, 57); }
|
|
466 |
body.admin-color-blue .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
|
|
467 |
color: rgb(49, 95, 116); }
|
|
468 |
body.admin-color-light .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
|
|
469 |
color: rgb(0, 93, 140); }
|
|
470 |
.components-button .screen-reader-text {
|
|
471 |
height: auto; }
|
|
472 |
|
|
473 |
@keyframes components-button__busy-animation {
|
|
474 |
0% {
|
|
475 |
background-position: 200px 0; } }
|
|
476 |
|
|
477 |
.components-checkbox-control__input[type="checkbox"] {
|
|
478 |
margin-top: 0; }
|
|
479 |
|
|
480 |
.component-color-indicator {
|
|
481 |
width: 25px;
|
|
482 |
height: 16px;
|
|
483 |
margin-right: 0.8rem;
|
|
484 |
border: 1px solid #dadada;
|
|
485 |
display: inline-block; }
|
|
486 |
.component-color-indicator + .component-color-indicator {
|
|
487 |
margin-right: 0.5rem; }
|
|
488 |
|
|
489 |
.components-color-palette {
|
|
490 |
margin-left: -14px;
|
|
491 |
width: calc(100% + 14px); }
|
|
492 |
.components-color-palette .components-color-palette__custom-clear-wrapper {
|
|
493 |
width: calc(100% - 14px);
|
|
494 |
display: flex;
|
|
495 |
justify-content: flex-end; }
|
|
496 |
|
|
497 |
.components-color-palette__item-wrapper {
|
|
498 |
display: inline-block;
|
|
499 |
height: 28px;
|
|
500 |
width: 28px;
|
|
501 |
margin-left: 14px;
|
|
502 |
margin-bottom: 14px;
|
|
503 |
vertical-align: top;
|
|
504 |
transform: scale(1);
|
|
505 |
transition: 100ms transform ease; }
|
|
506 |
.components-color-palette__item-wrapper:hover {
|
|
507 |
transform: scale(1.2); }
|
|
508 |
.components-color-palette__item-wrapper > div {
|
|
509 |
height: 100%;
|
|
510 |
width: 100%; }
|
|
511 |
|
|
512 |
.components-color-palette__item {
|
|
513 |
display: inline-block;
|
|
514 |
vertical-align: top;
|
|
515 |
height: 100%;
|
|
516 |
width: 100%;
|
|
517 |
border: none;
|
|
518 |
border-radius: 50%;
|
|
519 |
background: transparent;
|
|
520 |
box-shadow: inset 0 0 0 14px;
|
|
521 |
transition: 100ms box-shadow ease;
|
|
522 |
cursor: pointer; }
|
|
523 |
.components-color-palette__item.is-active {
|
|
524 |
box-shadow: inset 0 0 0 4px;
|
|
525 |
position: relative;
|
|
526 |
z-index: 1; }
|
|
527 |
.components-color-palette__item.is-active + .dashicons-saved {
|
|
528 |
position: absolute;
|
|
529 |
right: 4px;
|
|
530 |
top: 4px; }
|
|
531 |
.components-color-palette__item::after {
|
|
532 |
content: "";
|
|
533 |
position: absolute;
|
|
534 |
top: 0;
|
|
535 |
right: 0;
|
|
536 |
bottom: 0;
|
|
537 |
left: 0;
|
|
538 |
border-radius: 50%;
|
|
539 |
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2); }
|
|
540 |
.components-color-palette__item:focus {
|
|
541 |
outline: none; }
|
|
542 |
.components-color-palette__item:focus::after {
|
|
543 |
content: "";
|
|
544 |
position: absolute;
|
|
545 |
border: 2px solid #606a73;
|
|
546 |
width: 32px;
|
|
547 |
height: 32px;
|
|
548 |
position: absolute;
|
|
549 |
top: -2px;
|
|
550 |
right: -2px;
|
|
551 |
border-radius: 50%;
|
|
552 |
box-shadow: inset 0 0 0 2px #fff; }
|
|
553 |
|
|
554 |
.components-color-palette__clear-color .components-color-palette__item {
|
|
555 |
color: #fff;
|
|
556 |
background: #fff; }
|
|
557 |
|
|
558 |
.components-color-palette__clear-color-line {
|
|
559 |
display: block;
|
|
560 |
position: absolute;
|
|
561 |
border: 2px solid #d94f4f;
|
|
562 |
border-radius: 50%;
|
|
563 |
top: 0;
|
|
564 |
right: 0;
|
|
565 |
bottom: 0;
|
|
566 |
left: 0; }
|
|
567 |
.components-color-palette__clear-color-line::before {
|
|
568 |
position: absolute;
|
|
569 |
top: 0;
|
|
570 |
right: 0;
|
|
571 |
content: "";
|
|
572 |
width: 100%;
|
|
573 |
height: 100%;
|
|
574 |
border-bottom: 2px solid #d94f4f;
|
|
575 |
transform: rotate(-45deg) translateY(-13px) translateX(1px); }
|
|
576 |
|
|
577 |
.components-color-palette__custom-color {
|
|
578 |
margin-left: 16px; }
|
|
579 |
.components-color-palette__custom-color .components-button {
|
|
580 |
line-height: 22px; }
|
|
581 |
|
|
582 |
.block-editor__container .components-popover.components-color-palette__picker.is-bottom {
|
|
583 |
z-index: 100001; }
|
|
584 |
|
|
585 |
/**
|
|
586 |
* Parts of this source were derived and modified from react-color,
|
|
587 |
* released under the MIT license.
|
|
588 |
*
|
|
589 |
* https://github.com/casesandberg/react-color/
|
|
590 |
*
|
|
591 |
* Copyright (c) 2015 Case Sandberg
|
|
592 |
*
|
|
593 |
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
594 |
* of this software and associated documentation files (the "Software"), to deal
|
|
595 |
* in the Software without restriction, including without limitation the rights
|
|
596 |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
597 |
* copies of the Software, and to permit persons to whom the Software is
|
|
598 |
* furnished to do so, subject to the following conditions:
|
|
599 |
*
|
|
600 |
* The above copyright notice and this permission notice shall be included in
|
|
601 |
* all copies or substantial portions of the Software.
|
|
602 |
*
|
|
603 |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
604 |
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
605 |
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
606 |
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
607 |
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
608 |
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
609 |
* THE SOFTWARE.
|
|
610 |
*/
|
|
611 |
.components-color-picker {
|
|
612 |
width: 100%;
|
|
613 |
overflow: hidden; }
|
|
614 |
|
|
615 |
.components-color-picker__saturation {
|
|
616 |
width: 100%;
|
|
617 |
padding-bottom: 55%;
|
|
618 |
position: relative; }
|
|
619 |
|
|
620 |
.components-color-picker__body {
|
|
621 |
padding: 16px 16px 12px; }
|
|
622 |
|
|
623 |
.components-color-picker__controls {
|
|
624 |
display: flex; }
|
|
625 |
|
|
626 |
.components-color-picker__saturation-pointer,
|
|
627 |
.components-color-picker__hue-pointer,
|
|
628 |
.components-color-picker__alpha-pointer {
|
|
629 |
padding: 0;
|
|
630 |
position: absolute;
|
|
631 |
cursor: pointer;
|
|
632 |
box-shadow: none;
|
|
633 |
border: none; }
|
|
634 |
|
|
635 |
/* CURRENT COLOR COMPONENT */
|
|
636 |
.components-color-picker__swatch {
|
|
637 |
margin-left: 8px;
|
|
638 |
width: 32px;
|
|
639 |
height: 32px;
|
|
640 |
border-radius: 50%;
|
|
641 |
position: relative;
|
|
642 |
overflow: hidden;
|
|
643 |
background-image: linear-gradient(-45deg, #ddd 25%, transparent 25%), linear-gradient(45deg, #ddd 25%, transparent 25%), linear-gradient(-45deg, transparent 75%, #ddd 75%), linear-gradient(45deg, transparent 75%, #ddd 75%);
|
|
644 |
background-size: 10px 10px;
|
|
645 |
background-position: 100% 0, 100% 5px, 5px -5px, -5px 0; }
|
|
646 |
.is-alpha-disabled .components-color-picker__swatch {
|
|
647 |
width: 12px;
|
|
648 |
height: 12px;
|
|
649 |
margin-top: 0; }
|
|
650 |
|
|
651 |
.components-color-picker__active {
|
|
652 |
position: absolute;
|
|
653 |
top: 0;
|
|
654 |
right: 0;
|
|
655 |
left: 0;
|
|
656 |
bottom: 0;
|
|
657 |
border-radius: 50%;
|
|
658 |
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
|
659 |
z-index: 2; }
|
|
660 |
|
|
661 |
/* SATURATION COMPONENT */
|
|
662 |
.components-color-picker__saturation-color,
|
|
663 |
.components-color-picker__saturation-white,
|
|
664 |
.components-color-picker__saturation-black {
|
|
665 |
position: absolute;
|
|
666 |
top: 0;
|
|
667 |
right: 0;
|
|
668 |
left: 0;
|
|
669 |
bottom: 0; }
|
|
670 |
|
|
671 |
.components-color-picker__saturation-color {
|
|
672 |
overflow: hidden; }
|
|
673 |
|
|
674 |
.components-color-picker__saturation-white {
|
|
675 |
background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0)); }
|
|
676 |
|
|
677 |
.components-color-picker__saturation-black {
|
|
678 |
background: linear-gradient(to top, #000, rgba(0, 0, 0, 0)); }
|
|
679 |
|
|
680 |
.components-color-picker__saturation-pointer {
|
|
681 |
width: 8px;
|
|
682 |
height: 8px;
|
|
683 |
box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4);
|
|
684 |
border-radius: 50%;
|
|
685 |
background-color: transparent;
|
|
686 |
transform: translate(4px, -4px); }
|
|
687 |
|
|
688 |
/* HUE & ALPHA BARS */
|
|
689 |
.components-color-picker__toggles {
|
|
690 |
flex: 1; }
|
|
691 |
|
|
692 |
.components-color-picker__alpha {
|
|
693 |
background-image: linear-gradient(-45deg, #ddd 25%, transparent 25%), linear-gradient(45deg, #ddd 25%, transparent 25%), linear-gradient(-45deg, transparent 75%, #ddd 75%), linear-gradient(45deg, transparent 75%, #ddd 75%);
|
|
694 |
background-size: 10px 10px;
|
|
695 |
background-position: 100% 0, 100% 5px, 5px -5px, -5px 0; }
|
|
696 |
|
|
697 |
.components-color-picker__hue-gradient,
|
|
698 |
.components-color-picker__alpha-gradient {
|
|
699 |
position: absolute;
|
|
700 |
top: 0;
|
|
701 |
right: 0;
|
|
702 |
left: 0;
|
|
703 |
bottom: 0; }
|
|
704 |
|
|
705 |
.components-color-picker__hue,
|
|
706 |
.components-color-picker__alpha {
|
|
707 |
height: 12px;
|
|
708 |
position: relative; }
|
|
709 |
|
|
710 |
.is-alpha-enabled .components-color-picker__hue {
|
|
711 |
margin-bottom: 8px; }
|
|
712 |
|
|
713 |
.components-color-picker__hue-bar,
|
|
714 |
.components-color-picker__alpha-bar {
|
|
715 |
position: relative;
|
|
716 |
margin: 0 3px;
|
|
717 |
height: 100%;
|
|
718 |
padding: 0 2px; }
|
|
719 |
|
|
720 |
.components-color-picker__hue-gradient {
|
|
721 |
background: linear-gradient(to left, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%); }
|
|
722 |
|
|
723 |
.components-color-picker__hue-pointer,
|
|
724 |
.components-color-picker__alpha-pointer {
|
|
725 |
right: 0;
|
|
726 |
width: 14px;
|
|
727 |
height: 14px;
|
|
728 |
border-radius: 50%;
|
|
729 |
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
|
|
730 |
background: #fff;
|
|
731 |
transform: translate(7px, -1px); }
|
|
732 |
|
|
733 |
.components-color-picker__hue-pointer,
|
|
734 |
.components-color-picker__saturation-pointer {
|
|
735 |
transition: box-shadow 0.1s linear; }
|
|
736 |
|
|
737 |
.components-color-picker__saturation-pointer:focus {
|
|
738 |
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #00a0d2, 0 0 5px 0 #00a0d2, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4); }
|
|
739 |
|
|
740 |
.components-color-picker__hue-pointer:focus,
|
|
741 |
.components-color-picker__alpha-pointer:focus {
|
|
742 |
border-color: #00a0d2;
|
|
743 |
box-shadow: 0 0 0 2px #00a0d2, 0 0 3px 0 #00a0d2;
|
|
744 |
outline: 2px solid transparent;
|
|
745 |
outline-offset: -2px; }
|
|
746 |
|
|
747 |
/* INPUTS COMPONENT */
|
|
748 |
.components-color-picker__inputs-wrapper {
|
|
749 |
margin: 0 -4px;
|
|
750 |
padding-top: 16px;
|
|
751 |
display: flex;
|
|
752 |
align-items: flex-end; }
|
|
753 |
.components-color-picker__inputs-wrapper fieldset {
|
|
754 |
flex: 1; }
|
|
755 |
.components-color-picker__inputs-wrapper .components-color-picker__inputs-fields .components-text-control__input[type="number"] {
|
|
756 |
padding: 2px; }
|
|
757 |
|
|
758 |
.components-color-picker__inputs-fields {
|
|
759 |
display: flex; }
|
|
760 |
.components-color-picker__inputs-fields .components-base-control__field {
|
|
761 |
margin: 0 4px; }
|
|
762 |
|
|
763 |
svg.dashicon {
|
|
764 |
fill: currentColor;
|
|
765 |
outline: none; }
|
|
766 |
.PresetDateRangePicker_panel {
|
|
767 |
padding: 0 22px 11px; }
|
|
768 |
|
|
769 |
.PresetDateRangePicker_button {
|
|
770 |
position: relative;
|
|
771 |
height: 100%;
|
|
772 |
text-align: center;
|
|
773 |
background: 0 0;
|
|
774 |
border: 2px solid #00a699;
|
|
775 |
color: #00a699;
|
|
776 |
padding: 4px 12px;
|
|
777 |
margin-right: 8px;
|
|
778 |
font: inherit;
|
|
779 |
font-weight: 700;
|
|
780 |
line-height: normal;
|
|
781 |
overflow: visible;
|
|
782 |
box-sizing: border-box;
|
|
783 |
cursor: pointer; }
|
|
784 |
|
|
785 |
.PresetDateRangePicker_button:active {
|
|
786 |
outline: 0; }
|
|
787 |
|
|
788 |
.PresetDateRangePicker_button__selected {
|
|
789 |
color: #fff;
|
|
790 |
background: #00a699; }
|
|
791 |
|
|
792 |
.SingleDatePickerInput {
|
|
793 |
display: inline-block;
|
|
794 |
background-color: #fff; }
|
|
795 |
|
|
796 |
.SingleDatePickerInput__withBorder {
|
|
797 |
border-radius: 2px;
|
|
798 |
border: 1px solid #dbdbdb; }
|
|
799 |
|
|
800 |
.SingleDatePickerInput__rtl {
|
|
801 |
direction: rtl; }
|
|
802 |
|
|
803 |
.SingleDatePickerInput__disabled {
|
|
804 |
background-color: #f2f2f2; }
|
|
805 |
|
|
806 |
.SingleDatePickerInput__block {
|
|
807 |
display: block; }
|
|
808 |
|
|
809 |
.SingleDatePickerInput__showClearDate {
|
|
810 |
padding-right: 30px; }
|
|
811 |
|
|
812 |
.SingleDatePickerInput_clearDate {
|
|
813 |
background: 0 0;
|
|
814 |
border: 0;
|
|
815 |
color: inherit;
|
|
816 |
font: inherit;
|
|
817 |
line-height: normal;
|
|
818 |
overflow: visible;
|
|
819 |
cursor: pointer;
|
|
820 |
padding: 10px;
|
|
821 |
margin: 0 10px 0 5px;
|
|
822 |
position: absolute;
|
|
823 |
right: 0;
|
|
824 |
top: 50%;
|
|
825 |
transform: translateY(-50%); }
|
|
826 |
|
|
827 |
.SingleDatePickerInput_clearDate__default:focus,
|
|
828 |
.SingleDatePickerInput_clearDate__default:hover {
|
|
829 |
background: #dbdbdb;
|
|
830 |
border-radius: 50%; }
|
|
831 |
|
|
832 |
.SingleDatePickerInput_clearDate__small {
|
|
833 |
padding: 6px; }
|
|
834 |
|
|
835 |
.SingleDatePickerInput_clearDate__hide {
|
|
836 |
visibility: hidden; }
|
|
837 |
|
|
838 |
.SingleDatePickerInput_clearDate_svg {
|
|
839 |
fill: #82888a;
|
|
840 |
height: 12px;
|
|
841 |
width: 15px;
|
|
842 |
vertical-align: middle; }
|
|
843 |
|
|
844 |
.SingleDatePickerInput_clearDate_svg__small {
|
|
845 |
height: 9px; }
|
|
846 |
|
|
847 |
.SingleDatePickerInput_calendarIcon {
|
|
848 |
background: 0 0;
|
|
849 |
border: 0;
|
|
850 |
color: inherit;
|
|
851 |
font: inherit;
|
|
852 |
line-height: normal;
|
|
853 |
overflow: visible;
|
|
854 |
cursor: pointer;
|
|
855 |
display: inline-block;
|
|
856 |
vertical-align: middle;
|
|
857 |
padding: 10px;
|
|
858 |
margin: 0 5px 0 10px; }
|
|
859 |
|
|
860 |
.SingleDatePickerInput_calendarIcon_svg {
|
|
861 |
fill: #82888a;
|
|
862 |
height: 15px;
|
|
863 |
width: 14px;
|
|
864 |
vertical-align: middle; }
|
|
865 |
|
|
866 |
.SingleDatePicker {
|
|
867 |
position: relative;
|
|
868 |
display: inline-block; }
|
|
869 |
|
|
870 |
.SingleDatePicker__block {
|
|
871 |
display: block; }
|
|
872 |
|
|
873 |
.SingleDatePicker_picker {
|
|
874 |
z-index: 1;
|
|
875 |
background-color: #fff;
|
|
876 |
position: absolute; }
|
|
877 |
|
|
878 |
.SingleDatePicker_picker__rtl {
|
|
879 |
direction: rtl; }
|
|
880 |
|
|
881 |
.SingleDatePicker_picker__directionLeft {
|
|
882 |
left: 0; }
|
|
883 |
|
|
884 |
.SingleDatePicker_picker__directionRight {
|
|
885 |
right: 0; }
|
|
886 |
|
|
887 |
.SingleDatePicker_picker__portal {
|
|
888 |
background-color: rgba(0, 0, 0, 0.3);
|
|
889 |
position: fixed;
|
|
890 |
top: 0;
|
|
891 |
left: 0;
|
|
892 |
height: 100%;
|
|
893 |
width: 100%; }
|
|
894 |
|
|
895 |
.SingleDatePicker_picker__fullScreenPortal {
|
|
896 |
background-color: #fff; }
|
|
897 |
|
|
898 |
.SingleDatePicker_closeButton {
|
|
899 |
background: 0 0;
|
|
900 |
border: 0;
|
|
901 |
color: inherit;
|
|
902 |
font: inherit;
|
|
903 |
line-height: normal;
|
|
904 |
overflow: visible;
|
|
905 |
cursor: pointer;
|
|
906 |
position: absolute;
|
|
907 |
top: 0;
|
|
908 |
right: 0;
|
|
909 |
padding: 15px;
|
|
910 |
z-index: 2; }
|
|
911 |
|
|
912 |
.SingleDatePicker_closeButton:focus,
|
|
913 |
.SingleDatePicker_closeButton:hover {
|
|
914 |
color: #b0b3b4;
|
|
915 |
text-decoration: none; }
|
|
916 |
|
|
917 |
.SingleDatePicker_closeButton_svg {
|
|
918 |
height: 15px;
|
|
919 |
width: 15px;
|
|
920 |
fill: #cacccd; }
|
|
921 |
|
|
922 |
.DayPickerKeyboardShortcuts_buttonReset {
|
|
923 |
background: 0 0;
|
|
924 |
border: 0;
|
|
925 |
border-radius: 0;
|
|
926 |
color: inherit;
|
|
927 |
font: inherit;
|
|
928 |
line-height: normal;
|
|
929 |
overflow: visible;
|
|
930 |
padding: 0;
|
|
931 |
cursor: pointer;
|
|
932 |
font-size: 14px; }
|
|
933 |
|
|
934 |
.DayPickerKeyboardShortcuts_buttonReset:active {
|
|
935 |
outline: 0; }
|
|
936 |
|
|
937 |
.DayPickerKeyboardShortcuts_show {
|
|
938 |
width: 22px;
|
|
939 |
position: absolute;
|
|
940 |
z-index: 2; }
|
|
941 |
|
|
942 |
.DayPickerKeyboardShortcuts_show__bottomRight {
|
|
943 |
border-top: 26px solid transparent;
|
|
944 |
border-right: 33px solid #00a699;
|
|
945 |
bottom: 0;
|
|
946 |
right: 0; }
|
|
947 |
|
|
948 |
.DayPickerKeyboardShortcuts_show__bottomRight:hover {
|
|
949 |
border-right: 33px solid #008489; }
|
|
950 |
|
|
951 |
.DayPickerKeyboardShortcuts_show__topRight {
|
|
952 |
border-bottom: 26px solid transparent;
|
|
953 |
border-right: 33px solid #00a699;
|
|
954 |
top: 0;
|
|
955 |
right: 0; }
|
|
956 |
|
|
957 |
.DayPickerKeyboardShortcuts_show__topRight:hover {
|
|
958 |
border-right: 33px solid #008489; }
|
|
959 |
|
|
960 |
.DayPickerKeyboardShortcuts_show__topLeft {
|
|
961 |
border-bottom: 26px solid transparent;
|
|
962 |
border-left: 33px solid #00a699;
|
|
963 |
top: 0;
|
|
964 |
left: 0; }
|
|
965 |
|
|
966 |
.DayPickerKeyboardShortcuts_show__topLeft:hover {
|
|
967 |
border-left: 33px solid #008489; }
|
|
968 |
|
|
969 |
.DayPickerKeyboardShortcuts_showSpan {
|
|
970 |
color: #fff;
|
|
971 |
position: absolute; }
|
|
972 |
|
|
973 |
.DayPickerKeyboardShortcuts_showSpan__bottomRight {
|
|
974 |
bottom: 0;
|
|
975 |
right: -28px; }
|
|
976 |
|
|
977 |
.DayPickerKeyboardShortcuts_showSpan__topRight {
|
|
978 |
top: 1px;
|
|
979 |
right: -28px; }
|
|
980 |
|
|
981 |
.DayPickerKeyboardShortcuts_showSpan__topLeft {
|
|
982 |
top: 1px;
|
|
983 |
left: -28px; }
|
|
984 |
|
|
985 |
.DayPickerKeyboardShortcuts_panel {
|
|
986 |
overflow: auto;
|
|
987 |
background: #fff;
|
|
988 |
border: 1px solid #dbdbdb;
|
|
989 |
border-radius: 2px;
|
|
990 |
position: absolute;
|
|
991 |
top: 0;
|
|
992 |
bottom: 0;
|
|
993 |
right: 0;
|
|
994 |
left: 0;
|
|
995 |
z-index: 2;
|
|
996 |
padding: 22px;
|
|
997 |
margin: 33px; }
|
|
998 |
|
|
999 |
.DayPickerKeyboardShortcuts_title {
|
|
1000 |
font-size: 16px;
|
|
1001 |
font-weight: 700;
|
|
1002 |
margin: 0; }
|
|
1003 |
|
|
1004 |
.DayPickerKeyboardShortcuts_list {
|
|
1005 |
list-style: none;
|
|
1006 |
padding: 0;
|
|
1007 |
font-size: 14px; }
|
|
1008 |
|
|
1009 |
.DayPickerKeyboardShortcuts_close {
|
|
1010 |
position: absolute;
|
|
1011 |
right: 22px;
|
|
1012 |
top: 22px;
|
|
1013 |
z-index: 2; }
|
|
1014 |
|
|
1015 |
.DayPickerKeyboardShortcuts_close:active {
|
|
1016 |
outline: 0; }
|
|
1017 |
|
|
1018 |
.DayPickerKeyboardShortcuts_closeSvg {
|
|
1019 |
height: 15px;
|
|
1020 |
width: 15px;
|
|
1021 |
fill: #cacccd; }
|
|
1022 |
|
|
1023 |
.DayPickerKeyboardShortcuts_closeSvg:focus,
|
|
1024 |
.DayPickerKeyboardShortcuts_closeSvg:hover {
|
|
1025 |
fill: #82888a; }
|
|
1026 |
|
|
1027 |
.CalendarDay {
|
|
1028 |
box-sizing: border-box;
|
|
1029 |
cursor: pointer;
|
|
1030 |
font-size: 14px;
|
|
1031 |
text-align: center; }
|
|
1032 |
|
|
1033 |
.CalendarDay:active {
|
|
1034 |
outline: 0; }
|
|
1035 |
|
|
1036 |
.CalendarDay__defaultCursor {
|
|
1037 |
cursor: default; }
|
|
1038 |
|
|
1039 |
.CalendarDay__default {
|
|
1040 |
border: 1px solid #e4e7e7;
|
|
1041 |
color: #484848;
|
|
1042 |
background: #fff; }
|
|
1043 |
|
|
1044 |
.CalendarDay__default:hover {
|
|
1045 |
background: #e4e7e7;
|
|
1046 |
border: 1px double #e4e7e7;
|
|
1047 |
color: inherit; }
|
|
1048 |
|
|
1049 |
.CalendarDay__hovered_offset {
|
|
1050 |
background: #f4f5f5;
|
|
1051 |
border: 1px double #e4e7e7;
|
|
1052 |
color: inherit; }
|
|
1053 |
|
|
1054 |
.CalendarDay__outside {
|
|
1055 |
border: 0;
|
|
1056 |
background: #fff;
|
|
1057 |
color: #484848; }
|
|
1058 |
|
|
1059 |
.CalendarDay__outside:hover {
|
|
1060 |
border: 0; }
|
|
1061 |
|
|
1062 |
.CalendarDay__blocked_minimum_nights {
|
|
1063 |
background: #fff;
|
|
1064 |
border: 1px solid #eceeee;
|
|
1065 |
color: #cacccd; }
|
|
1066 |
|
|
1067 |
.CalendarDay__blocked_minimum_nights:active,
|
|
1068 |
.CalendarDay__blocked_minimum_nights:hover {
|
|
1069 |
background: #fff;
|
|
1070 |
color: #cacccd; }
|
|
1071 |
|
|
1072 |
.CalendarDay__highlighted_calendar {
|
|
1073 |
background: #ffe8bc;
|
|
1074 |
color: #484848; }
|
|
1075 |
|
|
1076 |
.CalendarDay__highlighted_calendar:active,
|
|
1077 |
.CalendarDay__highlighted_calendar:hover {
|
|
1078 |
background: #ffce71;
|
|
1079 |
color: #484848; }
|
|
1080 |
|
|
1081 |
.CalendarDay__selected_span {
|
|
1082 |
background: #66e2da;
|
|
1083 |
border: 1px solid #33dacd;
|
|
1084 |
color: #fff; }
|
|
1085 |
|
|
1086 |
.CalendarDay__selected_span:active,
|
|
1087 |
.CalendarDay__selected_span:hover {
|
|
1088 |
background: #33dacd;
|
|
1089 |
border: 1px solid #33dacd;
|
|
1090 |
color: #fff; }
|
|
1091 |
|
|
1092 |
.CalendarDay__last_in_range {
|
|
1093 |
border-right: #00a699; }
|
|
1094 |
|
|
1095 |
.CalendarDay__selected,
|
|
1096 |
.CalendarDay__selected:active,
|
|
1097 |
.CalendarDay__selected:hover {
|
|
1098 |
background: #00a699;
|
|
1099 |
border: 1px solid #00a699;
|
|
1100 |
color: #fff; }
|
|
1101 |
|
|
1102 |
.CalendarDay__hovered_span,
|
|
1103 |
.CalendarDay__hovered_span:hover {
|
|
1104 |
background: #b2f1ec;
|
|
1105 |
border: 1px solid #80e8e0;
|
|
1106 |
color: #007a87; }
|
|
1107 |
|
|
1108 |
.CalendarDay__hovered_span:active {
|
|
1109 |
background: #80e8e0;
|
|
1110 |
border: 1px solid #80e8e0;
|
|
1111 |
color: #007a87; }
|
|
1112 |
|
|
1113 |
.CalendarDay__blocked_calendar,
|
|
1114 |
.CalendarDay__blocked_calendar:active,
|
|
1115 |
.CalendarDay__blocked_calendar:hover {
|
|
1116 |
background: #cacccd;
|
|
1117 |
border: 1px solid #cacccd;
|
|
1118 |
color: #82888a; }
|
|
1119 |
|
|
1120 |
.CalendarDay__blocked_out_of_range,
|
|
1121 |
.CalendarDay__blocked_out_of_range:active,
|
|
1122 |
.CalendarDay__blocked_out_of_range:hover {
|
|
1123 |
background: #fff;
|
|
1124 |
border: 1px solid #e4e7e7;
|
|
1125 |
color: #cacccd; }
|
|
1126 |
|
|
1127 |
.CalendarMonth {
|
|
1128 |
background: #fff;
|
|
1129 |
text-align: center;
|
|
1130 |
vertical-align: top;
|
|
1131 |
-webkit-user-select: none;
|
|
1132 |
-moz-user-select: none;
|
|
1133 |
-ms-user-select: none;
|
|
1134 |
user-select: none; }
|
|
1135 |
|
|
1136 |
.CalendarMonth_table {
|
|
1137 |
border-collapse: collapse;
|
|
1138 |
border-spacing: 0; }
|
|
1139 |
|
|
1140 |
.CalendarMonth_verticalSpacing {
|
|
1141 |
border-collapse: separate; }
|
|
1142 |
|
|
1143 |
.CalendarMonth_caption {
|
|
1144 |
color: #484848;
|
|
1145 |
font-size: 18px;
|
|
1146 |
text-align: center;
|
|
1147 |
padding-top: 22px;
|
|
1148 |
padding-bottom: 37px;
|
|
1149 |
caption-side: initial; }
|
|
1150 |
|
|
1151 |
.CalendarMonth_caption__verticalScrollable {
|
|
1152 |
padding-top: 12px;
|
|
1153 |
padding-bottom: 7px; }
|
|
1154 |
|
|
1155 |
.CalendarMonthGrid {
|
|
1156 |
background: #fff;
|
|
1157 |
text-align: left;
|
|
1158 |
z-index: 0; }
|
|
1159 |
|
|
1160 |
.CalendarMonthGrid__animating {
|
|
1161 |
z-index: 1; }
|
|
1162 |
|
|
1163 |
.CalendarMonthGrid__horizontal {
|
|
1164 |
position: absolute;
|
|
1165 |
left: 9px; }
|
|
1166 |
|
|
1167 |
.CalendarMonthGrid__vertical {
|
|
1168 |
margin: 0 auto; }
|
|
1169 |
|
|
1170 |
.CalendarMonthGrid__vertical_scrollable {
|
|
1171 |
margin: 0 auto;
|
|
1172 |
overflow-y: scroll; }
|
|
1173 |
|
|
1174 |
.CalendarMonthGrid_month__horizontal {
|
|
1175 |
display: inline-block;
|
|
1176 |
vertical-align: top;
|
|
1177 |
min-height: 100%; }
|
|
1178 |
|
|
1179 |
.CalendarMonthGrid_month__hideForAnimation {
|
|
1180 |
position: absolute;
|
|
1181 |
z-index: -1;
|
|
1182 |
opacity: 0;
|
|
1183 |
pointer-events: none; }
|
|
1184 |
|
|
1185 |
.CalendarMonthGrid_month__hidden {
|
|
1186 |
visibility: hidden; }
|
|
1187 |
|
|
1188 |
.DayPickerNavigation {
|
|
1189 |
position: relative;
|
|
1190 |
z-index: 2; }
|
|
1191 |
|
|
1192 |
.DayPickerNavigation__horizontal {
|
|
1193 |
height: 0; }
|
|
1194 |
|
|
1195 |
.DayPickerNavigation__verticalDefault {
|
|
1196 |
position: absolute;
|
|
1197 |
width: 100%;
|
|
1198 |
height: 52px;
|
|
1199 |
bottom: 0;
|
|
1200 |
left: 0; }
|
|
1201 |
|
|
1202 |
.DayPickerNavigation__verticalScrollableDefault {
|
|
1203 |
position: relative; }
|
|
1204 |
|
|
1205 |
.DayPickerNavigation_button {
|
|
1206 |
cursor: pointer;
|
|
1207 |
-webkit-user-select: none;
|
|
1208 |
-moz-user-select: none;
|
|
1209 |
-ms-user-select: none;
|
|
1210 |
user-select: none;
|
|
1211 |
border: 0;
|
|
1212 |
padding: 0;
|
|
1213 |
margin: 0; }
|
|
1214 |
|
|
1215 |
.DayPickerNavigation_button__default {
|
|
1216 |
border: 1px solid #e4e7e7;
|
|
1217 |
background-color: #fff;
|
|
1218 |
color: #757575; }
|
|
1219 |
|
|
1220 |
.DayPickerNavigation_button__default:focus,
|
|
1221 |
.DayPickerNavigation_button__default:hover {
|
|
1222 |
border: 1px solid #c4c4c4; }
|
|
1223 |
|
|
1224 |
.DayPickerNavigation_button__default:active {
|
|
1225 |
background: #f2f2f2; }
|
|
1226 |
|
|
1227 |
.DayPickerNavigation_button__horizontalDefault {
|
|
1228 |
position: absolute;
|
|
1229 |
top: 18px;
|
|
1230 |
line-height: .78;
|
|
1231 |
border-radius: 3px;
|
|
1232 |
padding: 6px 9px; }
|
|
1233 |
|
|
1234 |
.DayPickerNavigation_leftButton__horizontalDefault {
|
|
1235 |
left: 22px; }
|
|
1236 |
|
|
1237 |
.DayPickerNavigation_rightButton__horizontalDefault {
|
|
1238 |
right: 22px; }
|
|
1239 |
|
|
1240 |
.DayPickerNavigation_button__verticalDefault {
|
|
1241 |
padding: 5px;
|
|
1242 |
background: #fff;
|
|
1243 |
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
|
|
1244 |
position: relative;
|
|
1245 |
display: inline-block;
|
|
1246 |
height: 100%;
|
|
1247 |
width: 50%; }
|
|
1248 |
|
|
1249 |
.DayPickerNavigation_nextButton__verticalDefault {
|
|
1250 |
border-left: 0; }
|
|
1251 |
|
|
1252 |
.DayPickerNavigation_nextButton__verticalScrollableDefault {
|
|
1253 |
width: 100%; }
|
|
1254 |
|
|
1255 |
.DayPickerNavigation_svg__horizontal {
|
|
1256 |
height: 19px;
|
|
1257 |
width: 19px;
|
|
1258 |
fill: #82888a;
|
|
1259 |
display: block; }
|
|
1260 |
|
|
1261 |
.DayPickerNavigation_svg__vertical {
|
|
1262 |
height: 42px;
|
|
1263 |
width: 42px;
|
|
1264 |
fill: #484848;
|
|
1265 |
display: block; }
|
|
1266 |
|
|
1267 |
.DayPicker {
|
|
1268 |
background: #fff;
|
|
1269 |
position: relative;
|
|
1270 |
text-align: left; }
|
|
1271 |
|
|
1272 |
.DayPicker__horizontal {
|
|
1273 |
background: #fff; }
|
|
1274 |
|
|
1275 |
.DayPicker__verticalScrollable {
|
|
1276 |
height: 100%; }
|
|
1277 |
|
|
1278 |
.DayPicker__hidden {
|
|
1279 |
visibility: hidden; }
|
|
1280 |
|
|
1281 |
.DayPicker__withBorder {
|
|
1282 |
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.07);
|
|
1283 |
border-radius: 3px; }
|
|
1284 |
|
|
1285 |
.DayPicker_portal__horizontal {
|
|
1286 |
box-shadow: none;
|
|
1287 |
position: absolute;
|
|
1288 |
left: 50%;
|
|
1289 |
top: 50%; }
|
|
1290 |
|
|
1291 |
.DayPicker_portal__vertical {
|
|
1292 |
position: initial; }
|
|
1293 |
|
|
1294 |
.DayPicker_focusRegion {
|
|
1295 |
outline: 0; }
|
|
1296 |
|
|
1297 |
.DayPicker_calendarInfo__horizontal,
|
|
1298 |
.DayPicker_wrapper__horizontal {
|
|
1299 |
display: inline-block;
|
|
1300 |
vertical-align: top; }
|
|
1301 |
|
|
1302 |
.DayPicker_weekHeaders {
|
|
1303 |
position: relative; }
|
|
1304 |
|
|
1305 |
.DayPicker_weekHeaders__horizontal {
|
|
1306 |
margin-left: 9px; }
|
|
1307 |
|
|
1308 |
.DayPicker_weekHeader {
|
|
1309 |
color: #757575;
|
|
1310 |
position: absolute;
|
|
1311 |
top: 62px;
|
|
1312 |
z-index: 2;
|
|
1313 |
text-align: left; }
|
|
1314 |
|
|
1315 |
.DayPicker_weekHeader__vertical {
|
|
1316 |
left: 50%; }
|
|
1317 |
|
|
1318 |
.DayPicker_weekHeader__verticalScrollable {
|
|
1319 |
top: 0;
|
|
1320 |
display: table-row;
|
|
1321 |
border-bottom: 1px solid #dbdbdb;
|
|
1322 |
background: #fff;
|
|
1323 |
margin-left: 0;
|
|
1324 |
left: 0;
|
|
1325 |
width: 100%;
|
|
1326 |
text-align: center; }
|
|
1327 |
|
|
1328 |
.DayPicker_weekHeader_ul {
|
|
1329 |
list-style: none;
|
|
1330 |
margin: 1px 0;
|
|
1331 |
padding-left: 0;
|
|
1332 |
padding-right: 0;
|
|
1333 |
font-size: 14px; }
|
|
1334 |
|
|
1335 |
.DayPicker_weekHeader_li {
|
|
1336 |
display: inline-block;
|
|
1337 |
text-align: center; }
|
|
1338 |
|
|
1339 |
.DayPicker_transitionContainer {
|
|
1340 |
position: relative;
|
|
1341 |
overflow: hidden;
|
|
1342 |
border-radius: 3px; }
|
|
1343 |
|
|
1344 |
.DayPicker_transitionContainer__horizontal {
|
|
1345 |
transition: height .2s ease-in-out; }
|
|
1346 |
|
|
1347 |
.DayPicker_transitionContainer__vertical {
|
|
1348 |
width: 100%; }
|
|
1349 |
|
|
1350 |
.DayPicker_transitionContainer__verticalScrollable {
|
|
1351 |
padding-top: 20px;
|
|
1352 |
height: 100%;
|
|
1353 |
position: absolute;
|
|
1354 |
top: 0;
|
|
1355 |
bottom: 0;
|
|
1356 |
right: 0;
|
|
1357 |
left: 0;
|
|
1358 |
overflow-y: scroll; }
|
|
1359 |
|
|
1360 |
.DateInput {
|
|
1361 |
margin: 0;
|
|
1362 |
padding: 0;
|
|
1363 |
background: #fff;
|
|
1364 |
position: relative;
|
|
1365 |
display: inline-block;
|
|
1366 |
width: 130px;
|
|
1367 |
vertical-align: middle; }
|
|
1368 |
|
|
1369 |
.DateInput__small {
|
|
1370 |
width: 97px; }
|
|
1371 |
|
|
1372 |
.DateInput__block {
|
|
1373 |
width: 100%; }
|
|
1374 |
|
|
1375 |
.DateInput__disabled {
|
|
1376 |
background: #f2f2f2;
|
|
1377 |
color: #dbdbdb; }
|
|
1378 |
|
|
1379 |
.DateInput_input {
|
|
1380 |
font-weight: 200;
|
|
1381 |
font-size: 19px;
|
|
1382 |
line-height: 24px;
|
|
1383 |
color: #484848;
|
|
1384 |
background-color: #fff;
|
|
1385 |
width: 100%;
|
|
1386 |
padding: 11px 11px 9px;
|
|
1387 |
border: 0;
|
|
1388 |
border-top: 0;
|
|
1389 |
border-right: 0;
|
|
1390 |
border-bottom: 2px solid transparent;
|
|
1391 |
border-left: 0;
|
|
1392 |
border-radius: 0; }
|
|
1393 |
|
|
1394 |
.DateInput_input__small {
|
|
1395 |
font-size: 15px;
|
|
1396 |
line-height: 18px;
|
|
1397 |
letter-spacing: .2px;
|
|
1398 |
padding: 7px 7px 5px; }
|
|
1399 |
|
|
1400 |
.DateInput_input__regular {
|
|
1401 |
font-weight: auto; }
|
|
1402 |
|
|
1403 |
.DateInput_input__readOnly {
|
|
1404 |
-webkit-user-select: none;
|
|
1405 |
-moz-user-select: none;
|
|
1406 |
-ms-user-select: none;
|
|
1407 |
user-select: none; }
|
|
1408 |
|
|
1409 |
.DateInput_input__focused {
|
|
1410 |
outline: 0;
|
|
1411 |
background: #fff;
|
|
1412 |
border: 0;
|
|
1413 |
border-top: 0;
|
|
1414 |
border-right: 0;
|
|
1415 |
border-bottom: 2px solid #008489;
|
|
1416 |
border-left: 0; }
|
|
1417 |
|
|
1418 |
.DateInput_input__disabled {
|
|
1419 |
background: #f2f2f2;
|
|
1420 |
font-style: italic; }
|
|
1421 |
|
|
1422 |
.DateInput_screenReaderMessage {
|
|
1423 |
border: 0;
|
|
1424 |
clip: rect(0, 0, 0, 0);
|
|
1425 |
height: 1px;
|
|
1426 |
margin: -1px;
|
|
1427 |
overflow: hidden;
|
|
1428 |
padding: 0;
|
|
1429 |
position: absolute;
|
|
1430 |
width: 1px; }
|
|
1431 |
|
|
1432 |
.DateInput_fang {
|
|
1433 |
position: absolute;
|
|
1434 |
width: 20px;
|
|
1435 |
height: 10px;
|
|
1436 |
left: 22px;
|
|
1437 |
z-index: 2; }
|
|
1438 |
|
|
1439 |
.DateInput_fangShape {
|
|
1440 |
fill: #fff; }
|
|
1441 |
|
|
1442 |
.DateInput_fangStroke {
|
|
1443 |
stroke: #dbdbdb;
|
|
1444 |
fill: transparent; }
|
|
1445 |
|
|
1446 |
.DateRangePickerInput {
|
|
1447 |
background-color: #fff;
|
|
1448 |
display: inline-block; }
|
|
1449 |
|
|
1450 |
.DateRangePickerInput__disabled {
|
|
1451 |
background: #f2f2f2; }
|
|
1452 |
|
|
1453 |
.DateRangePickerInput__withBorder {
|
|
1454 |
border-radius: 2px;
|
|
1455 |
border: 1px solid #dbdbdb; }
|
|
1456 |
|
|
1457 |
.DateRangePickerInput__rtl {
|
|
1458 |
direction: rtl; }
|
|
1459 |
|
|
1460 |
.DateRangePickerInput__block {
|
|
1461 |
display: block; }
|
|
1462 |
|
|
1463 |
.DateRangePickerInput__showClearDates {
|
|
1464 |
padding-right: 30px; }
|
|
1465 |
|
|
1466 |
.DateRangePickerInput_arrow {
|
|
1467 |
display: inline-block;
|
|
1468 |
vertical-align: middle;
|
|
1469 |
color: #484848; }
|
|
1470 |
|
|
1471 |
.DateRangePickerInput_arrow_svg {
|
|
1472 |
vertical-align: middle;
|
|
1473 |
fill: #484848;
|
|
1474 |
height: 24px;
|
|
1475 |
width: 24px; }
|
|
1476 |
|
|
1477 |
.DateRangePickerInput_clearDates {
|
|
1478 |
background: 0 0;
|
|
1479 |
border: 0;
|
|
1480 |
color: inherit;
|
|
1481 |
font: inherit;
|
|
1482 |
line-height: normal;
|
|
1483 |
overflow: visible;
|
|
1484 |
cursor: pointer;
|
|
1485 |
padding: 10px;
|
|
1486 |
margin: 0 10px 0 5px;
|
|
1487 |
position: absolute;
|
|
1488 |
right: 0;
|
|
1489 |
top: 50%;
|
|
1490 |
transform: translateY(-50%); }
|
|
1491 |
|
|
1492 |
.DateRangePickerInput_clearDates__small {
|
|
1493 |
padding: 6px; }
|
|
1494 |
|
|
1495 |
.DateRangePickerInput_clearDates_default:focus,
|
|
1496 |
.DateRangePickerInput_clearDates_default:hover {
|
|
1497 |
background: #dbdbdb;
|
|
1498 |
border-radius: 50%; }
|
|
1499 |
|
|
1500 |
.DateRangePickerInput_clearDates__hide {
|
|
1501 |
visibility: hidden; }
|
|
1502 |
|
|
1503 |
.DateRangePickerInput_clearDates_svg {
|
|
1504 |
fill: #82888a;
|
|
1505 |
height: 12px;
|
|
1506 |
width: 15px;
|
|
1507 |
vertical-align: middle; }
|
|
1508 |
|
|
1509 |
.DateRangePickerInput_clearDates_svg__small {
|
|
1510 |
height: 9px; }
|
|
1511 |
|
|
1512 |
.DateRangePickerInput_calendarIcon {
|
|
1513 |
background: 0 0;
|
|
1514 |
border: 0;
|
|
1515 |
color: inherit;
|
|
1516 |
font: inherit;
|
|
1517 |
line-height: normal;
|
|
1518 |
overflow: visible;
|
|
1519 |
cursor: pointer;
|
|
1520 |
display: inline-block;
|
|
1521 |
vertical-align: middle;
|
|
1522 |
padding: 10px;
|
|
1523 |
margin: 0 5px 0 10px; }
|
|
1524 |
|
|
1525 |
.DateRangePickerInput_calendarIcon_svg {
|
|
1526 |
fill: #82888a;
|
|
1527 |
height: 15px;
|
|
1528 |
width: 14px;
|
|
1529 |
vertical-align: middle; }
|
|
1530 |
|
|
1531 |
.DateRangePicker {
|
|
1532 |
position: relative;
|
|
1533 |
display: inline-block; }
|
|
1534 |
|
|
1535 |
.DateRangePicker__block {
|
|
1536 |
display: block; }
|
|
1537 |
|
|
1538 |
.DateRangePicker_picker {
|
|
1539 |
z-index: 1;
|
|
1540 |
background-color: #fff;
|
|
1541 |
position: absolute; }
|
|
1542 |
|
|
1543 |
.DateRangePicker_picker__rtl {
|
|
1544 |
direction: rtl; }
|
|
1545 |
|
|
1546 |
.DateRangePicker_picker__directionLeft {
|
|
1547 |
left: 0; }
|
|
1548 |
|
|
1549 |
.DateRangePicker_picker__directionRight {
|
|
1550 |
right: 0; }
|
|
1551 |
|
|
1552 |
.DateRangePicker_picker__portal {
|
|
1553 |
background-color: rgba(0, 0, 0, 0.3);
|
|
1554 |
position: fixed;
|
|
1555 |
top: 0;
|
|
1556 |
left: 0;
|
|
1557 |
height: 100%;
|
|
1558 |
width: 100%; }
|
|
1559 |
|
|
1560 |
.DateRangePicker_picker__fullScreenPortal {
|
|
1561 |
background-color: #fff; }
|
|
1562 |
|
|
1563 |
.DateRangePicker_closeButton {
|
|
1564 |
background: 0 0;
|
|
1565 |
border: 0;
|
|
1566 |
color: inherit;
|
|
1567 |
font: inherit;
|
|
1568 |
line-height: normal;
|
|
1569 |
overflow: visible;
|
|
1570 |
cursor: pointer;
|
|
1571 |
position: absolute;
|
|
1572 |
top: 0;
|
|
1573 |
right: 0;
|
|
1574 |
padding: 15px;
|
|
1575 |
z-index: 2; }
|
|
1576 |
|
|
1577 |
.DateRangePicker_closeButton:focus,
|
|
1578 |
.DateRangePicker_closeButton:hover {
|
|
1579 |
color: #b0b3b4;
|
|
1580 |
text-decoration: none; }
|
|
1581 |
|
|
1582 |
.DateRangePicker_closeButton_svg {
|
|
1583 |
height: 15px;
|
|
1584 |
width: 15px;
|
|
1585 |
fill: #cacccd; }
|
|
1586 |
.components-datetime .components-datetime__calendar-help {
|
|
1587 |
padding: 8px; }
|
|
1588 |
.components-datetime .components-datetime__calendar-help h4 {
|
|
1589 |
margin: 0; }
|
|
1590 |
|
|
1591 |
.components-datetime .components-datetime__date-help-button {
|
|
1592 |
display: block;
|
|
1593 |
margin-right: auto;
|
|
1594 |
margin-left: 8px;
|
|
1595 |
margin-top: 0.5em; }
|
|
1596 |
|
|
1597 |
.components-datetime__date {
|
|
1598 |
min-height: 236px;
|
|
1599 |
border-top: 1px solid #e2e4e7;
|
|
1600 |
margin-right: -8px;
|
|
1601 |
margin-left: -8px; }
|
|
1602 |
.components-datetime__date .CalendarMonth_caption {
|
|
1603 |
font-size: 13px; }
|
|
1604 |
.components-datetime__date .CalendarDay {
|
|
1605 |
font-size: 13px;
|
|
1606 |
border: 1px solid transparent;
|
|
1607 |
border-radius: 50%;
|
|
1608 |
text-align: center; }
|
|
1609 |
.components-datetime__date .CalendarDay__selected {
|
|
1610 |
background: #0085ba; }
|
|
1611 |
body.admin-color-sunrise .components-datetime__date .CalendarDay__selected {
|
|
1612 |
background: #d1864a; }
|
|
1613 |
body.admin-color-ocean .components-datetime__date .CalendarDay__selected {
|
|
1614 |
background: #a3b9a2; }
|
|
1615 |
body.admin-color-midnight .components-datetime__date .CalendarDay__selected {
|
|
1616 |
background: #e14d43; }
|
|
1617 |
body.admin-color-ectoplasm .components-datetime__date .CalendarDay__selected {
|
|
1618 |
background: #a7b656; }
|
|
1619 |
body.admin-color-coffee .components-datetime__date .CalendarDay__selected {
|
|
1620 |
background: #c2a68c; }
|
|
1621 |
body.admin-color-blue .components-datetime__date .CalendarDay__selected {
|
|
1622 |
background: #82b4cb; }
|
|
1623 |
body.admin-color-light .components-datetime__date .CalendarDay__selected {
|
|
1624 |
background: #0085ba; }
|
|
1625 |
.components-datetime__date .CalendarDay__selected:hover {
|
|
1626 |
background: rgb(0, 113, 158); }
|
|
1627 |
body.admin-color-sunrise .components-datetime__date .CalendarDay__selected:hover {
|
|
1628 |
background: rgb(178, 114, 63); }
|
|
1629 |
body.admin-color-ocean .components-datetime__date .CalendarDay__selected:hover {
|
|
1630 |
background: rgb(139, 157, 138); }
|
|
1631 |
body.admin-color-midnight .components-datetime__date .CalendarDay__selected:hover {
|
|
1632 |
background: rgb(191, 65, 57); }
|
|
1633 |
body.admin-color-ectoplasm .components-datetime__date .CalendarDay__selected:hover {
|
|
1634 |
background: rgb(142, 155, 73); }
|
|
1635 |
body.admin-color-coffee .components-datetime__date .CalendarDay__selected:hover {
|
|
1636 |
background: rgb(165, 141, 119); }
|
|
1637 |
body.admin-color-blue .components-datetime__date .CalendarDay__selected:hover {
|
|
1638 |
background: rgb(111, 153, 173); }
|
|
1639 |
body.admin-color-light .components-datetime__date .CalendarDay__selected:hover {
|
|
1640 |
background: rgb(0, 113, 158); }
|
|
1641 |
.components-datetime__date .DayPickerNavigation_button__horizontalDefault {
|
|
1642 |
padding: 2px 8px;
|
|
1643 |
top: 20px; }
|
|
1644 |
.components-datetime__date .DayPicker_weekHeader {
|
|
1645 |
top: 50px; }
|
|
1646 |
.components-datetime__date.is-description-visible .DayPicker,
|
|
1647 |
.components-datetime__date.is-description-visible .components-datetime__date-help-button {
|
|
1648 |
visibility: hidden; }
|
|
1649 |
|
|
1650 |
.components-datetime__time {
|
|
1651 |
margin-bottom: 1em; }
|
|
1652 |
.components-datetime__time fieldset {
|
|
1653 |
margin-top: 0.5em;
|
|
1654 |
position: relative; }
|
|
1655 |
.components-datetime__time .components-datetime__time-field-am-pm fieldset {
|
|
1656 |
margin-top: 0; }
|
|
1657 |
.components-datetime__time .components-datetime__time-wrapper {
|
|
1658 |
display: flex; }
|
|
1659 |
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-separator {
|
|
1660 |
display: inline-block;
|
|
1661 |
padding: 0 0 0 3px;
|
|
1662 |
color: #555d66; }
|
|
1663 |
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button {
|
|
1664 |
margin-right: 8px;
|
|
1665 |
margin-left: -1px;
|
|
1666 |
border-radius: 0 3px 3px 0; }
|
|
1667 |
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button {
|
|
1668 |
margin-right: -1px;
|
|
1669 |
border-radius: 3px 0 0 3px; }
|
|
1670 |
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button.is-toggled,
|
|
1671 |
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button.is-toggled {
|
|
1672 |
background: #edeff0;
|
|
1673 |
border-color: #8f98a1;
|
|
1674 |
box-shadow: inset 0 2px 5px -3px #555d66; }
|
|
1675 |
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field {
|
|
1676 |
align-self: center;
|
|
1677 |
flex: 0 1 auto;
|
|
1678 |
order: 1; }
|
|
1679 |
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field.am-pm button {
|
|
1680 |
font-size: 11px;
|
|
1681 |
font-weight: 600; }
|
|
1682 |
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select {
|
|
1683 |
padding: 2px;
|
|
1684 |
margin-left: 4px; }
|
|
1685 |
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select:focus {
|
|
1686 |
position: relative;
|
|
1687 |
z-index: 1; }
|
|
1688 |
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type="number"] {
|
|
1689 |
padding: 2px;
|
|
1690 |
margin-left: 4px;
|
|
1691 |
width: 40px;
|
|
1692 |
text-align: center;
|
|
1693 |
-moz-appearance: textfield; }
|
|
1694 |
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type="number"]:focus {
|
|
1695 |
position: relative;
|
|
1696 |
z-index: 1; }
|
|
1697 |
.components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type="number"]::-webkit-inner-spin-button {
|
|
1698 |
-webkit-appearance: none;
|
|
1699 |
margin: 0; }
|
|
1700 |
.components-datetime__time.is-12-hour .components-datetime__time-field-day input {
|
|
1701 |
margin: 0 0 0 -4px !important;
|
|
1702 |
border-radius: 0 4px 4px 0 !important; }
|
|
1703 |
.components-datetime__time.is-12-hour .components-datetime__time-field-year input {
|
|
1704 |
border-radius: 4px 0 0 4px !important; }
|
|
1705 |
|
|
1706 |
.components-datetime__time-legend {
|
|
1707 |
font-weight: 600;
|
|
1708 |
margin-top: 0.5em; }
|
|
1709 |
.components-datetime__time-legend.invisible {
|
|
1710 |
position: absolute;
|
|
1711 |
top: -999em;
|
|
1712 |
right: -999em; }
|
|
1713 |
|
|
1714 |
.components-datetime__time-field-hours-input,
|
|
1715 |
.components-datetime__time-field-minutes-input,
|
|
1716 |
.components-datetime__time-field-day-input {
|
|
1717 |
width: 35px; }
|
|
1718 |
|
|
1719 |
.components-datetime__time-field-year-input {
|
|
1720 |
width: 55px; }
|
|
1721 |
|
|
1722 |
.components-datetime__time-field-month-select {
|
|
1723 |
width: 90px; }
|
|
1724 |
|
|
1725 |
.components-popover .components-datetime__date {
|
|
1726 |
padding-right: 6px; }
|
|
1727 |
|
|
1728 |
.components-popover.edit-post-post-schedule__dialog.is-bottom.is-left {
|
|
1729 |
z-index: 100000; }
|
|
1730 |
|
|
1731 |
.components-disabled {
|
|
1732 |
position: relative;
|
|
1733 |
pointer-events: none; }
|
|
1734 |
.components-disabled::after {
|
|
1735 |
content: "";
|
|
1736 |
position: absolute;
|
|
1737 |
top: 0;
|
|
1738 |
left: 0;
|
|
1739 |
bottom: 0;
|
|
1740 |
right: 0; }
|
|
1741 |
.components-disabled * {
|
|
1742 |
pointer-events: none; }
|
|
1743 |
|
|
1744 |
body.is-dragging-components-draggable {
|
|
1745 |
cursor: move;
|
|
1746 |
/* Fallback for IE/Edge < 14 */
|
|
1747 |
cursor: -webkit-grabbing !important;
|
|
1748 |
cursor: grabbing !important; }
|
|
1749 |
|
|
1750 |
.components-draggable__invisible-drag-image {
|
|
1751 |
position: fixed;
|
|
1752 |
right: -1000px;
|
|
1753 |
height: 50px;
|
|
1754 |
width: 50px; }
|
|
1755 |
|
|
1756 |
.components-draggable__clone {
|
|
1757 |
position: fixed;
|
|
1758 |
padding: 20px;
|
|
1759 |
background: transparent;
|
|
1760 |
pointer-events: none;
|
|
1761 |
z-index: 1000000000;
|
|
1762 |
opacity: 0.8; }
|
|
1763 |
|
|
1764 |
.components-drop-zone {
|
|
1765 |
position: absolute;
|
|
1766 |
top: 0;
|
|
1767 |
left: 0;
|
|
1768 |
bottom: 0;
|
|
1769 |
right: 0;
|
|
1770 |
z-index: 100;
|
|
1771 |
visibility: hidden;
|
|
1772 |
opacity: 0;
|
|
1773 |
transition: 0.3s opacity, 0.3s background-color, 0s visibility 0.3s;
|
|
1774 |
border: 2px solid #0071a1;
|
|
1775 |
border-radius: 2px; }
|
|
1776 |
.components-drop-zone.is-active {
|
|
1777 |
opacity: 1;
|
|
1778 |
visibility: visible;
|
|
1779 |
transition: 0.3s opacity, 0.3s background-color; }
|
|
1780 |
.components-drop-zone.is-dragging-over-element {
|
|
1781 |
background-color: rgba(0, 113, 161, 0.8); }
|
|
1782 |
|
|
1783 |
.components-drop-zone__content {
|
|
1784 |
position: absolute;
|
|
1785 |
top: 50%;
|
|
1786 |
right: 0;
|
|
1787 |
left: 0;
|
|
1788 |
z-index: 110;
|
|
1789 |
transform: translateY(-50%);
|
|
1790 |
width: 100%;
|
|
1791 |
text-align: center;
|
|
1792 |
color: #fff;
|
|
1793 |
transition: transform 0.2s ease-in-out; }
|
|
1794 |
|
|
1795 |
.components-drop-zone.is-dragging-over-element .components-drop-zone__content {
|
|
1796 |
transform: translateY(-50%) scale(1.05); }
|
|
1797 |
|
|
1798 |
.components-drop-zone__content-icon,
|
|
1799 |
.components-drop-zone__content-text {
|
|
1800 |
display: block; }
|
|
1801 |
|
|
1802 |
.components-drop-zone__content-icon {
|
|
1803 |
margin: 0 auto;
|
|
1804 |
line-height: 0; }
|
|
1805 |
|
|
1806 |
.components-drop-zone__content-text {
|
|
1807 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }
|
|
1808 |
|
|
1809 |
.components-drop-zone__provider {
|
|
1810 |
height: 100%; }
|
|
1811 |
|
|
1812 |
.components-dropdown-menu {
|
|
1813 |
padding: 3px;
|
|
1814 |
display: flex; }
|
|
1815 |
.components-dropdown-menu .components-dropdown-menu__toggle {
|
|
1816 |
width: auto;
|
|
1817 |
margin: 0;
|
|
1818 |
padding: 4px;
|
|
1819 |
border: 1px solid transparent;
|
|
1820 |
display: flex;
|
|
1821 |
flex-direction: row; }
|
|
1822 |
.components-dropdown-menu .components-dropdown-menu__toggle.is-active, .components-dropdown-menu .components-dropdown-menu__toggle.is-active:hover {
|
|
1823 |
box-shadow: none;
|
|
1824 |
background-color: #555d66;
|
|
1825 |
color: #fff; }
|
|
1826 |
.components-dropdown-menu .components-dropdown-menu__toggle:focus::before {
|
|
1827 |
top: -3px;
|
|
1828 |
left: -3px;
|
|
1829 |
bottom: -3px;
|
|
1830 |
right: -3px; }
|
|
1831 |
.components-dropdown-menu .components-dropdown-menu__toggle:hover, .components-dropdown-menu .components-dropdown-menu__toggle:focus, .components-dropdown-menu .components-dropdown-menu__toggle:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
|
|
1832 |
color: #555d66;
|
|
1833 |
box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff; }
|
|
1834 |
.components-dropdown-menu .components-dropdown-menu__toggle .components-dropdown-menu__indicator::after {
|
|
1835 |
content: "";
|
|
1836 |
pointer-events: none;
|
|
1837 |
display: block;
|
|
1838 |
width: 0;
|
|
1839 |
height: 0;
|
|
1840 |
border-right: 3px solid transparent;
|
|
1841 |
border-left: 3px solid transparent;
|
|
1842 |
border-top: 5px solid currentColor;
|
|
1843 |
margin-right: 4px;
|
|
1844 |
margin-left: 2px; }
|
|
1845 |
|
|
1846 |
.components-dropdown-menu__popover .components-popover__content {
|
|
1847 |
width: 200px; }
|
|
1848 |
|
|
1849 |
.components-dropdown-menu__menu {
|
|
1850 |
width: 100%;
|
|
1851 |
padding: 9px;
|
|
1852 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
1853 |
font-size: 13px;
|
|
1854 |
line-height: 1.4; }
|
|
1855 |
.components-dropdown-menu__menu .components-dropdown-menu__menu-item {
|
|
1856 |
width: 100%;
|
|
1857 |
padding: 6px;
|
|
1858 |
outline: none;
|
|
1859 |
cursor: pointer;
|
|
1860 |
margin-bottom: 4px; }
|
|
1861 |
.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator {
|
|
1862 |
margin-top: 6px;
|
|
1863 |
position: relative;
|
|
1864 |
overflow: visible; }
|
|
1865 |
.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator::before {
|
|
1866 |
display: block;
|
|
1867 |
content: "";
|
|
1868 |
box-sizing: content-box;
|
|
1869 |
background-color: #e2e4e7;
|
|
1870 |
position: absolute;
|
|
1871 |
top: -3px;
|
|
1872 |
right: 0;
|
|
1873 |
left: 0;
|
|
1874 |
height: 1px; }
|
|
1875 |
.components-dropdown-menu__menu .components-dropdown-menu__menu-item:focus:not(:disabled):not([aria-disabled="true"]):not(.is-default) {
|
|
1876 |
color: #191e23;
|
|
1877 |
border: none;
|
|
1878 |
box-shadow: none;
|
|
1879 |
outline-offset: -2px;
|
|
1880 |
outline: 1px dotted #555d66; }
|
|
1881 |
.components-dropdown-menu__menu .components-dropdown-menu__menu-item > svg {
|
|
1882 |
border-radius: 4px;
|
|
1883 |
padding: 2px;
|
|
1884 |
width: 24px;
|
|
1885 |
height: 24px;
|
|
1886 |
margin: -1px 0 -1px 8px; }
|
|
1887 |
.components-dropdown-menu__menu .components-dropdown-menu__menu-item:not(:disabled):not([aria-disabled="true"]):not(.is-default).is-active > svg {
|
|
1888 |
outline: none;
|
|
1889 |
color: #fff;
|
|
1890 |
box-shadow: none;
|
|
1891 |
background: #555d66; }
|
|
1892 |
|
|
1893 |
.components-external-link__icon {
|
|
1894 |
width: 1.4em;
|
|
1895 |
height: 1.4em;
|
|
1896 |
margin: -0.2em 0.1em 0;
|
|
1897 |
vertical-align: middle; }
|
|
1898 |
|
|
1899 |
.components-focal-point-picker-wrapper {
|
|
1900 |
background-color: transparent;
|
|
1901 |
border: 1px solid #e2e4e7;
|
|
1902 |
height: 200px;
|
|
1903 |
width: 100%;
|
|
1904 |
padding: 14px; }
|
|
1905 |
|
|
1906 |
.components-focal-point-picker {
|
|
1907 |
align-items: center;
|
|
1908 |
cursor: pointer;
|
|
1909 |
display: flex;
|
|
1910 |
height: 100%;
|
|
1911 |
justify-content: center;
|
|
1912 |
position: relative;
|
|
1913 |
width: 100%; }
|
|
1914 |
.components-focal-point-picker img {
|
|
1915 |
height: auto;
|
|
1916 |
max-height: 100%;
|
|
1917 |
max-width: 100%;
|
|
1918 |
width: auto;
|
|
1919 |
-webkit-user-select: none;
|
|
1920 |
-moz-user-select: none;
|
|
1921 |
-ms-user-select: none;
|
|
1922 |
user-select: none; }
|
|
1923 |
|
|
1924 |
.components-focal-point-picker__icon_container {
|
|
1925 |
background-color: transparent;
|
|
1926 |
cursor: -webkit-grab;
|
|
1927 |
cursor: grab;
|
|
1928 |
height: 30px;
|
|
1929 |
opacity: 0.8;
|
|
1930 |
position: absolute;
|
|
1931 |
will-change: transform;
|
|
1932 |
width: 30px;
|
|
1933 |
z-index: 10000; }
|
|
1934 |
.components-focal-point-picker__icon_container.is-dragging {
|
|
1935 |
cursor: -webkit-grabbing;
|
|
1936 |
cursor: grabbing; }
|
|
1937 |
|
|
1938 |
.components-focal-point-picker__icon {
|
|
1939 |
display: block;
|
|
1940 |
height: 100%;
|
|
1941 |
right: -15px;
|
|
1942 |
position: absolute;
|
|
1943 |
top: -15px;
|
|
1944 |
width: 100%; }
|
|
1945 |
.components-focal-point-picker__icon .components-focal-point-picker__icon-outline {
|
|
1946 |
fill: #fff; }
|
|
1947 |
.components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
|
|
1948 |
fill: #0085ba; }
|
|
1949 |
body.admin-color-sunrise .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
|
|
1950 |
fill: #d1864a; }
|
|
1951 |
body.admin-color-ocean .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
|
|
1952 |
fill: #a3b9a2; }
|
|
1953 |
body.admin-color-midnight .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
|
|
1954 |
fill: #e14d43; }
|
|
1955 |
body.admin-color-ectoplasm .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
|
|
1956 |
fill: #a7b656; }
|
|
1957 |
body.admin-color-coffee .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
|
|
1958 |
fill: #c2a68c; }
|
|
1959 |
body.admin-color-blue .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
|
|
1960 |
fill: #82b4cb; }
|
|
1961 |
body.admin-color-light .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
|
|
1962 |
fill: #0085ba; }
|
|
1963 |
|
|
1964 |
.components-focal-point-picker_position-display-container {
|
|
1965 |
margin: 1em 0;
|
|
1966 |
display: flex; }
|
|
1967 |
.components-focal-point-picker_position-display-container .components-base-control__field {
|
|
1968 |
margin: 0 0 0 1em; }
|
|
1969 |
.components-focal-point-picker_position-display-container input[type="number"].components-text-control__input {
|
|
1970 |
max-width: 4em;
|
|
1971 |
padding: 6px 4px; }
|
|
1972 |
.components-focal-point-picker_position-display-container span {
|
|
1973 |
margin: 0 0.2em 0 0; }
|
|
1974 |
|
|
1975 |
.components-font-size-picker__buttons {
|
|
1976 |
max-width: 248px;
|
|
1977 |
display: flex;
|
|
1978 |
justify-content: space-between;
|
|
1979 |
align-items: center; }
|
|
1980 |
.components-font-size-picker__buttons .components-range-control__number {
|
|
1981 |
height: 30px;
|
|
1982 |
margin-right: 0; }
|
|
1983 |
.components-font-size-picker__buttons .components-range-control__number[value=""] + .components-button {
|
|
1984 |
cursor: default;
|
|
1985 |
opacity: 0.3;
|
|
1986 |
pointer-events: none; }
|
|
1987 |
|
|
1988 |
.components-font-size-picker__custom-input .components-range-control__slider + .dashicon {
|
|
1989 |
width: 30px;
|
|
1990 |
height: 30px; }
|
|
1991 |
|
|
1992 |
.components-font-size-picker__dropdown-content .components-button {
|
|
1993 |
display: block;
|
|
1994 |
position: relative;
|
|
1995 |
padding: 10px 40px 10px 20px;
|
|
1996 |
width: 100%;
|
|
1997 |
text-align: right; }
|
|
1998 |
.components-font-size-picker__dropdown-content .components-button .dashicon {
|
|
1999 |
position: absolute;
|
|
2000 |
top: calc(50% - 10px);
|
|
2001 |
right: 10px; }
|
|
2002 |
.components-font-size-picker__dropdown-content .components-button:hover {
|
|
2003 |
color: #191e23;
|
|
2004 |
border: none;
|
|
2005 |
box-shadow: none;
|
|
2006 |
background: #f3f4f5; }
|
|
2007 |
.components-font-size-picker__dropdown-content .components-button:focus {
|
|
2008 |
color: #191e23;
|
|
2009 |
border: none;
|
|
2010 |
box-shadow: none;
|
|
2011 |
outline-offset: -2px;
|
|
2012 |
outline: 1px dotted #555d66; }
|
|
2013 |
|
|
2014 |
.components-font-size-picker__buttons .components-font-size-picker__selector {
|
|
2015 |
border: 1px solid;
|
|
2016 |
background: none;
|
|
2017 |
position: relative;
|
|
2018 |
width: 110px;
|
|
2019 |
box-shadow: 0 0 0 transparent;
|
|
2020 |
transition: box-shadow 0.1s linear;
|
|
2021 |
border-radius: 4px;
|
|
2022 |
border: 1px solid #8d96a0; }
|
|
2023 |
.components-font-size-picker__buttons .components-font-size-picker__selector:focus {
|
|
2024 |
color: #191e23;
|
|
2025 |
border-color: #00a0d2;
|
|
2026 |
box-shadow: 0 0 0 1px #00a0d2;
|
|
2027 |
outline: 2px solid transparent;
|
|
2028 |
outline-offset: -2px; }
|
|
2029 |
.components-font-size-picker__buttons .components-font-size-picker__selector::after {
|
|
2030 |
content: "";
|
|
2031 |
pointer-events: none;
|
|
2032 |
display: block;
|
|
2033 |
width: 0;
|
|
2034 |
height: 0;
|
|
2035 |
border-right: 3px solid transparent;
|
|
2036 |
border-left: 3px solid transparent;
|
|
2037 |
border-top: 5px solid currentColor;
|
|
2038 |
margin-right: 4px;
|
|
2039 |
margin-left: 2px;
|
|
2040 |
left: 8px;
|
|
2041 |
top: 12px;
|
|
2042 |
position: absolute; }
|
|
2043 |
|
|
2044 |
.components-form-file-upload .components-button.is-large {
|
|
2045 |
padding-right: 6px; }
|
|
2046 |
|
|
2047 |
.components-form-toggle {
|
|
2048 |
position: relative;
|
|
2049 |
display: inline-block; }
|
|
2050 |
.components-form-toggle .components-form-toggle__on,
|
|
2051 |
.components-form-toggle .components-form-toggle__off {
|
|
2052 |
position: absolute;
|
|
2053 |
top: 6px;
|
|
2054 |
box-sizing: border-box; }
|
|
2055 |
.components-form-toggle .components-form-toggle__off {
|
|
2056 |
color: #6c7781;
|
|
2057 |
fill: currentColor;
|
|
2058 |
left: 6px; }
|
|
2059 |
.components-form-toggle .components-form-toggle__on {
|
|
2060 |
right: 8px; }
|
|
2061 |
.components-form-toggle .components-form-toggle__track {
|
|
2062 |
content: "";
|
|
2063 |
display: inline-block;
|
|
2064 |
box-sizing: border-box;
|
|
2065 |
vertical-align: top;
|
|
2066 |
background-color: #fff;
|
|
2067 |
border: 2px solid #6c7781;
|
|
2068 |
width: 36px;
|
|
2069 |
height: 18px;
|
|
2070 |
border-radius: 9px;
|
|
2071 |
transition: 0.2s background ease; }
|
|
2072 |
.components-form-toggle .components-form-toggle__thumb {
|
|
2073 |
display: block;
|
|
2074 |
position: absolute;
|
|
2075 |
box-sizing: border-box;
|
|
2076 |
top: 4px;
|
|
2077 |
right: 4px;
|
|
2078 |
width: 10px;
|
|
2079 |
height: 10px;
|
|
2080 |
border-radius: 50%;
|
|
2081 |
transition: 0.1s transform ease;
|
|
2082 |
background-color: #6c7781;
|
|
2083 |
border: 5px solid #6c7781; }
|
|
2084 |
.components-form-toggle:hover .components-form-toggle__track {
|
|
2085 |
border: 2px solid #555d66; }
|
|
2086 |
.components-form-toggle:hover .components-form-toggle__thumb {
|
|
2087 |
background-color: #555d66;
|
|
2088 |
border: 5px solid #6c7781; }
|
|
2089 |
.components-form-toggle:hover .components-form-toggle__off {
|
|
2090 |
color: #555d66; }
|
|
2091 |
.components-form-toggle.is-checked .components-form-toggle__track {
|
|
2092 |
background-color: #11a0d2;
|
|
2093 |
border: 2px solid #11a0d2;
|
|
2094 |
border: 9px solid transparent; }
|
|
2095 |
body.admin-color-sunrise .components-form-toggle.is-checked .components-form-toggle__track {
|
|
2096 |
background-color: #c8b03c;
|
|
2097 |
border: 2px solid #c8b03c; }
|
|
2098 |
body.admin-color-ocean .components-form-toggle.is-checked .components-form-toggle__track {
|
|
2099 |
background-color: #a3b9a2;
|
|
2100 |
border: 2px solid #a3b9a2; }
|
|
2101 |
body.admin-color-midnight .components-form-toggle.is-checked .components-form-toggle__track {
|
|
2102 |
background-color: #77a6b9;
|
|
2103 |
border: 2px solid #77a6b9; }
|
|
2104 |
body.admin-color-ectoplasm .components-form-toggle.is-checked .components-form-toggle__track {
|
|
2105 |
background-color: #a7b656;
|
|
2106 |
border: 2px solid #a7b656; }
|
|
2107 |
body.admin-color-coffee .components-form-toggle.is-checked .components-form-toggle__track {
|
|
2108 |
background-color: #c2a68c;
|
|
2109 |
border: 2px solid #c2a68c; }
|
|
2110 |
body.admin-color-blue .components-form-toggle.is-checked .components-form-toggle__track {
|
|
2111 |
background-color: #82b4cb;
|
|
2112 |
border: 2px solid #82b4cb; }
|
|
2113 |
body.admin-color-light .components-form-toggle.is-checked .components-form-toggle__track {
|
|
2114 |
background-color: #11a0d2;
|
|
2115 |
border: 2px solid #11a0d2; }
|
|
2116 |
.components-form-toggle__input:focus + .components-form-toggle__track {
|
|
2117 |
box-shadow: 0 0 0 2px #fff, 0 0 0 3px #6c7781;
|
|
2118 |
outline: 2px solid transparent;
|
|
2119 |
outline-offset: 2px; }
|
|
2120 |
.components-form-toggle.is-checked .components-form-toggle__thumb {
|
|
2121 |
background-color: #fff;
|
|
2122 |
border-width: 0;
|
|
2123 |
transform: translateX(-18px); }
|
|
2124 |
.components-form-toggle.is-checked::before {
|
|
2125 |
background-color: #11a0d2;
|
|
2126 |
border: 2px solid #11a0d2; }
|
|
2127 |
body.admin-color-sunrise .components-form-toggle.is-checked::before {
|
|
2128 |
background-color: #c8b03c;
|
|
2129 |
border: 2px solid #c8b03c; }
|
|
2130 |
body.admin-color-ocean .components-form-toggle.is-checked::before {
|
|
2131 |
background-color: #a3b9a2;
|
|
2132 |
border: 2px solid #a3b9a2; }
|
|
2133 |
body.admin-color-midnight .components-form-toggle.is-checked::before {
|
|
2134 |
background-color: #77a6b9;
|
|
2135 |
border: 2px solid #77a6b9; }
|
|
2136 |
body.admin-color-ectoplasm .components-form-toggle.is-checked::before {
|
|
2137 |
background-color: #a7b656;
|
|
2138 |
border: 2px solid #a7b656; }
|
|
2139 |
body.admin-color-coffee .components-form-toggle.is-checked::before {
|
|
2140 |
background-color: #c2a68c;
|
|
2141 |
border: 2px solid #c2a68c; }
|
|
2142 |
body.admin-color-blue .components-form-toggle.is-checked::before {
|
|
2143 |
background-color: #82b4cb;
|
|
2144 |
border: 2px solid #82b4cb; }
|
|
2145 |
body.admin-color-light .components-form-toggle.is-checked::before {
|
|
2146 |
background-color: #11a0d2;
|
|
2147 |
border: 2px solid #11a0d2; }
|
|
2148 |
.components-disabled .components-form-toggle {
|
|
2149 |
opacity: 0.3; }
|
|
2150 |
|
|
2151 |
.components-form-toggle input.components-form-toggle__input[type="checkbox"] {
|
|
2152 |
position: absolute;
|
|
2153 |
top: 0;
|
|
2154 |
right: 0;
|
|
2155 |
width: 100%;
|
|
2156 |
height: 100%;
|
|
2157 |
opacity: 0;
|
|
2158 |
margin: 0;
|
|
2159 |
padding: 0;
|
|
2160 |
z-index: 1;
|
|
2161 |
border: none; }
|
|
2162 |
.components-form-toggle input.components-form-toggle__input[type="checkbox"]:checked {
|
|
2163 |
background: none; }
|
|
2164 |
.components-form-toggle input.components-form-toggle__input[type="checkbox"]::before {
|
|
2165 |
content: ""; }
|
|
2166 |
|
|
2167 |
.components-form-toggle .components-form-toggle__on {
|
|
2168 |
outline: 1px solid transparent;
|
|
2169 |
outline-offset: -1px;
|
|
2170 |
border: 1px solid #000;
|
|
2171 |
filter: invert(100%) contrast(500%); }
|
|
2172 |
|
|
2173 |
@supports (-ms-high-contrast-adjust: auto) {
|
|
2174 |
.components-form-toggle .components-form-toggle__on {
|
|
2175 |
filter: none;
|
|
2176 |
border: 1px solid #fff; } }
|
|
2177 |
|
|
2178 |
.components-form-token-field__input-container {
|
|
2179 |
display: flex;
|
|
2180 |
flex-wrap: wrap;
|
|
2181 |
align-items: flex-start;
|
|
2182 |
width: 100%;
|
|
2183 |
margin: 0;
|
|
2184 |
padding: 4px;
|
|
2185 |
background-color: #fff;
|
|
2186 |
border: 1px solid #ccd0d4;
|
|
2187 |
color: #32373c;
|
|
2188 |
cursor: text;
|
|
2189 |
box-shadow: 0 0 0 transparent;
|
|
2190 |
transition: box-shadow 0.1s linear;
|
|
2191 |
border-radius: 4px;
|
|
2192 |
border: 1px solid #8d96a0; }
|
|
2193 |
.components-form-token-field__input-container.is-disabled {
|
|
2194 |
background: #e2e4e7;
|
|
2195 |
border-color: #ccd0d4; }
|
|
2196 |
.components-form-token-field__input-container.is-active {
|
|
2197 |
color: #191e23;
|
|
2198 |
border-color: #00a0d2;
|
|
2199 |
box-shadow: 0 0 0 1px #00a0d2;
|
|
2200 |
outline: 2px solid transparent;
|
|
2201 |
outline-offset: -2px; }
|
|
2202 |
.components-form-token-field__input-container input[type="text"].components-form-token-field__input {
|
|
2203 |
display: inline-block;
|
|
2204 |
width: 100%;
|
|
2205 |
max-width: 100%;
|
|
2206 |
margin: 2px 8px 2px 0;
|
|
2207 |
padding: 0;
|
|
2208 |
min-height: 24px;
|
|
2209 |
background: inherit;
|
|
2210 |
border: 0;
|
|
2211 |
color: #23282d;
|
|
2212 |
box-shadow: none; }
|
|
2213 |
.components-form-token-field__input-container input[type="text"].components-form-token-field__input:focus,
|
|
2214 |
.components-form-token-field.is-active .components-form-token-field__input-container input[type="text"].components-form-token-field__input {
|
|
2215 |
outline: none;
|
|
2216 |
box-shadow: none; }
|
|
2217 |
.components-form-token-field__input-container .components-form-token-field__token + input[type="text"].components-form-token-field__input {
|
|
2218 |
width: auto; }
|
|
2219 |
|
|
2220 |
.components-form-token-field__label {
|
|
2221 |
display: inline-block;
|
|
2222 |
margin-bottom: 4px; }
|
|
2223 |
|
|
2224 |
.components-form-token-field__token {
|
|
2225 |
font-size: 13px;
|
|
2226 |
display: flex;
|
|
2227 |
margin: 2px 0 2px 4px;
|
|
2228 |
color: #32373c;
|
|
2229 |
overflow: hidden; }
|
|
2230 |
.components-form-token-field__token.is-success .components-form-token-field__token-text,
|
|
2231 |
.components-form-token-field__token.is-success .components-form-token-field__remove-token {
|
|
2232 |
background: #4ab866; }
|
|
2233 |
.components-form-token-field__token.is-error .components-form-token-field__token-text,
|
|
2234 |
.components-form-token-field__token.is-error .components-form-token-field__remove-token {
|
|
2235 |
background: #d94f4f; }
|
|
2236 |
.components-form-token-field__token.is-validating .components-form-token-field__token-text,
|
|
2237 |
.components-form-token-field__token.is-validating .components-form-token-field__remove-token {
|
|
2238 |
color: #555d66; }
|
|
2239 |
.components-form-token-field__token.is-borderless {
|
|
2240 |
position: relative;
|
|
2241 |
padding: 0 0 0 16px; }
|
|
2242 |
.components-form-token-field__token.is-borderless .components-form-token-field__token-text {
|
|
2243 |
background: transparent;
|
|
2244 |
color: #11a0d2; }
|
|
2245 |
body.admin-color-sunrise .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
|
|
2246 |
color: #c8b03c; }
|
|
2247 |
body.admin-color-ocean .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
|
|
2248 |
color: #a89d8a; }
|
|
2249 |
body.admin-color-midnight .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
|
|
2250 |
color: #77a6b9; }
|
|
2251 |
body.admin-color-ectoplasm .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
|
|
2252 |
color: #c77430; }
|
|
2253 |
body.admin-color-coffee .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
|
|
2254 |
color: #9fa47b; }
|
|
2255 |
body.admin-color-blue .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
|
|
2256 |
color: #d9ab59; }
|
|
2257 |
body.admin-color-light .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
|
|
2258 |
color: #c75726; }
|
|
2259 |
.components-form-token-field__token.is-borderless .components-form-token-field__remove-token {
|
|
2260 |
background: transparent;
|
|
2261 |
color: #555d66;
|
|
2262 |
position: absolute;
|
|
2263 |
top: 1px;
|
|
2264 |
left: 0; }
|
|
2265 |
.components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text {
|
|
2266 |
color: #4ab866; }
|
|
2267 |
.components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text {
|
|
2268 |
color: #d94f4f;
|
|
2269 |
border-radius: 0 4px 4px 0;
|
|
2270 |
padding: 0 6px 0 4px; }
|
|
2271 |
.components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text {
|
|
2272 |
color: #23282d; }
|
|
2273 |
.components-form-token-field__token.is-disabled .components-form-token-field__remove-token {
|
|
2274 |
cursor: default; }
|
|
2275 |
|
|
2276 |
.components-form-token-field__token-text,
|
|
2277 |
.components-form-token-field__remove-token.components-icon-button {
|
|
2278 |
display: inline-block;
|
|
2279 |
line-height: 24px;
|
|
2280 |
background: #e2e4e7;
|
|
2281 |
transition: all 0.2s cubic-bezier(0.4, 1, 0.4, 1); }
|
|
2282 |
|
|
2283 |
.components-form-token-field__token-text {
|
|
2284 |
border-radius: 0 12px 12px 0;
|
|
2285 |
padding: 0 8px 0 4px;
|
|
2286 |
white-space: nowrap;
|
|
2287 |
overflow: hidden;
|
|
2288 |
text-overflow: ellipsis; }
|
|
2289 |
|
|
2290 |
.components-form-token-field__remove-token.components-icon-button {
|
|
2291 |
cursor: pointer;
|
|
2292 |
border-radius: 12px 0 0 12px;
|
|
2293 |
padding: 0 2px;
|
|
2294 |
color: #555d66;
|
|
2295 |
line-height: 10px;
|
|
2296 |
overflow: initial; }
|
|
2297 |
.components-form-token-field__remove-token.components-icon-button:hover {
|
|
2298 |
color: #32373c; }
|
|
2299 |
|
|
2300 |
.components-form-token-field__suggestions-list {
|
|
2301 |
flex: 1 0 100%;
|
|
2302 |
min-width: 100%;
|
|
2303 |
max-height: 9em;
|
|
2304 |
overflow-y: scroll;
|
|
2305 |
transition: all 0.15s ease-in-out;
|
|
2306 |
list-style: none;
|
|
2307 |
border-top: 1px solid #6c7781;
|
|
2308 |
margin: 4px -4px -4px;
|
|
2309 |
padding-top: 3px; }
|
|
2310 |
|
|
2311 |
.components-form-token-field__suggestion {
|
|
2312 |
color: #555d66;
|
|
2313 |
display: block;
|
|
2314 |
font-size: 13px;
|
|
2315 |
padding: 4px 8px;
|
|
2316 |
cursor: pointer; }
|
|
2317 |
.components-form-token-field__suggestion.is-selected {
|
|
2318 |
background: #0071a1;
|
|
2319 |
color: #fff; }
|
|
2320 |
|
|
2321 |
.components-form-token-field__suggestion-match {
|
|
2322 |
text-decoration: underline; }
|
|
2323 |
|
|
2324 |
.components-navigate-regions.is-focusing-regions [role="region"]:focus::after {
|
|
2325 |
content: "";
|
|
2326 |
position: absolute;
|
|
2327 |
top: 0;
|
|
2328 |
bottom: 0;
|
|
2329 |
right: 0;
|
|
2330 |
left: 0;
|
|
2331 |
pointer-events: none;
|
|
2332 |
outline: 4px solid transparent;
|
|
2333 |
box-shadow: inset 0 0 0 4px #33b3db; }
|
|
2334 |
|
|
2335 |
@supports (outline-offset: 1px) {
|
|
2336 |
.components-navigate-regions.is-focusing-regions [role="region"]:focus::after {
|
|
2337 |
content: none; }
|
|
2338 |
.components-navigate-regions.is-focusing-regions [role="region"]:focus {
|
|
2339 |
outline-style: solid;
|
|
2340 |
outline-color: #33b3db;
|
|
2341 |
outline-width: 4px;
|
|
2342 |
outline-offset: -4px; } }
|
|
2343 |
|
|
2344 |
.components-icon-button {
|
|
2345 |
display: flex;
|
|
2346 |
align-items: center;
|
|
2347 |
padding: 8px;
|
|
2348 |
margin: 0;
|
|
2349 |
border: none;
|
|
2350 |
background: none;
|
|
2351 |
color: #555d66;
|
|
2352 |
position: relative;
|
|
2353 |
overflow: hidden;
|
|
2354 |
border-radius: 4px; }
|
|
2355 |
.components-icon-button .dashicon {
|
|
2356 |
display: inline-block;
|
|
2357 |
flex: 0 0 auto; }
|
|
2358 |
.components-icon-button svg {
|
|
2359 |
fill: currentColor;
|
|
2360 |
outline: none; }
|
|
2361 |
.components-icon-button.has-text svg {
|
|
2362 |
margin-left: 4px; }
|
|
2363 |
.components-icon-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
|
|
2364 |
background-color: #fff;
|
|
2365 |
color: #191e23;
|
|
2366 |
box-shadow: inset 0 0 0 1px #e2e4e7, inset 0 0 0 2px #fff, 0 1px 1px rgba(25, 30, 35, 0.2); }
|
|
2367 |
.components-icon-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):active {
|
|
2368 |
outline: none;
|
|
2369 |
background-color: #fff;
|
|
2370 |
color: #191e23;
|
|
2371 |
box-shadow: inset 0 0 0 1px #ccd0d4, inset 0 0 0 2px #fff; }
|
|
2372 |
.components-icon-button[aria-disabled="true"]:focus, .components-icon-button:disabled:focus {
|
|
2373 |
box-shadow: none; }
|
|
2374 |
|
|
2375 |
.components-menu-group {
|
|
2376 |
width: 100%;
|
|
2377 |
padding: 7px 0; }
|
|
2378 |
|
|
2379 |
.components-menu-group__label {
|
|
2380 |
margin-bottom: 8px;
|
|
2381 |
color: #6c7781;
|
|
2382 |
padding: 0 7px; }
|
|
2383 |
|
|
2384 |
.components-menu-item__button,
|
|
2385 |
.components-menu-item__button.components-icon-button {
|
|
2386 |
width: 100%;
|
|
2387 |
padding: 8px 15px;
|
|
2388 |
text-align: right;
|
|
2389 |
color: #40464d; }
|
|
2390 |
.components-menu-item__button .dashicon,
|
|
2391 |
.components-menu-item__button .components-menu-items__item-icon,
|
|
2392 |
.components-menu-item__button > span > svg,
|
|
2393 |
.components-menu-item__button.components-icon-button .dashicon,
|
|
2394 |
.components-menu-item__button.components-icon-button .components-menu-items__item-icon,
|
|
2395 |
.components-menu-item__button.components-icon-button > span > svg {
|
|
2396 |
margin-left: 4px; }
|
|
2397 |
.components-menu-item__button .components-menu-items__item-icon,
|
|
2398 |
.components-menu-item__button.components-icon-button .components-menu-items__item-icon {
|
|
2399 |
display: inline-block;
|
|
2400 |
flex: 0 0 auto; }
|
|
2401 |
.components-menu-item__button:hover:not(:disabled):not([aria-disabled="true"]),
|
|
2402 |
.components-menu-item__button.components-icon-button:hover:not(:disabled):not([aria-disabled="true"]) {
|
|
2403 |
color: #555d66; }
|
|
2404 |
@media (min-width: 782px) {
|
|
2405 |
.components-menu-item__button:hover:not(:disabled):not([aria-disabled="true"]),
|
|
2406 |
.components-menu-item__button.components-icon-button:hover:not(:disabled):not([aria-disabled="true"]) {
|
|
2407 |
color: #191e23;
|
|
2408 |
border: none;
|
|
2409 |
box-shadow: none;
|
|
2410 |
background: #f3f4f5; } }
|
|
2411 |
.components-menu-item__button:hover:not(:disabled):not([aria-disabled="true"]) .components-menu-item__shortcut,
|
|
2412 |
.components-menu-item__button.components-icon-button:hover:not(:disabled):not([aria-disabled="true"]) .components-menu-item__shortcut {
|
|
2413 |
opacity: 1; }
|
|
2414 |
.components-menu-item__button:focus:not(:disabled):not([aria-disabled="true"]),
|
|
2415 |
.components-menu-item__button.components-icon-button:focus:not(:disabled):not([aria-disabled="true"]) {
|
|
2416 |
color: #191e23;
|
|
2417 |
border: none;
|
|
2418 |
box-shadow: none;
|
|
2419 |
outline-offset: -2px;
|
|
2420 |
outline: 1px dotted #555d66; }
|
|
2421 |
|
|
2422 |
.components-menu-item__info-wrapper {
|
|
2423 |
display: flex;
|
|
2424 |
flex-direction: column; }
|
|
2425 |
|
|
2426 |
.components-menu-item__info {
|
|
2427 |
margin-top: 4px;
|
|
2428 |
font-size: 12px;
|
|
2429 |
opacity: 0.84; }
|
|
2430 |
|
|
2431 |
.components-menu-item__shortcut {
|
|
2432 |
align-self: center;
|
|
2433 |
opacity: 0.84;
|
|
2434 |
margin-left: 0;
|
|
2435 |
margin-right: auto;
|
|
2436 |
padding-right: 8px;
|
|
2437 |
display: none; }
|
|
2438 |
@media (min-width: 480px) {
|
|
2439 |
.components-menu-item__shortcut {
|
|
2440 |
display: inline; } }
|
|
2441 |
|
|
2442 |
.components-modal__screen-overlay {
|
|
2443 |
position: fixed;
|
|
2444 |
top: 0;
|
|
2445 |
left: 0;
|
|
2446 |
bottom: 0;
|
|
2447 |
right: 0;
|
|
2448 |
background-color: rgba(255, 255, 255, 0.4);
|
|
2449 |
z-index: 100000;
|
|
2450 |
animation: edit-post__fade-in-animation 0.2s ease-out 0s;
|
|
2451 |
animation-fill-mode: forwards; }
|
|
2452 |
@media (prefers-reduced-motion: reduce) {
|
|
2453 |
.components-modal__screen-overlay {
|
|
2454 |
animation-duration: 1ms !important; } }
|
|
2455 |
|
|
2456 |
.components-modal__frame {
|
|
2457 |
position: absolute;
|
|
2458 |
top: 0;
|
|
2459 |
left: 0;
|
|
2460 |
bottom: 0;
|
|
2461 |
right: 0;
|
|
2462 |
box-sizing: border-box;
|
|
2463 |
margin: 0;
|
|
2464 |
border: 1px solid #e2e4e7;
|
|
2465 |
background: #fff;
|
|
2466 |
box-shadow: 0 3px 30px rgba(25, 30, 35, 0.2);
|
|
2467 |
overflow: auto; }
|
|
2468 |
@media (min-width: 600px) {
|
|
2469 |
.components-modal__frame {
|
|
2470 |
top: 50%;
|
|
2471 |
left: auto;
|
|
2472 |
bottom: auto;
|
|
2473 |
right: 50%;
|
|
2474 |
min-width: 360px;
|
|
2475 |
max-width: calc(100% - 16px - 16px);
|
|
2476 |
max-height: calc(100% - 56px - 56px);
|
|
2477 |
transform: translate(50%, -50%);
|
|
2478 |
animation: components-modal__appear-animation 0.1s ease-out;
|
|
2479 |
animation-fill-mode: forwards; } }
|
|
2480 |
@media (min-width: 600px) and (prefers-reduced-motion: reduce) {
|
|
2481 |
.components-modal__frame {
|
|
2482 |
animation-duration: 1ms !important; } }
|
|
2483 |
|
|
2484 |
@keyframes components-modal__appear-animation {
|
|
2485 |
from {
|
|
2486 |
margin-top: 32px; }
|
|
2487 |
to {
|
|
2488 |
margin-top: 0; } }
|
|
2489 |
|
|
2490 |
.components-modal__header {
|
|
2491 |
box-sizing: border-box;
|
|
2492 |
border-bottom: 1px solid #e2e4e7;
|
|
2493 |
padding: 0 16px;
|
|
2494 |
display: flex;
|
|
2495 |
flex-direction: row;
|
|
2496 |
justify-content: space-between;
|
|
2497 |
background: #fff;
|
|
2498 |
align-items: center;
|
|
2499 |
height: 56px;
|
|
2500 |
position: -webkit-sticky;
|
|
2501 |
position: sticky;
|
|
2502 |
top: 0;
|
|
2503 |
z-index: 10;
|
|
2504 |
margin: 0 -16px 16px; }
|
|
2505 |
@supports (-ms-ime-align: auto) {
|
|
2506 |
.components-modal__header {
|
|
2507 |
position: fixed;
|
|
2508 |
width: 100%; } }
|
|
2509 |
.components-modal__header .components-modal__header-heading {
|
|
2510 |
font-size: 1rem;
|
|
2511 |
font-weight: 600; }
|
|
2512 |
.components-modal__header h1 {
|
|
2513 |
line-height: 1;
|
|
2514 |
margin: 0; }
|
|
2515 |
|
|
2516 |
.components-modal__header-heading-container {
|
|
2517 |
align-items: center;
|
|
2518 |
flex-grow: 1;
|
|
2519 |
display: flex;
|
|
2520 |
flex-direction: row;
|
|
2521 |
justify-content: left; }
|
|
2522 |
|
|
2523 |
.components-modal__header-icon-container {
|
|
2524 |
display: inline-block; }
|
|
2525 |
.components-modal__header-icon-container svg {
|
|
2526 |
max-width: 36px;
|
|
2527 |
max-height: 36px;
|
|
2528 |
padding: 8px; }
|
|
2529 |
|
|
2530 |
.components-modal__content {
|
|
2531 |
box-sizing: border-box;
|
|
2532 |
height: 100%;
|
|
2533 |
padding: 0 16px 16px; }
|
|
2534 |
@supports (-ms-ime-align: auto) {
|
|
2535 |
.components-modal__content {
|
|
2536 |
padding-top: 56px; } }
|
|
2537 |
|
|
2538 |
.components-notice {
|
|
2539 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
2540 |
font-size: 13px;
|
|
2541 |
background-color: #e5f5fa;
|
|
2542 |
border-right: 4px solid #00a0d2;
|
|
2543 |
margin: 5px 15px 2px;
|
|
2544 |
padding: 8px 12px; }
|
|
2545 |
.components-notice.is-dismissible {
|
|
2546 |
padding-left: 36px;
|
|
2547 |
position: relative; }
|
|
2548 |
.components-notice.is-success {
|
|
2549 |
border-right-color: #4ab866;
|
|
2550 |
background-color: #eff9f1; }
|
|
2551 |
.components-notice.is-warning {
|
|
2552 |
border-right-color: #f0b849;
|
|
2553 |
background-color: #fef8ee; }
|
|
2554 |
.components-notice.is-error {
|
|
2555 |
border-right-color: #d94f4f;
|
|
2556 |
background-color: #f9e2e2; }
|
|
2557 |
|
|
2558 |
.components-notice__content {
|
|
2559 |
margin: 1em 0 1em 25px; }
|
|
2560 |
|
|
2561 |
.components-notice__action.components-button, .components-notice__action.components-button.is-link {
|
|
2562 |
margin-right: 4px; }
|
|
2563 |
|
|
2564 |
.components-notice__action.components-button.is-default {
|
|
2565 |
vertical-align: initial; }
|
|
2566 |
|
|
2567 |
.components-notice__dismiss {
|
|
2568 |
position: absolute;
|
|
2569 |
top: 0;
|
|
2570 |
left: 0;
|
|
2571 |
color: #6c7781; }
|
|
2572 |
.components-notice__dismiss:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover, .components-notice__dismiss:not(:disabled):not([aria-disabled="true"]):not(.is-default):active, .components-notice__dismiss:not(:disabled):not([aria-disabled="true"]):focus {
|
|
2573 |
color: #d94f4f;
|
|
2574 |
background-color: transparent; }
|
|
2575 |
.components-notice__dismiss:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
|
|
2576 |
box-shadow: none; }
|
|
2577 |
|
|
2578 |
.components-notice-list {
|
|
2579 |
min-width: 300px;
|
|
2580 |
z-index: 29; }
|
|
2581 |
|
|
2582 |
.components-panel {
|
|
2583 |
background: #fff;
|
|
2584 |
border: 1px solid #e2e4e7; }
|
|
2585 |
.components-panel > .components-panel__header:first-child,
|
|
2586 |
.components-panel > .components-panel__body:first-child {
|
|
2587 |
margin-top: -1px; }
|
|
2588 |
.components-panel > .components-panel__header:last-child,
|
|
2589 |
.components-panel > .components-panel__body:last-child {
|
|
2590 |
border-bottom-width: 0; }
|
|
2591 |
|
|
2592 |
.components-panel + .components-panel {
|
|
2593 |
margin-top: -1px; }
|
|
2594 |
|
|
2595 |
.components-panel__body {
|
|
2596 |
border-top: 1px solid #e2e4e7;
|
|
2597 |
border-bottom: 1px solid #e2e4e7; }
|
|
2598 |
.components-panel__body h3 {
|
|
2599 |
margin: 0 0 0.5em; }
|
|
2600 |
.components-panel__body.is-opened {
|
|
2601 |
padding: 16px; }
|
|
2602 |
.components-panel__body > .components-icon-button {
|
|
2603 |
color: #191e23; }
|
|
2604 |
|
|
2605 |
.components-panel__header {
|
|
2606 |
display: flex;
|
|
2607 |
justify-content: space-between;
|
|
2608 |
align-items: center;
|
|
2609 |
padding: 0 16px;
|
|
2610 |
height: 50px;
|
|
2611 |
border-top: 1px solid #e2e4e7;
|
|
2612 |
border-bottom: 1px solid #e2e4e7; }
|
|
2613 |
.components-panel__header h2 {
|
|
2614 |
margin: 0;
|
|
2615 |
font-size: inherit;
|
|
2616 |
color: inherit; }
|
|
2617 |
|
|
2618 |
.components-panel__body + .components-panel__body,
|
|
2619 |
.components-panel__body + .components-panel__header,
|
|
2620 |
.components-panel__header + .components-panel__body,
|
|
2621 |
.components-panel__header + .components-panel__header {
|
|
2622 |
margin-top: -1px; }
|
|
2623 |
|
|
2624 |
.components-panel__body > .components-panel__body-title {
|
|
2625 |
display: block;
|
|
2626 |
padding: 0;
|
|
2627 |
font-size: inherit;
|
|
2628 |
margin-top: 0;
|
|
2629 |
margin-bottom: 0;
|
|
2630 |
transition: 0.1s background ease-in-out; }
|
|
2631 |
|
|
2632 |
.components-panel__body.is-opened > .components-panel__body-title {
|
|
2633 |
margin: -16px;
|
|
2634 |
margin-bottom: 5px; }
|
|
2635 |
|
|
2636 |
.components-panel__body > .components-panel__body-title:hover,
|
|
2637 |
.edit-post-last-revision__panel > .components-icon-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
|
|
2638 |
background: #f3f4f5; }
|
|
2639 |
|
|
2640 |
.components-panel__body-toggle.components-button {
|
|
2641 |
position: relative;
|
|
2642 |
padding: 15px;
|
|
2643 |
outline: none;
|
|
2644 |
width: 100%;
|
|
2645 |
font-weight: 600;
|
|
2646 |
text-align: right;
|
|
2647 |
color: #191e23;
|
|
2648 |
border: none;
|
|
2649 |
box-shadow: none;
|
|
2650 |
transition: 0.1s background ease-in-out; }
|
|
2651 |
.components-panel__body-toggle.components-button:focus:not(:disabled):not([aria-disabled="true"]) {
|
|
2652 |
color: #191e23;
|
|
2653 |
border: none;
|
|
2654 |
box-shadow: none;
|
|
2655 |
outline-offset: -2px;
|
|
2656 |
outline: 1px dotted #555d66; }
|
|
2657 |
.components-panel__body-toggle.components-button .components-panel__arrow {
|
|
2658 |
position: absolute;
|
|
2659 |
left: 10px;
|
|
2660 |
top: 50%;
|
|
2661 |
transform: translateY(-50%);
|
|
2662 |
color: #191e23;
|
|
2663 |
fill: currentColor;
|
|
2664 |
transition: 0.1s color ease-in-out; }
|
|
2665 |
body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right {
|
|
2666 |
transform: scaleX(-1);
|
|
2667 |
-ms-filter: fliph;
|
|
2668 |
filter: FlipH;
|
|
2669 |
margin-top: -10px; }
|
|
2670 |
|
|
2671 |
.components-panel__icon {
|
|
2672 |
color: #555d66;
|
|
2673 |
margin: -2px 6px -2px 0; }
|
|
2674 |
|
|
2675 |
.components-panel__body-toggle-icon {
|
|
2676 |
margin-left: -5px; }
|
|
2677 |
|
|
2678 |
.components-panel__color-title {
|
|
2679 |
float: right;
|
|
2680 |
height: 19px; }
|
|
2681 |
|
|
2682 |
.components-panel__row {
|
|
2683 |
display: flex;
|
|
2684 |
justify-content: space-between;
|
|
2685 |
align-items: center;
|
|
2686 |
margin-top: 20px; }
|
|
2687 |
.components-panel__row select {
|
|
2688 |
min-width: 0; }
|
|
2689 |
.components-panel__row label {
|
|
2690 |
margin-left: 10px;
|
|
2691 |
flex-shrink: 0;
|
|
2692 |
max-width: 75%; }
|
|
2693 |
.components-panel__row:empty, .components-panel__row:first-of-type {
|
|
2694 |
margin-top: 0; }
|
|
2695 |
|
|
2696 |
.components-panel .circle-picker {
|
|
2697 |
padding-bottom: 20px; }
|
|
2698 |
|
|
2699 |
.components-placeholder {
|
|
2700 |
margin: 0;
|
|
2701 |
display: flex;
|
|
2702 |
flex-direction: column;
|
|
2703 |
align-items: center;
|
|
2704 |
justify-content: center;
|
|
2705 |
padding: 1em;
|
|
2706 |
min-height: 200px;
|
|
2707 |
width: 100%;
|
|
2708 |
text-align: center;
|
|
2709 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
2710 |
font-size: 13px;
|
|
2711 |
background: rgba(139, 139, 150, 0.1); }
|
|
2712 |
.is-dark-theme .components-placeholder {
|
|
2713 |
background: rgba(255, 255, 255, 0.15); }
|
|
2714 |
|
|
2715 |
.components-placeholder__label {
|
|
2716 |
display: flex;
|
|
2717 |
align-items: center;
|
|
2718 |
justify-content: center;
|
|
2719 |
font-weight: 600;
|
|
2720 |
margin-bottom: 1em; }
|
|
2721 |
.components-placeholder__label .dashicon,
|
|
2722 |
.components-placeholder__label .block-editor-block-icon {
|
|
2723 |
fill: currentColor;
|
|
2724 |
margin-left: 1ch; }
|
|
2725 |
|
|
2726 |
.components-placeholder__fieldset,
|
|
2727 |
.components-placeholder__fieldset form {
|
|
2728 |
display: flex;
|
|
2729 |
flex-direction: row;
|
|
2730 |
justify-content: center;
|
|
2731 |
width: 100%;
|
|
2732 |
max-width: 400px;
|
|
2733 |
flex-wrap: wrap;
|
|
2734 |
z-index: 1; }
|
|
2735 |
.components-placeholder__fieldset p,
|
|
2736 |
.components-placeholder__fieldset form p {
|
|
2737 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
2738 |
font-size: 13px; }
|
|
2739 |
|
|
2740 |
.components-placeholder__input {
|
|
2741 |
margin-left: 8px;
|
|
2742 |
flex: 1 1 auto; }
|
|
2743 |
|
|
2744 |
.components-placeholder__instructions {
|
|
2745 |
margin-bottom: 1em; }
|
|
2746 |
.components-popover {
|
|
2747 |
position: fixed;
|
|
2748 |
z-index: 1000000;
|
|
2749 |
left: 50%; }
|
|
2750 |
.components-popover.is-mobile {
|
|
2751 |
top: 0;
|
|
2752 |
left: 0;
|
|
2753 |
right: 0;
|
|
2754 |
bottom: 0; }
|
|
2755 |
.components-popover:not(.is-without-arrow):not(.is-mobile) {
|
|
2756 |
margin-left: 2px; }
|
|
2757 |
.components-popover:not(.is-without-arrow):not(.is-mobile)::before {
|
|
2758 |
border: 8px solid #e2e4e7; }
|
|
2759 |
.components-popover:not(.is-without-arrow):not(.is-mobile)::after {
|
|
2760 |
border: 8px solid #fff; }
|
|
2761 |
.components-popover:not(.is-without-arrow):not(.is-mobile)::before, .components-popover:not(.is-without-arrow):not(.is-mobile)::after {
|
|
2762 |
content: "";
|
|
2763 |
position: absolute;
|
|
2764 |
height: 0;
|
|
2765 |
width: 0;
|
|
2766 |
line-height: 0; }
|
|
2767 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-top {
|
|
2768 |
margin-top: -8px; }
|
|
2769 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-top::before {
|
|
2770 |
bottom: -8px; }
|
|
2771 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-top::after {
|
|
2772 |
bottom: -6px; }
|
|
2773 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-top::before, .components-popover:not(.is-without-arrow):not(.is-mobile).is-top::after {
|
|
2774 |
border-bottom: none;
|
|
2775 |
border-left-color: transparent;
|
|
2776 |
border-right-color: transparent;
|
|
2777 |
border-top-style: solid;
|
|
2778 |
margin-left: -10px; }
|
|
2779 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom {
|
|
2780 |
margin-top: 8px; }
|
|
2781 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom::before {
|
|
2782 |
top: -8px; }
|
|
2783 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom::after {
|
|
2784 |
top: -6px; }
|
|
2785 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom::before, .components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom::after {
|
|
2786 |
border-bottom-style: solid;
|
|
2787 |
border-left-color: transparent;
|
|
2788 |
border-right-color: transparent;
|
|
2789 |
border-top: none;
|
|
2790 |
margin-left: -10px; }
|
|
2791 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-left {
|
|
2792 |
margin-left: -8px; }
|
|
2793 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-left::before {
|
|
2794 |
right: -8px; }
|
|
2795 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-left::after {
|
|
2796 |
right: -6px; }
|
|
2797 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-left::before, .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-left::after {
|
|
2798 |
border-bottom-color: transparent;
|
|
2799 |
border-left-style: solid;
|
|
2800 |
border-right: none;
|
|
2801 |
border-top-color: transparent; }
|
|
2802 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-right {
|
|
2803 |
margin-left: 8px; }
|
|
2804 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-right::before {
|
|
2805 |
left: -8px; }
|
|
2806 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-right::after {
|
|
2807 |
left: -6px; }
|
|
2808 |
.components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-right::before, .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-right::after {
|
|
2809 |
border-bottom-color: transparent;
|
|
2810 |
border-left: none;
|
|
2811 |
border-right-style: solid;
|
|
2812 |
border-top-color: transparent; }
|
|
2813 |
.components-popover:not(.is-mobile).is-top {
|
|
2814 |
bottom: 100%; }
|
|
2815 |
.components-popover:not(.is-mobile).is-bottom {
|
|
2816 |
top: 100%;
|
|
2817 |
z-index: 99990; }
|
|
2818 |
.components-popover:not(.is-mobile).is-middle {
|
|
2819 |
align-items: center;
|
|
2820 |
display: flex; }
|
|
2821 |
|
|
2822 |
.components-popover__content {
|
|
2823 |
box-shadow: 0 3px 30px rgba(25, 30, 35, 0.1);
|
|
2824 |
border: 1px solid #e2e4e7;
|
|
2825 |
background: #fff;
|
|
2826 |
height: 100%; }
|
|
2827 |
.components-popover.is-mobile .components-popover__content {
|
|
2828 |
height: calc(100% - 50px);
|
|
2829 |
border-top: 0; }
|
|
2830 |
.components-popover:not(.is-mobile) .components-popover__content {
|
|
2831 |
position: absolute;
|
|
2832 |
height: auto;
|
|
2833 |
overflow-y: auto;
|
|
2834 |
min-width: 260px; }
|
|
2835 |
.components-popover:not(.is-mobile).is-top .components-popover__content {
|
|
2836 |
bottom: 100%; }
|
|
2837 |
.components-popover:not(.is-mobile).is-center .components-popover__content {
|
|
2838 |
left: 50%;
|
|
2839 |
transform: translateX(-50%); }
|
|
2840 |
.components-popover:not(.is-mobile).is-right .components-popover__content {
|
|
2841 |
position: absolute;
|
|
2842 |
left: 100%; }
|
|
2843 |
.components-popover:not(.is-mobile):not(.is-middle).is-right .components-popover__content {
|
|
2844 |
margin-left: -24px; }
|
|
2845 |
.components-popover:not(.is-mobile).is-left .components-popover__content {
|
|
2846 |
position: absolute;
|
|
2847 |
right: 100%; }
|
|
2848 |
.components-popover:not(.is-mobile):not(.is-middle).is-left .components-popover__content {
|
|
2849 |
margin-right: -24px; }
|
|
2850 |
|
|
2851 |
.components-popover__content > div {
|
|
2852 |
height: 100%; }
|
|
2853 |
|
|
2854 |
.components-popover__header {
|
|
2855 |
align-items: center;
|
|
2856 |
background: #fff;
|
|
2857 |
border: 1px solid #e2e4e7;
|
|
2858 |
display: flex;
|
|
2859 |
height: 50px;
|
|
2860 |
justify-content: space-between;
|
|
2861 |
padding: 0 8px 0 16px; }
|
|
2862 |
|
|
2863 |
.components-popover__header-title {
|
|
2864 |
overflow: hidden;
|
|
2865 |
text-overflow: ellipsis;
|
|
2866 |
white-space: nowrap;
|
|
2867 |
width: 100%; }
|
|
2868 |
|
|
2869 |
.components-popover__close.components-icon-button {
|
|
2870 |
z-index: 5; }
|
|
2871 |
.components-radio-control {
|
|
2872 |
display: flex;
|
|
2873 |
flex-direction: column; }
|
|
2874 |
|
|
2875 |
.components-radio-control__option:not(:last-child) {
|
|
2876 |
margin-bottom: 4px; }
|
|
2877 |
|
|
2878 |
.components-radio-control__input[type="radio"] {
|
|
2879 |
margin-top: 0;
|
|
2880 |
margin-left: 6px; }
|
|
2881 |
|
|
2882 |
.components-range-control .components-base-control__field {
|
|
2883 |
display: flex;
|
|
2884 |
justify-content: center;
|
|
2885 |
flex-wrap: wrap;
|
|
2886 |
align-items: center; }
|
|
2887 |
|
|
2888 |
.components-range-control .dashicon {
|
|
2889 |
flex-shrink: 0;
|
|
2890 |
margin-left: 10px; }
|
|
2891 |
|
|
2892 |
.components-range-control .components-base-control__label {
|
|
2893 |
width: 100%; }
|
|
2894 |
|
|
2895 |
.components-range-control .components-range-control__slider {
|
|
2896 |
margin-right: 0;
|
|
2897 |
flex: 1; }
|
|
2898 |
|
|
2899 |
.components-range-control__slider {
|
|
2900 |
width: 100%;
|
|
2901 |
margin-right: 8px;
|
|
2902 |
padding: 0;
|
|
2903 |
-webkit-appearance: none;
|
|
2904 |
background: transparent;
|
|
2905 |
/**
|
|
2906 |
* Thumb
|
|
2907 |
*/
|
|
2908 |
/**
|
|
2909 |
* Track
|
|
2910 |
*/ }
|
|
2911 |
.components-range-control__slider::-webkit-slider-thumb {
|
|
2912 |
-webkit-appearance: none;
|
|
2913 |
height: 18px;
|
|
2914 |
width: 18px;
|
|
2915 |
border-radius: 50%;
|
|
2916 |
cursor: pointer;
|
|
2917 |
background: #555d66;
|
|
2918 |
border: 4px solid transparent;
|
|
2919 |
background-clip: padding-box;
|
|
2920 |
box-sizing: border-box;
|
|
2921 |
margin-top: -7px; }
|
|
2922 |
.components-range-control__slider::-moz-range-thumb {
|
|
2923 |
height: 18px;
|
|
2924 |
width: 18px;
|
|
2925 |
border-radius: 50%;
|
|
2926 |
cursor: pointer;
|
|
2927 |
background: #555d66;
|
|
2928 |
border: 4px solid transparent;
|
|
2929 |
background-clip: padding-box;
|
|
2930 |
box-sizing: border-box; }
|
|
2931 |
.components-range-control__slider::-ms-thumb {
|
|
2932 |
height: 18px;
|
|
2933 |
width: 18px;
|
|
2934 |
border-radius: 50%;
|
|
2935 |
cursor: pointer;
|
|
2936 |
background: #555d66;
|
|
2937 |
border: 4px solid transparent;
|
|
2938 |
background-clip: padding-box;
|
|
2939 |
box-sizing: border-box;
|
|
2940 |
margin-top: 0;
|
|
2941 |
height: 14px;
|
|
2942 |
width: 14px;
|
|
2943 |
border: 2px solid transparent; }
|
|
2944 |
.components-range-control__slider:focus {
|
|
2945 |
outline: none; }
|
|
2946 |
.components-range-control__slider:focus::-webkit-slider-thumb {
|
|
2947 |
background-color: #fff;
|
|
2948 |
color: #191e23;
|
|
2949 |
box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
|
|
2950 |
outline: 2px solid transparent;
|
|
2951 |
outline-offset: -2px; }
|
|
2952 |
.components-range-control__slider:focus::-moz-range-thumb {
|
|
2953 |
background-color: #fff;
|
|
2954 |
color: #191e23;
|
|
2955 |
box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
|
|
2956 |
outline: 2px solid transparent;
|
|
2957 |
outline-offset: -2px; }
|
|
2958 |
.components-range-control__slider:focus::-ms-thumb {
|
|
2959 |
background-color: #fff;
|
|
2960 |
color: #191e23;
|
|
2961 |
box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
|
|
2962 |
outline: 2px solid transparent;
|
|
2963 |
outline-offset: -2px; }
|
|
2964 |
.components-range-control__slider::-webkit-slider-runnable-track {
|
|
2965 |
height: 3px;
|
|
2966 |
cursor: pointer;
|
|
2967 |
background: #e2e4e7;
|
|
2968 |
border-radius: 1.5px;
|
|
2969 |
margin-top: -4px; }
|
|
2970 |
.components-range-control__slider::-moz-range-track {
|
|
2971 |
height: 3px;
|
|
2972 |
cursor: pointer;
|
|
2973 |
background: #e2e4e7;
|
|
2974 |
border-radius: 1.5px; }
|
|
2975 |
.components-range-control__slider::-ms-track {
|
|
2976 |
margin-top: -4px;
|
|
2977 |
background: transparent;
|
|
2978 |
border-color: transparent;
|
|
2979 |
color: transparent;
|
|
2980 |
height: 3px;
|
|
2981 |
cursor: pointer;
|
|
2982 |
background: #e2e4e7;
|
|
2983 |
border-radius: 1.5px; }
|
|
2984 |
|
|
2985 |
.components-range-control__number {
|
|
2986 |
display: inline-block;
|
|
2987 |
margin-right: 8px;
|
|
2988 |
font-weight: 500;
|
|
2989 |
width: 54px; }
|
|
2990 |
|
|
2991 |
.components-resizable-box__handle {
|
|
2992 |
display: none;
|
|
2993 |
width: 24px;
|
|
2994 |
height: 24px;
|
|
2995 |
padding: 4px; }
|
|
2996 |
.components-resizable-box__container.is-selected .components-resizable-box__handle {
|
|
2997 |
display: block; }
|
|
2998 |
|
|
2999 |
.components-resizable-box__handle::before {
|
|
3000 |
display: block;
|
|
3001 |
content: "";
|
|
3002 |
width: 16px;
|
|
3003 |
height: 16px;
|
|
3004 |
border: 2px solid #fff;
|
|
3005 |
border-radius: 50%;
|
|
3006 |
background: #0085ba;
|
|
3007 |
cursor: inherit; }
|
|
3008 |
|
|
3009 |
body.admin-color-sunrise .components-resizable-box__handle::before {
|
|
3010 |
background: #d1864a; }
|
|
3011 |
|
|
3012 |
body.admin-color-ocean .components-resizable-box__handle::before {
|
|
3013 |
background: #a3b9a2; }
|
|
3014 |
|
|
3015 |
body.admin-color-midnight .components-resizable-box__handle::before {
|
|
3016 |
background: #e14d43; }
|
|
3017 |
|
|
3018 |
body.admin-color-ectoplasm .components-resizable-box__handle::before {
|
|
3019 |
background: #a7b656; }
|
|
3020 |
|
|
3021 |
body.admin-color-coffee .components-resizable-box__handle::before {
|
|
3022 |
background: #c2a68c; }
|
|
3023 |
|
|
3024 |
body.admin-color-blue .components-resizable-box__handle::before {
|
|
3025 |
background: #82b4cb; }
|
|
3026 |
|
|
3027 |
body.admin-color-light .components-resizable-box__handle::before {
|
|
3028 |
background: #0085ba; }
|
|
3029 |
.components-resizable-box__handle-right {
|
|
3030 |
top: calc(50% - 12px);
|
|
3031 |
right: calc(12px * -1); }
|
|
3032 |
|
|
3033 |
.components-resizable-box__handle-bottom {
|
|
3034 |
bottom: calc(12px * -1);
|
|
3035 |
left: calc(50% - 12px); }
|
|
3036 |
|
|
3037 |
.components-resizable-box__handle-left {
|
|
3038 |
top: calc(50% - 12px);
|
|
3039 |
left: calc(12px * -1); }
|
|
3040 |
.components-responsive-wrapper {
|
|
3041 |
position: relative;
|
|
3042 |
max-width: 100%; }
|
|
3043 |
|
|
3044 |
.components-responsive-wrapper__content {
|
|
3045 |
position: absolute;
|
|
3046 |
top: 0;
|
|
3047 |
left: 0;
|
|
3048 |
bottom: 0;
|
|
3049 |
right: 0;
|
|
3050 |
width: 100%;
|
|
3051 |
height: 100%; }
|
|
3052 |
|
|
3053 |
.components-sandbox {
|
|
3054 |
overflow: hidden; }
|
|
3055 |
|
|
3056 |
html.lockscroll,
|
|
3057 |
body.lockscroll {
|
|
3058 |
overflow: hidden; }
|
|
3059 |
|
|
3060 |
.components-select-control__input {
|
|
3061 |
background: #fff;
|
|
3062 |
height: 36px;
|
|
3063 |
line-height: 36px;
|
|
3064 |
margin: 1px;
|
|
3065 |
outline: 0;
|
|
3066 |
width: 100%;
|
|
3067 |
-webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; }
|
|
3068 |
@media (min-width: 782px) {
|
|
3069 |
.components-select-control__input {
|
|
3070 |
height: 28px;
|
|
3071 |
line-height: 28px; } }
|
|
3072 |
|
|
3073 |
@media (max-width: 782px) {
|
|
3074 |
.components-base-control .components-base-control__field .components-select-control__input {
|
|
3075 |
font-size: 16px; } }
|
|
3076 |
|
|
3077 |
.components-spinner {
|
|
3078 |
display: inline-block;
|
|
3079 |
background-color: #7e8993;
|
|
3080 |
width: 18px;
|
|
3081 |
height: 18px;
|
|
3082 |
opacity: 0.7;
|
|
3083 |
float: left;
|
|
3084 |
margin: 5px 11px 0;
|
|
3085 |
border-radius: 100%;
|
|
3086 |
position: relative; }
|
|
3087 |
.components-spinner::before {
|
|
3088 |
content: "";
|
|
3089 |
position: absolute;
|
|
3090 |
background-color: #fff;
|
|
3091 |
top: 3px;
|
|
3092 |
left: 3px;
|
|
3093 |
width: 4px;
|
|
3094 |
height: 4px;
|
|
3095 |
border-radius: 100%;
|
|
3096 |
transform-origin: 6px 6px;
|
|
3097 |
animation: components-spinner__animation 1s infinite linear; }
|
|
3098 |
|
|
3099 |
@keyframes components-spinner__animation {
|
|
3100 |
from {
|
|
3101 |
transform: rotate(0deg); }
|
|
3102 |
to {
|
|
3103 |
transform: rotate(-360deg); } }
|
|
3104 |
|
|
3105 |
.components-text-control__input {
|
|
3106 |
width: 100%;
|
|
3107 |
padding: 6px 8px; }
|
|
3108 |
|
|
3109 |
.components-textarea-control__input {
|
|
3110 |
width: 100%;
|
|
3111 |
padding: 6px 8px; }
|
|
3112 |
|
|
3113 |
.components-toggle-control .components-base-control__field {
|
|
3114 |
display: flex;
|
|
3115 |
margin-bottom: 12px; }
|
|
3116 |
.components-toggle-control .components-base-control__field .components-form-toggle {
|
|
3117 |
margin-left: 16px; }
|
|
3118 |
.components-toggle-control .components-base-control__field .components-toggle-control__label {
|
|
3119 |
display: block;
|
|
3120 |
margin-bottom: 4px; }
|
|
3121 |
|
|
3122 |
.components-toolbar {
|
|
3123 |
margin: 0;
|
|
3124 |
border: 1px solid #e2e4e7;
|
|
3125 |
background-color: #fff;
|
|
3126 |
display: flex;
|
|
3127 |
flex-shrink: 0; }
|
|
3128 |
|
|
3129 |
div.components-toolbar > div {
|
|
3130 |
display: block;
|
|
3131 |
margin: 0; }
|
|
3132 |
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
|
3133 |
div.components-toolbar > div {
|
|
3134 |
display: flex; } }
|
|
3135 |
|
|
3136 |
div.components-toolbar > div + div {
|
|
3137 |
margin-right: -3px; }
|
|
3138 |
div.components-toolbar > div + div.has-left-divider {
|
|
3139 |
margin-right: 6px;
|
|
3140 |
position: relative;
|
|
3141 |
overflow: visible; }
|
|
3142 |
div.components-toolbar > div + div.has-left-divider::before {
|
|
3143 |
display: inline-block;
|
|
3144 |
content: "";
|
|
3145 |
box-sizing: content-box;
|
|
3146 |
background-color: #e2e4e7;
|
|
3147 |
position: absolute;
|
|
3148 |
top: 8px;
|
|
3149 |
right: -3px;
|
|
3150 |
width: 1px;
|
|
3151 |
height: 20px; }
|
|
3152 |
|
|
3153 |
.components-toolbar__control.components-button {
|
|
3154 |
display: inline-flex;
|
|
3155 |
align-items: flex-end;
|
|
3156 |
margin: 0;
|
|
3157 |
padding: 3px;
|
|
3158 |
outline: none;
|
|
3159 |
cursor: pointer;
|
|
3160 |
position: relative;
|
|
3161 |
width: 36px;
|
|
3162 |
height: 36px; }
|
|
3163 |
.components-toolbar__control.components-button:active, .components-toolbar__control.components-button:not([aria-disabled="true"]):hover, .components-toolbar__control.components-button:not([aria-disabled="true"]):focus {
|
|
3164 |
outline: none;
|
|
3165 |
box-shadow: none;
|
|
3166 |
background: none;
|
|
3167 |
border: none; }
|
|
3168 |
.components-toolbar__control.components-button:disabled {
|
|
3169 |
cursor: default; }
|
|
3170 |
.components-toolbar__control.components-button > svg {
|
|
3171 |
padding: 5px;
|
|
3172 |
border-radius: 4px;
|
|
3173 |
height: 30px;
|
|
3174 |
width: 30px; }
|
|
3175 |
.components-toolbar__control.components-button[data-subscript] svg {
|
|
3176 |
padding: 5px 0 5px 10px; }
|
|
3177 |
.components-toolbar__control.components-button[data-subscript]::after {
|
|
3178 |
content: attr(data-subscript);
|
|
3179 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
3180 |
font-size: 13px;
|
|
3181 |
font-weight: 600;
|
|
3182 |
line-height: 12px;
|
|
3183 |
position: absolute;
|
|
3184 |
left: 8px;
|
|
3185 |
bottom: 10px; }
|
|
3186 |
.components-toolbar__control.components-button:not(:disabled):not([aria-disabled="true"]):hover {
|
|
3187 |
box-shadow: none; }
|
|
3188 |
.components-toolbar__control.components-button:not(:disabled).is-active > svg,
|
|
3189 |
.components-toolbar__control.components-button:not(:disabled):hover > svg {
|
|
3190 |
color: #555d66;
|
|
3191 |
box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff; }
|
|
3192 |
.components-toolbar__control.components-button:not(:disabled).is-active > svg {
|
|
3193 |
outline: none;
|
|
3194 |
color: #fff;
|
|
3195 |
box-shadow: none;
|
|
3196 |
background: #555d66; }
|
|
3197 |
.components-toolbar__control.components-button:not(:disabled).is-active[data-subscript]::after {
|
|
3198 |
color: #fff; }
|
|
3199 |
.components-toolbar__control.components-button:not(:disabled):focus > svg {
|
|
3200 |
box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff;
|
|
3201 |
outline: 2px solid transparent;
|
|
3202 |
outline-offset: -2px; }
|
|
3203 |
|
|
3204 |
.components-toolbar__control .dashicon {
|
|
3205 |
display: block; }
|
|
3206 |
|
|
3207 |
.components-tooltip.components-popover {
|
|
3208 |
z-index: 1000002; }
|
|
3209 |
.components-tooltip.components-popover::before {
|
|
3210 |
border-color: transparent; }
|
|
3211 |
.components-tooltip.components-popover.is-top::after {
|
|
3212 |
border-top-color: #191e23; }
|
|
3213 |
.components-tooltip.components-popover.is-bottom::after {
|
|
3214 |
border-bottom-color: #191e23; }
|
|
3215 |
|
|
3216 |
.components-tooltip .components-popover__content {
|
|
3217 |
padding: 4px 12px;
|
|
3218 |
background: #191e23;
|
|
3219 |
border-width: 0;
|
|
3220 |
color: #fff;
|
|
3221 |
white-space: nowrap;
|
|
3222 |
text-align: center; }
|
|
3223 |
|
|
3224 |
.components-tooltip:not(.is-mobile) .components-popover__content {
|
|
3225 |
min-width: 0; }
|
|
3226 |
|
|
3227 |
.components-tooltip__shortcut {
|
|
3228 |
display: block;
|
|
3229 |
color: #7e8993; }
|