@3deye-toolkit/react-event-search 0.0.1-alpha.24 → 0.0.1-alpha.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/react-event-search.css +146 -284
- package/dist/react-event-search.js +1 -1
- package/package.json +6 -6
- package/dist/react-event-search.d.ts +0 -965
|
@@ -10,12 +10,21 @@
|
|
|
10
10
|
-moz-user-select: none;
|
|
11
11
|
-ms-user-select: none;
|
|
12
12
|
user-select: none;
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
display: inline-flex;
|
|
14
|
+
justify-content: center;
|
|
15
|
+
align-items: center;
|
|
15
16
|
border-radius: 4px;
|
|
17
|
+
letter-spacing: .0107142857em;
|
|
18
|
+
font-weight: 500;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.x-3deye-button sup {
|
|
22
|
+
position: relative;
|
|
23
|
+
top: -0.5em;
|
|
24
|
+
left: 0.25em;
|
|
16
25
|
}
|
|
17
26
|
|
|
18
|
-
.x-3deye-button.fullwidth {
|
|
27
|
+
.x-3deye-button.x-3deye-button--fullwidth {
|
|
19
28
|
width: 100%;
|
|
20
29
|
}
|
|
21
30
|
|
|
@@ -38,50 +47,49 @@
|
|
|
38
47
|
opacity: 0.4;
|
|
39
48
|
}
|
|
40
49
|
|
|
41
|
-
.x-3deye-button.x-3deye-button--ok,
|
|
42
|
-
.x-3deye-button.x-3deye-button--cancel {
|
|
43
|
-
color: white;
|
|
44
|
-
text-transform: none;
|
|
45
|
-
min-width: 80px;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.x-3deye-button.x-3deye-button--ok.fullwidth,
|
|
49
|
-
.x-3deye-button.x-3deye-button--cancel.fullwidth {
|
|
50
|
-
width: calc(100% - 8px);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
50
|
.x-3deye-button:not(:disabled) {
|
|
54
51
|
cursor: pointer;
|
|
55
52
|
}
|
|
56
53
|
|
|
57
|
-
.x-3deye-button.x-3deye-button--
|
|
58
|
-
|
|
54
|
+
.x-3deye-button.x-3deye-button--filled,
|
|
55
|
+
.x-3deye-button.x-3deye-button--text {
|
|
56
|
+
min-width: 80px;
|
|
57
|
+
text-transform: capitalize;
|
|
58
|
+
font-family: 'Roboto', sans-serif;
|
|
59
|
+
font-size: 0.875rem;
|
|
60
|
+
font-weight: 500;
|
|
61
|
+
border-radius: 0.25rem;
|
|
62
|
+
padding: 0 1rem;
|
|
59
63
|
}
|
|
60
64
|
|
|
61
|
-
.x-3deye-button.x-3deye-button--
|
|
65
|
+
.x-3deye-button.x-3deye-button--filled {
|
|
66
|
+
background-color: #27b9a1;
|
|
67
|
+
color: white;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.x-3deye-button.x-3deye-button--filled:not(:disabled):hover {
|
|
62
71
|
background-color: #61beaf;
|
|
63
72
|
}
|
|
64
73
|
|
|
65
|
-
.x-3deye-button.x-3deye-button--
|
|
74
|
+
.x-3deye-button.x-3deye-button--filled:focus {
|
|
66
75
|
transition: box-shadow 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
67
76
|
box-shadow: 0 0 0 2px rgba(39, 185, 161, 0.33);
|
|
68
77
|
}
|
|
69
78
|
|
|
70
|
-
.x-3deye-button
|
|
71
|
-
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.x-3deye-button.x-3deye-button--cancel:not(:disabled):hover {
|
|
75
|
-
background-color: rgb(142, 122, 180);
|
|
79
|
+
.x-3deye-button canvas {
|
|
80
|
+
color: rgb(var(--surface-highlight-rgb));
|
|
76
81
|
}
|
|
77
82
|
|
|
78
|
-
.x-3deye-button
|
|
79
|
-
|
|
80
|
-
|
|
83
|
+
.x-3deye-button--overlay {
|
|
84
|
+
pointer-events: auto;
|
|
85
|
+
background: rgba(0, 0, 0, 0.5);
|
|
86
|
+
border: 2px solid rgba(255, 255, 255, 0.25);
|
|
87
|
+
color: white;
|
|
81
88
|
}
|
|
82
89
|
|
|
83
|
-
.x-3deye-button
|
|
84
|
-
|
|
90
|
+
.x-3deye-button.x-3deye-button--overlay:focus, .x-3deye-button.x-3deye-button--overlay:not(:disabled):hover {
|
|
91
|
+
background: rgba(0, 0, 0, 0.5);
|
|
92
|
+
border: 2px solid rgba(255, 255, 255, 0.5);
|
|
85
93
|
}
|
|
86
94
|
|
|
87
95
|
:root {
|
|
@@ -148,279 +156,133 @@
|
|
|
148
156
|
padding: 6px;
|
|
149
157
|
}
|
|
150
158
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
156
|
-
* found in the LICENSE file at https://github.com/material-components/material-components-web/blob/master/LICENSE
|
|
157
|
-
*/
|
|
158
|
-
@-webkit-keyframes mdc-slider-emphasize {
|
|
159
|
-
0% {
|
|
160
|
-
-webkit-animation-timing-function: ease-out;
|
|
161
|
-
animation-timing-function: ease-out;
|
|
162
|
-
}
|
|
163
|
-
50% {
|
|
164
|
-
-webkit-animation-timing-function: ease-in;
|
|
165
|
-
animation-timing-function: ease-in;
|
|
166
|
-
transform: scale(0.85);
|
|
167
|
-
}
|
|
168
|
-
100% {
|
|
169
|
-
transform: scale(0.571);
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
@keyframes mdc-slider-emphasize {
|
|
173
|
-
0% {
|
|
174
|
-
-webkit-animation-timing-function: ease-out;
|
|
175
|
-
animation-timing-function: ease-out;
|
|
176
|
-
}
|
|
177
|
-
50% {
|
|
178
|
-
-webkit-animation-timing-function: ease-in;
|
|
179
|
-
animation-timing-function: ease-in;
|
|
180
|
-
transform: scale(0.85);
|
|
181
|
-
}
|
|
182
|
-
100% {
|
|
183
|
-
transform: scale(0.571);
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
.mdc-slider {
|
|
187
|
-
position: relative;
|
|
188
|
-
width: 100%;
|
|
189
|
-
height: 48px;
|
|
190
|
-
cursor: pointer;
|
|
191
|
-
touch-action: pan-x;
|
|
192
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
193
|
-
}
|
|
194
|
-
.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track {
|
|
195
|
-
background-color: #018786;
|
|
196
|
-
/* @alternate */
|
|
197
|
-
background-color: var(--mdc-theme-secondary, #018786);
|
|
198
|
-
}
|
|
199
|
-
.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track-container::after {
|
|
200
|
-
background-color: #018786;
|
|
201
|
-
/* @alternate */
|
|
202
|
-
background-color: var(--mdc-theme-secondary, #018786);
|
|
203
|
-
opacity: 0.26;
|
|
204
|
-
}
|
|
205
|
-
.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track-marker-container {
|
|
206
|
-
background-color: #018786;
|
|
207
|
-
/* @alternate */
|
|
208
|
-
background-color: var(--mdc-theme-secondary, #018786);
|
|
209
|
-
}
|
|
210
|
-
.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__thumb {
|
|
211
|
-
fill: #018786;
|
|
212
|
-
/* @alternate */
|
|
213
|
-
fill: var(--mdc-theme-secondary, #018786);
|
|
214
|
-
stroke: #018786;
|
|
215
|
-
/* @alternate */
|
|
216
|
-
stroke: var(--mdc-theme-secondary, #018786);
|
|
217
|
-
}
|
|
218
|
-
.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__focus-ring {
|
|
219
|
-
background-color: #018786;
|
|
220
|
-
/* @alternate */
|
|
221
|
-
background-color: var(--mdc-theme-secondary, #018786);
|
|
222
|
-
}
|
|
223
|
-
.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__pin {
|
|
224
|
-
background-color: #018786;
|
|
225
|
-
/* @alternate */
|
|
226
|
-
background-color: var(--mdc-theme-secondary, #018786);
|
|
227
|
-
}
|
|
228
|
-
.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__pin {
|
|
229
|
-
color: white;
|
|
230
|
-
/* @alternate */
|
|
231
|
-
color: var(--mdc-theme-text-primary-on-dark, white);
|
|
232
|
-
}
|
|
233
|
-
.mdc-slider--disabled {
|
|
234
|
-
cursor: auto;
|
|
235
|
-
}
|
|
236
|
-
.mdc-slider--disabled .mdc-slider__track {
|
|
237
|
-
background-color: #9a9a9a;
|
|
238
|
-
}
|
|
239
|
-
.mdc-slider--disabled .mdc-slider__track-container::after {
|
|
240
|
-
background-color: #9a9a9a;
|
|
241
|
-
opacity: 0.26;
|
|
242
|
-
}
|
|
243
|
-
.mdc-slider--disabled .mdc-slider__track-marker-container {
|
|
244
|
-
background-color: #9a9a9a;
|
|
245
|
-
}
|
|
246
|
-
.mdc-slider--disabled .mdc-slider__thumb {
|
|
247
|
-
fill: #9a9a9a;
|
|
248
|
-
stroke: #9a9a9a;
|
|
249
|
-
}
|
|
250
|
-
.mdc-slider--disabled .mdc-slider__thumb {
|
|
251
|
-
/* @alternate */
|
|
252
|
-
stroke: white;
|
|
253
|
-
stroke: var(--mdc-slider-bg-color-behind-component, white);
|
|
254
|
-
}
|
|
255
|
-
.mdc-slider:focus {
|
|
256
|
-
outline: none;
|
|
257
|
-
}
|
|
258
|
-
.mdc-slider__track-container {
|
|
259
|
-
position: absolute;
|
|
260
|
-
top: 50%;
|
|
261
|
-
width: 100%;
|
|
262
|
-
height: 2px;
|
|
263
|
-
overflow: hidden;
|
|
264
|
-
}
|
|
265
|
-
.mdc-slider__track-container::after {
|
|
266
|
-
position: absolute;
|
|
267
|
-
top: 0;
|
|
268
|
-
left: 0;
|
|
269
|
-
display: block;
|
|
270
|
-
width: 100%;
|
|
271
|
-
height: 100%;
|
|
272
|
-
content: "";
|
|
273
|
-
}
|
|
274
|
-
.mdc-slider__track {
|
|
275
|
-
position: absolute;
|
|
276
|
-
width: 100%;
|
|
277
|
-
height: 100%;
|
|
278
|
-
transform-origin: left top;
|
|
279
|
-
will-change: transform;
|
|
280
|
-
}
|
|
281
|
-
.mdc-slider[dir=rtl] .mdc-slider__track, [dir=rtl] .mdc-slider .mdc-slider__track {
|
|
282
|
-
transform-origin: right top;
|
|
159
|
+
.x-3deye-slider {
|
|
160
|
+
position: relative;
|
|
161
|
+
display: flex;
|
|
162
|
+
align-items: center;
|
|
283
163
|
}
|
|
284
164
|
|
|
285
|
-
.
|
|
286
|
-
|
|
287
|
-
margin-right: 0;
|
|
288
|
-
margin-left: -1px;
|
|
289
|
-
visibility: hidden;
|
|
290
|
-
}
|
|
291
|
-
.mdc-slider[dir=rtl] .mdc-slider__track-marker-container, [dir=rtl] .mdc-slider .mdc-slider__track-marker-container {
|
|
292
|
-
margin-right: -1px;
|
|
293
|
-
margin-left: 0;
|
|
165
|
+
.x-3deye-slider:focus-visible {
|
|
166
|
+
outline: none;
|
|
294
167
|
}
|
|
295
168
|
|
|
296
|
-
.
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
height: 2px;
|
|
300
|
-
content: "";
|
|
169
|
+
.x-3deye-slider.horizontal {
|
|
170
|
+
width: 100%;
|
|
171
|
+
height: 20px;
|
|
301
172
|
}
|
|
302
|
-
|
|
303
|
-
|
|
173
|
+
|
|
174
|
+
.x-3deye-slider.vertical {
|
|
175
|
+
width: 20px;
|
|
176
|
+
height: 100%;
|
|
177
|
+
flex-direction: column;
|
|
304
178
|
}
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
179
|
+
|
|
180
|
+
.x-3deye-slider__track {
|
|
181
|
+
background: var(--surface-inverse, gainsboro);
|
|
182
|
+
position: relative;
|
|
183
|
+
flex: 1;
|
|
310
184
|
}
|
|
311
|
-
|
|
312
|
-
|
|
185
|
+
|
|
186
|
+
.x-3deye-slider__bar {
|
|
187
|
+
background-color: var(--primary-color, #0067ac);
|
|
188
|
+
position: absolute;
|
|
313
189
|
}
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
left: 0;
|
|
318
|
-
width: 21px;
|
|
319
|
-
height: 100%;
|
|
320
|
-
-webkit-user-select: none;
|
|
321
|
-
-moz-user-select: none;
|
|
322
|
-
-ms-user-select: none;
|
|
323
|
-
user-select: none;
|
|
324
|
-
will-change: transform;
|
|
190
|
+
|
|
191
|
+
.x-3deye-slider.disabled .x-3deye-slider__bar {
|
|
192
|
+
background-color: rgb(165, 165, 165);
|
|
325
193
|
}
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
stroke-width: 3.5;
|
|
332
|
-
transition: transform 100ms ease-out, fill 100ms ease-out, stroke 100ms ease-out;
|
|
194
|
+
|
|
195
|
+
.x-3deye-slider.horizontal .x-3deye-slider__bar {
|
|
196
|
+
top: 0;
|
|
197
|
+
bottom: 0;
|
|
198
|
+
left: 0;
|
|
333
199
|
}
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
transition: transform 266.67ms ease-out, opacity 266.67ms ease-out, background-color 266.67ms ease-out;
|
|
200
|
+
|
|
201
|
+
.x-3deye-slider.vertical .x-3deye-slider__bar {
|
|
202
|
+
bottom: 0;
|
|
203
|
+
left: 0;
|
|
204
|
+
right: 0;
|
|
340
205
|
}
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
top: 0;
|
|
345
|
-
left: 0;
|
|
346
|
-
align-items: center;
|
|
347
|
-
justify-content: center;
|
|
348
|
-
width: 26px;
|
|
349
|
-
height: 26px;
|
|
350
|
-
margin-top: -2px;
|
|
351
|
-
margin-left: -2px;
|
|
352
|
-
transform: rotate(-45deg) scale(0) translate(0, 0);
|
|
353
|
-
border-radius: 50% 50% 50% 0%;
|
|
354
|
-
z-index: 1;
|
|
355
|
-
transition: transform 100ms ease-out;
|
|
356
|
-
}
|
|
357
|
-
.mdc-slider__pin-value-marker {
|
|
358
|
-
-moz-osx-font-smoothing: grayscale;
|
|
359
|
-
-webkit-font-smoothing: antialiased;
|
|
360
|
-
font-family: Roboto, sans-serif;
|
|
361
|
-
/* @alternate */
|
|
362
|
-
font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
|
|
363
|
-
font-size: 0.875rem;
|
|
364
|
-
/* @alternate */
|
|
365
|
-
font-size: var(--mdc-typography-body2-font-size, 0.875rem);
|
|
366
|
-
line-height: 1.25rem;
|
|
367
|
-
/* @alternate */
|
|
368
|
-
line-height: var(--mdc-typography-body2-line-height, 1.25rem);
|
|
369
|
-
font-weight: 400;
|
|
370
|
-
/* @alternate */
|
|
371
|
-
font-weight: var(--mdc-typography-body2-font-weight, 400);
|
|
372
|
-
letter-spacing: 0.0178571429em;
|
|
373
|
-
/* @alternate */
|
|
374
|
-
letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
|
|
375
|
-
text-decoration: inherit;
|
|
376
|
-
/* @alternate */
|
|
377
|
-
-webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
|
|
378
|
-
text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
|
|
379
|
-
text-transform: inherit;
|
|
380
|
-
/* @alternate */
|
|
381
|
-
text-transform: var(--mdc-typography-body2-text-transform, inherit);
|
|
382
|
-
transform: rotate(45deg);
|
|
206
|
+
|
|
207
|
+
.x-3deye-slider.horizontal .x-3deye-slider__track {
|
|
208
|
+
height: 3px;
|
|
383
209
|
}
|
|
384
210
|
|
|
385
|
-
.
|
|
386
|
-
|
|
211
|
+
.x-3deye-slider.vertical .x-3deye-slider__track {
|
|
212
|
+
width: 3px;
|
|
387
213
|
}
|
|
388
214
|
|
|
389
|
-
.
|
|
390
|
-
|
|
391
|
-
|
|
215
|
+
.x-3deye-slider__thumb {
|
|
216
|
+
will-change: transform box-shadow;
|
|
217
|
+
background: white;
|
|
218
|
+
box-shadow: 0 0 0 6px rgba(0, 100, 255, 0), 0 0 0 1px rgba(0, 0, 0, 0.1) inset, 1px 1px 2px 0 rgba(0, 0, 0, 0.25);
|
|
219
|
+
width: 20px;
|
|
220
|
+
height: 20px;
|
|
221
|
+
border-radius: 50%;
|
|
222
|
+
transition: box-shadow 150ms cubic-bezier(0.45, 0.05, 0.55, 0.95) 0ms;
|
|
392
223
|
}
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
224
|
+
|
|
225
|
+
.x-3deye-slider:not(.disabled) .x-3deye-slider__thumb:hover,
|
|
226
|
+
.x-3deye-slider:focus .x-3deye-slider__thumb {
|
|
227
|
+
box-shadow: 0 0 0 6px rgba(var(--surface-highlight-rgb, 0, 100, 255), 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1) inset,
|
|
228
|
+
1px 1px 2px 0 rgba(0, 0, 0, 0.25);
|
|
396
229
|
}
|
|
397
230
|
|
|
398
|
-
.
|
|
399
|
-
|
|
231
|
+
.x-3deye-slider:focus .x-3deye-slider__thumb.active {
|
|
232
|
+
box-shadow: 0 0 0 6px rgba(var(--surface-highlight-rgb, 0, 100, 255), 0.2), 0 0 0 1px rgba(0, 0, 0, 0.1) inset,
|
|
233
|
+
1px 1px 2px 0 rgba(0, 0, 0, 0.25);
|
|
400
234
|
}
|
|
401
235
|
|
|
402
|
-
.
|
|
403
|
-
|
|
404
|
-
.mdc-slider:focus:not(.mdc-slider--active) .mdc-slider__thumb-container,
|
|
405
|
-
.mdc-slider:focus:not(.mdc-slider--active) .mdc-slider__track {
|
|
406
|
-
transition: transform 80ms ease;
|
|
236
|
+
.x-3deye-slider.horizontal .x-3deye-slider__thumb {
|
|
237
|
+
margin-left: -10px;
|
|
407
238
|
}
|
|
408
239
|
|
|
409
|
-
.
|
|
410
|
-
|
|
240
|
+
.x-3deye-slider.vertical .x-3deye-slider__thumb {
|
|
241
|
+
margin-bottom: -10px;
|
|
411
242
|
}
|
|
412
|
-
|
|
413
|
-
|
|
243
|
+
|
|
244
|
+
.x-3deye-slider__label {
|
|
245
|
+
pointer-events: none;
|
|
246
|
+
touch-action: none;
|
|
247
|
+
will-change: transform;
|
|
248
|
+
transform: translate(-50%, -100%) scale(0);
|
|
249
|
+
background: var(--primary-color, #0067ac);
|
|
250
|
+
bottom: 50%;
|
|
251
|
+
left: 50%;
|
|
252
|
+
color: var(--on-primary-color, white);
|
|
253
|
+
font-size: 0.75rem;
|
|
254
|
+
border-radius: 4px;
|
|
255
|
+
width: -webkit-fit-content;
|
|
256
|
+
width: -moz-fit-content;
|
|
257
|
+
width: fit-content;
|
|
258
|
+
min-width: 24px;
|
|
259
|
+
padding: 4px 8px;
|
|
260
|
+
position: relative;
|
|
261
|
+
transition: transform 150ms cubic-bezier(0.45, 0.05, 0.55, 0.95) 0ms;
|
|
262
|
+
transform-origin: center bottom;
|
|
414
263
|
}
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
264
|
+
|
|
265
|
+
.x-3deye-slider__label.open,
|
|
266
|
+
.x-3deye-slider:not(.disabled) .x-3deye-slider__thumb:hover .x-3deye-slider__label,
|
|
267
|
+
.x-3deye-slider:focus .x-3deye-slider__label {
|
|
268
|
+
transform: translate(-50%, -100%) scale(1);
|
|
418
269
|
}
|
|
419
|
-
|
|
420
|
-
|
|
270
|
+
|
|
271
|
+
.x-3deye-slider__label::before {
|
|
272
|
+
content: '';
|
|
273
|
+
display: block;
|
|
274
|
+
position: absolute;
|
|
275
|
+
top: 100%;
|
|
276
|
+
left: calc(50% - 5px);
|
|
277
|
+
width: 0;
|
|
278
|
+
height: 0;
|
|
279
|
+
border-left: 5px solid transparent;
|
|
280
|
+
border-right: 5px solid transparent;
|
|
281
|
+
border-top: 5px solid var(--primary-color, #0067ac);
|
|
421
282
|
}
|
|
283
|
+
|
|
422
284
|
.preloader-container {
|
|
423
|
-
color: var(--
|
|
285
|
+
color: var(--on-container);
|
|
424
286
|
flex: 1;
|
|
425
287
|
display: flex;
|
|
426
288
|
justify-content: center;
|
|
@@ -1268,7 +1130,7 @@
|
|
|
1268
1130
|
.react-datepicker__quarter-text--keyboard-selected,
|
|
1269
1131
|
.react-datepicker__year-text--keyboard-selected {
|
|
1270
1132
|
border-radius: 0.3rem;
|
|
1271
|
-
background-color: #
|
|
1133
|
+
background-color: #2579ba;
|
|
1272
1134
|
color: #fff;
|
|
1273
1135
|
}
|
|
1274
1136
|
.react-datepicker__day--keyboard-selected:hover,
|
|
@@ -1530,14 +1392,14 @@
|
|
|
1530
1392
|
|
|
1531
1393
|
.x-3deye-button-group > .x-3deye-button {
|
|
1532
1394
|
flex: 1;
|
|
1533
|
-
color: var(--secondary-text);
|
|
1534
1395
|
height: 35px;
|
|
1535
1396
|
font-size: 11px;
|
|
1536
1397
|
}
|
|
1537
1398
|
|
|
1538
|
-
.x-3deye-button-group > .x-3deye-button.button-selected
|
|
1539
|
-
|
|
1540
|
-
|
|
1399
|
+
.x-3deye-button-group > .x-3deye-button.button-selected,
|
|
1400
|
+
.x-3deye-button-group > .x-3deye-button.button-selected:hover {
|
|
1401
|
+
color: var(--on-container);
|
|
1402
|
+
background-color: var(--container);
|
|
1541
1403
|
}
|
|
1542
1404
|
|
|
1543
1405
|
.x-3deye-button-group > .x-3deye-button + .x-3deye-button {
|
|
@@ -1545,15 +1407,15 @@
|
|
|
1545
1407
|
}
|
|
1546
1408
|
|
|
1547
1409
|
.x-3deye-button-group > .x-3deye-button:hover {
|
|
1548
|
-
color: var(--
|
|
1410
|
+
color: var(--on-container);
|
|
1549
1411
|
}
|
|
1550
1412
|
|
|
1551
1413
|
.x-3deye-button-group > .x-3deye-button.button-unselected {
|
|
1552
|
-
color: var(--
|
|
1414
|
+
color: var(--on-surface);
|
|
1553
1415
|
}
|
|
1554
1416
|
|
|
1555
1417
|
.x-3deye-button-group > .x-3deye-button.button-selected canvas {
|
|
1556
|
-
color: var(--
|
|
1418
|
+
color: var(--container);
|
|
1557
1419
|
}
|
|
1558
1420
|
|
|
1559
1421
|
.x-3deye-popover {
|