@3deye-toolkit/react-event-list 0.0.4 → 0.0.5
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-list.css +1 -951
- package/dist/react-event-list.d.ts +19 -20
- package/dist/react-event-list.js +1 -1
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +2 -3
|
@@ -1,951 +1 @@
|
|
|
1
|
-
.x-3deye-popover-container.popover-datetimepicker,
|
|
2
|
-
.x-3deye-popover-container.popover-datepicker {
|
|
3
|
-
background: white;
|
|
4
|
-
color: black;
|
|
5
|
-
padding: 1rem;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.x-3deye-popover-container.popover-datetimepicker .tip,
|
|
9
|
-
.x-3deye-popover-container.popover-datepicker .tip {
|
|
10
|
-
--tip-background: white;
|
|
11
|
-
--tip-border: transparent;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.popover-datetimepicker {
|
|
15
|
-
--surface-inverse: #e1e1e1;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.popover-datepicker.x-3deye-popover-body,
|
|
19
|
-
.popover-datetimepicker.x-3deye-popover-body {
|
|
20
|
-
display: flex;
|
|
21
|
-
flex-direction: column;
|
|
22
|
-
gap: 10px;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.events-panel-datepicker {
|
|
26
|
-
display: flex;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.events-panel-datepicker > div {
|
|
30
|
-
flex: 1;
|
|
31
|
-
display: flex;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.events-panel-datepicker .date-button {
|
|
35
|
-
padding: 4px 8px;
|
|
36
|
-
display: flex;
|
|
37
|
-
flex-direction: column;
|
|
38
|
-
justify-content: center;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.events-panel-datepicker .date-button label {
|
|
42
|
-
font-size: 0.75em;
|
|
43
|
-
opacity: 0.5;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.x-3deye-button {
|
|
47
|
-
color: inherit;
|
|
48
|
-
background: none;
|
|
49
|
-
border: none;
|
|
50
|
-
position: relative;
|
|
51
|
-
padding: 0 8px;
|
|
52
|
-
height: 32px;
|
|
53
|
-
-webkit-user-select: none;
|
|
54
|
-
-moz-user-select: none;
|
|
55
|
-
user-select: none;
|
|
56
|
-
display: inline-flex;
|
|
57
|
-
justify-content: center;
|
|
58
|
-
align-items: center;
|
|
59
|
-
border-radius: 4px;
|
|
60
|
-
letter-spacing: 0.0107142857em;
|
|
61
|
-
font-weight: 500;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.x-3deye-button sup {
|
|
65
|
-
position: relative;
|
|
66
|
-
top: -0.5em;
|
|
67
|
-
left: 0.25em;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.x-3deye-button.x-3deye-button--fullwidth {
|
|
71
|
-
width: 100%;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.x-3deye-button:focus,
|
|
75
|
-
.x-3deye-button.x-3deye-button:not(:disabled):hover {
|
|
76
|
-
background-color: rgba(var(--surface-highlight-rgb), 0.1);
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.x-3deye-button--icon {
|
|
80
|
-
border-radius: 16px;
|
|
81
|
-
padding: 4px;
|
|
82
|
-
width: 32px;
|
|
83
|
-
height: 32px;
|
|
84
|
-
display: inline-flex;
|
|
85
|
-
align-items: center;
|
|
86
|
-
justify-content: center;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.x-3deye-button--action .icon {
|
|
90
|
-
opacity: 0.5;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.x-3deye-button--action:hover .icon {
|
|
94
|
-
opacity: 1;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.x-3deye-button:disabled {
|
|
98
|
-
opacity: 0.4;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.x-3deye-button:not(:disabled) {
|
|
102
|
-
cursor: pointer;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.x-3deye-button.x-3deye-button--filled,
|
|
106
|
-
.x-3deye-button.x-3deye-button--text {
|
|
107
|
-
min-width: 80px;
|
|
108
|
-
text-transform: capitalize;
|
|
109
|
-
font-family: 'Roboto', sans-serif;
|
|
110
|
-
font-size: 0.875rem;
|
|
111
|
-
font-weight: 500;
|
|
112
|
-
border-radius: 0.25rem;
|
|
113
|
-
padding: 0 1rem;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.x-3deye-button.x-3deye-button--filled {
|
|
117
|
-
background-color: rgb(39, 185, 161);
|
|
118
|
-
color: white;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.x-3deye-button.x-3deye-button--filled:not(:disabled):hover {
|
|
122
|
-
background-color: rgb(34, 163, 142);
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
.x-3deye-button.x-3deye-button--filled:focus {
|
|
126
|
-
transition: box-shadow 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
127
|
-
box-shadow: 0 0 0 2px rgba(39, 185, 161, 0.33);
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.x-3deye-button canvas {
|
|
131
|
-
color: rgb(var(--surface-highlight-rgb));
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.x-3deye-button--overlay {
|
|
135
|
-
pointer-events: auto;
|
|
136
|
-
background: rgba(0, 0, 0, 0.5);
|
|
137
|
-
border: 2px solid rgba(255, 255, 255, 0.25);
|
|
138
|
-
color: white;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.x-3deye-button.x-3deye-button--overlay:focus,
|
|
142
|
-
.x-3deye-button.x-3deye-button--overlay:not(:disabled):hover {
|
|
143
|
-
background: rgba(0, 0, 0, 0.5);
|
|
144
|
-
border: 2px solid rgba(255, 255, 255, 0.5);
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.x-3deye-button.x-3deye-button--overlay.x-3deye-button--overlay-danger:not(
|
|
148
|
-
:disabled
|
|
149
|
-
),
|
|
150
|
-
.x-3deye-button.x-3deye-button--overlay.x-3deye-button--overlay-danger:not(
|
|
151
|
-
:disabled
|
|
152
|
-
):hover {
|
|
153
|
-
background-color: rgba(156, 51, 49, 0.5);
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.x-3deye-tooltip {
|
|
157
|
-
background: rgb(0 0 0 / 0.9);
|
|
158
|
-
color: white;
|
|
159
|
-
border: none;
|
|
160
|
-
border-radius: 4px;
|
|
161
|
-
padding: 0.5em 1em;
|
|
162
|
-
font-size: 12px;
|
|
163
|
-
border: rgb(255 255 255 / 0.15) 1px solid;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
.x-3deye-popover-container {
|
|
167
|
-
background: #222;
|
|
168
|
-
box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgb(0 0 0 / 0.1),
|
|
169
|
-
inset 0 0 0 1px rgb(255 255 255 /0.05);
|
|
170
|
-
color: white;
|
|
171
|
-
border-radius: 6px;
|
|
172
|
-
padding: 8px;
|
|
173
|
-
text-align: left;
|
|
174
|
-
animation: slide-in 0.15s ease-in;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
@media (prefers-reduced-motion: reduce) {
|
|
178
|
-
.x-3deye-popover-container {
|
|
179
|
-
animation: none;
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.x-3deye-popover-container .tip {
|
|
184
|
-
--tip-background: #222;
|
|
185
|
-
--tip-border: rgb(255 255 255 /0.05);
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
.x-3deye-datetimepicker {
|
|
189
|
-
width: -moz-max-content;
|
|
190
|
-
width: max-content;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
.x-3deye-button.button-date {
|
|
194
|
-
text-transform: none;
|
|
195
|
-
font-family: 'Roboto Mono', monospace;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
.x-3deye-button.button-date:hover {
|
|
199
|
-
text-decoration: underline;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.x-3deye-timepicker {
|
|
203
|
-
height: 260px;
|
|
204
|
-
overflow: hidden;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
.x-3deye-timepicker__column {
|
|
208
|
-
text-align: center;
|
|
209
|
-
overflow: hidden;
|
|
210
|
-
overflow-x: hidden;
|
|
211
|
-
width: 60px;
|
|
212
|
-
font-size: 0.85rem;
|
|
213
|
-
flex: 1;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
.x-3deye-timepicker--alt .x-3deye-timepicker__column {
|
|
217
|
-
height: 100%;
|
|
218
|
-
white-space: nowrap;
|
|
219
|
-
width: -moz-max-content;
|
|
220
|
-
width: max-content;
|
|
221
|
-
overflow-y: scroll;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
.x-3deye-timepicker--alt .x-3deye-timepicker__column > div {
|
|
225
|
-
width: -moz-max-content;
|
|
226
|
-
width: max-content;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
.x-3deye-timepicker__column:hover {
|
|
230
|
-
overflow-y: scroll;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
.x-3deye-timepicker__value {
|
|
234
|
-
border-radius: 0.25rem;
|
|
235
|
-
height: 30px;
|
|
236
|
-
line-height: 30px;
|
|
237
|
-
padding: 0 10px;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
.x-3deye-datepicker__day {
|
|
241
|
-
font-weight: 500;
|
|
242
|
-
width: 1.75rem;
|
|
243
|
-
height: 1.75rem;
|
|
244
|
-
display: flex;
|
|
245
|
-
justify-content: center;
|
|
246
|
-
align-items: center;
|
|
247
|
-
border-radius: 0.25rem;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
.x-3deye-datepicker__day:not(.x-3deye-datepicker__day--selected):not(
|
|
251
|
-
.x-3deye-datepicker__day--disabled
|
|
252
|
-
):hover {
|
|
253
|
-
background-color: rgba(0, 0, 0, 0.05);
|
|
254
|
-
color: currentColor;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
.x-3deye-datepicker__day--next-month,
|
|
258
|
-
.x-3deye-datepicker__day--previous-month {
|
|
259
|
-
color: oklch(0.7 0 0);
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.x-3deye-datepicker__day--disabled {
|
|
263
|
-
color: oklch(0.9 0 0);
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
.x-3deye-datepicker__day--selected {
|
|
267
|
-
background-color: #0067ac;
|
|
268
|
-
color: white;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
.x-3deye-datepicker__day--today {
|
|
272
|
-
font-weight: 700;
|
|
273
|
-
border: 2px solid #0067ac66;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
.x-3deye-timepicker__column > div {
|
|
277
|
-
height: 40px;
|
|
278
|
-
width: 60px;
|
|
279
|
-
padding: 5px 10px;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
.x-3deye-timepicker__column > div:hover .x-3deye-timepicker__value {
|
|
283
|
-
background-color: rgba(0, 0, 0, 0.05);
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
.x-3deye-timepicker__column > div.selected .x-3deye-timepicker__value {
|
|
287
|
-
background-color: #0067ac;
|
|
288
|
-
color: white;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
.x-3deye-datepicker__button--previous-month,
|
|
292
|
-
.x-3deye-datepicker__button--next-month {
|
|
293
|
-
padding: 0;
|
|
294
|
-
|
|
295
|
-
opacity: 0.3;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
.x-3deye-datepicker__button--previous-month:disabled, .x-3deye-datepicker__button--next-month:disabled {
|
|
299
|
-
opacity: 0.1;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
.x-3deye-datepicker__button--previous-month:hover:not(:disabled), .x-3deye-datepicker__button--next-month:hover:not(:disabled) {
|
|
303
|
-
opacity: 1;
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
.segmented-control-wrapper {
|
|
307
|
-
display: inline-grid;
|
|
308
|
-
border-radius: 6px;
|
|
309
|
-
background-color: var(--surface-inverse);
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
.segmented-control {
|
|
313
|
-
display: grid;
|
|
314
|
-
margin: 2px;
|
|
315
|
-
position: relative;
|
|
316
|
-
grid-auto-flow: column;
|
|
317
|
-
grid-auto-columns: 1fr;
|
|
318
|
-
--indicator-offset: 0%;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
.segmented-control-indicator {
|
|
322
|
-
position: absolute;
|
|
323
|
-
height: 100%;
|
|
324
|
-
pointer-events: none;
|
|
325
|
-
transform: translateX(var(--indicator-offset));
|
|
326
|
-
transition: 0.2s ease-in-out;
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
.segmented-control-indicator-inner {
|
|
330
|
-
box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
|
|
331
|
-
border-radius: 6px;
|
|
332
|
-
background: #fff;
|
|
333
|
-
transition: 0.2s;
|
|
334
|
-
transform: scale(1);
|
|
335
|
-
position: absolute;
|
|
336
|
-
inset: 0;
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
.segmented-control-indicator.active .segmented-control-indicator-inner {
|
|
340
|
-
transform: scale(0.95);
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
.segmented-control-button {
|
|
344
|
-
font-family: inherit;
|
|
345
|
-
min-height: 24px;
|
|
346
|
-
margin: 2px;
|
|
347
|
-
background: none;
|
|
348
|
-
border: none;
|
|
349
|
-
color: currentColor;
|
|
350
|
-
-webkit-user-select: none;
|
|
351
|
-
-moz-user-select: none;
|
|
352
|
-
user-select: none;
|
|
353
|
-
text-overflow: ellipsis;
|
|
354
|
-
overflow: hidden;
|
|
355
|
-
z-index: 1;
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
.segmented-control-button:not(.current):hover {
|
|
359
|
-
opacity: 0.6;
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.segmented-control-button.current {
|
|
363
|
-
color: black;
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
.x-3deye-slider {
|
|
367
|
-
position: relative;
|
|
368
|
-
display: flex;
|
|
369
|
-
align-items: center;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
.x-3deye-slider:focus-visible {
|
|
373
|
-
outline: none;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
.x-3deye-slider.horizontal {
|
|
377
|
-
width: 100%;
|
|
378
|
-
height: 20px;
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
.x-3deye-slider.vertical {
|
|
382
|
-
width: 20px;
|
|
383
|
-
height: 100%;
|
|
384
|
-
flex-direction: column;
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
.x-3deye-slider__track {
|
|
388
|
-
background: var(--surface-inverse, gainsboro);
|
|
389
|
-
position: relative;
|
|
390
|
-
flex: 1;
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
.x-3deye-slider__bar {
|
|
394
|
-
background-color: var(--primary-color, #0067ac);
|
|
395
|
-
position: absolute;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
.x-3deye-slider.disabled .x-3deye-slider__bar {
|
|
399
|
-
background-color: rgb(165, 165, 165);
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
.x-3deye-slider.horizontal .x-3deye-slider__bar {
|
|
403
|
-
top: 0;
|
|
404
|
-
bottom: 0;
|
|
405
|
-
left: 0;
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
.x-3deye-slider.vertical .x-3deye-slider__bar {
|
|
409
|
-
bottom: 0;
|
|
410
|
-
left: 0;
|
|
411
|
-
right: 0;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
.x-3deye-slider.horizontal .x-3deye-slider__track {
|
|
415
|
-
height: 3px;
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
.x-3deye-slider.vertical .x-3deye-slider__track {
|
|
419
|
-
width: 3px;
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
.x-3deye-slider__thumb {
|
|
423
|
-
will-change: transform box-shadow;
|
|
424
|
-
background: white;
|
|
425
|
-
box-shadow: 0 0 0 6px rgba(0, 100, 255, 0), 0 0 0 1px rgba(0, 0, 0, 0.1) inset,
|
|
426
|
-
1px 1px 2px 0 rgba(0, 0, 0, 0.25);
|
|
427
|
-
width: 20px;
|
|
428
|
-
height: 20px;
|
|
429
|
-
border-radius: 50%;
|
|
430
|
-
transition: box-shadow 150ms cubic-bezier(0.45, 0.05, 0.55, 0.95) 0ms;
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
.x-3deye-slider:not(.disabled) .x-3deye-slider__thumb:hover,
|
|
434
|
-
.x-3deye-slider:focus .x-3deye-slider__thumb {
|
|
435
|
-
box-shadow: 0 0 0 6px rgba(var(--surface-highlight-rgb, 0, 100, 255), 0.1),
|
|
436
|
-
0 0 0 1px rgba(0, 0, 0, 0.1) inset, 1px 1px 2px 0 rgba(0, 0, 0, 0.25);
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
.x-3deye-slider:focus .x-3deye-slider__thumb.active {
|
|
440
|
-
box-shadow: 0 0 0 6px rgba(var(--surface-highlight-rgb, 0, 100, 255), 0.2),
|
|
441
|
-
0 0 0 1px rgba(0, 0, 0, 0.1) inset, 1px 1px 2px 0 rgba(0, 0, 0, 0.25);
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
.x-3deye-slider.horizontal .x-3deye-slider__thumb {
|
|
445
|
-
margin-left: -10px;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
.x-3deye-slider.vertical .x-3deye-slider__thumb {
|
|
449
|
-
margin-bottom: -10px;
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
.x-3deye-slider__label {
|
|
453
|
-
pointer-events: none;
|
|
454
|
-
touch-action: none;
|
|
455
|
-
will-change: transform;
|
|
456
|
-
transform: translate(-50%, -100%) scale(0);
|
|
457
|
-
background: var(--primary-color, #0067ac);
|
|
458
|
-
bottom: 50%;
|
|
459
|
-
left: 50%;
|
|
460
|
-
color: var(--on-primary-color, white);
|
|
461
|
-
font-size: 0.75rem;
|
|
462
|
-
border-radius: 4px;
|
|
463
|
-
width: -moz-fit-content;
|
|
464
|
-
width: fit-content;
|
|
465
|
-
min-width: 24px;
|
|
466
|
-
padding: 4px 8px;
|
|
467
|
-
position: relative;
|
|
468
|
-
transition: transform 150ms cubic-bezier(0.45, 0.05, 0.55, 0.95) 0ms;
|
|
469
|
-
transform-origin: center bottom;
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
.x-3deye-slider__label.open,
|
|
473
|
-
.x-3deye-slider:not(.disabled)
|
|
474
|
-
.x-3deye-slider__thumb:hover
|
|
475
|
-
.x-3deye-slider__label,
|
|
476
|
-
.x-3deye-slider:focus .x-3deye-slider__label {
|
|
477
|
-
transform: translate(-50%, -100%) scale(1);
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
.x-3deye-slider__label::before {
|
|
481
|
-
content: '';
|
|
482
|
-
display: block;
|
|
483
|
-
position: absolute;
|
|
484
|
-
top: 100%;
|
|
485
|
-
left: calc(50% - 5px);
|
|
486
|
-
width: 0;
|
|
487
|
-
height: 0;
|
|
488
|
-
border-left: 5px solid transparent;
|
|
489
|
-
border-right: 5px solid transparent;
|
|
490
|
-
border-top: 5px solid var(--primary-color, #0067ac);
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.color-selector {
|
|
494
|
-
display: flex;
|
|
495
|
-
z-index: 1;
|
|
496
|
-
padding: 5px 0 5px 8px;
|
|
497
|
-
justify-content: space-between;
|
|
498
|
-
align-items: center;
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
.color-selector__items {
|
|
502
|
-
display: flex;
|
|
503
|
-
align-items: center;
|
|
504
|
-
}
|
|
505
|
-
|
|
506
|
-
.color-selector__item {
|
|
507
|
-
border: none;
|
|
508
|
-
width: 20px;
|
|
509
|
-
height: 20px;
|
|
510
|
-
border-radius: 20px;
|
|
511
|
-
margin: 4px;
|
|
512
|
-
padding: 0;
|
|
513
|
-
box-shadow: 0 0 0 1.5px currentColor;
|
|
514
|
-
transition: box-shadow 0.2s ease-in;
|
|
515
|
-
color: currentColor;
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
.color-selector__item:focus {
|
|
519
|
-
box-shadow: 0 0 0 1.5px currentColor,
|
|
520
|
-
0 0 0 5px rgba(var(--surface-highlight-rgb), 0.2);
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
.color-selector__item:focus:active {
|
|
524
|
-
box-shadow: 0 0 0 1.5px currentColor;
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
.color-selector__item .icon {
|
|
528
|
-
opacity: 0;
|
|
529
|
-
transition: opacity 0.2s ease-in;
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
.color-selector__item.selected .icon {
|
|
533
|
-
opacity: 1;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
.color-selector__clear {
|
|
537
|
-
border-radius: 50%;
|
|
538
|
-
padding: 6px;
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
.preloader-container {
|
|
542
|
-
flex: 1;
|
|
543
|
-
display: flex;
|
|
544
|
-
justify-content: center;
|
|
545
|
-
align-items: center;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
.event-list-item {
|
|
549
|
-
-webkit-user-select: none;
|
|
550
|
-
-moz-user-select: none;
|
|
551
|
-
user-select: none;
|
|
552
|
-
position: absolute;
|
|
553
|
-
font-size: 12px;
|
|
554
|
-
color: rgba(255, 255, 255, 0.75);
|
|
555
|
-
background-color: rgba(255, 255, 255, 0.1);
|
|
556
|
-
top: 0;
|
|
557
|
-
bottom: 0;
|
|
558
|
-
left: 0;
|
|
559
|
-
right: 0;
|
|
560
|
-
overflow: hidden;
|
|
561
|
-
--license-plate-color: rgb(0, 229, 255);
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
.event-list-item .x-3deye-button--icon:hover,
|
|
565
|
-
.event-list-item .x-3deye-button--icon:focus {
|
|
566
|
-
background-color: rgba(0, 0, 0, 0.2);
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
.event-list-item .acknowledged-overlay {
|
|
570
|
-
position: absolute;
|
|
571
|
-
top: 0;
|
|
572
|
-
left: 0;
|
|
573
|
-
bottom: 0;
|
|
574
|
-
right: 0;
|
|
575
|
-
pointer-events: none;
|
|
576
|
-
display: grid;
|
|
577
|
-
place-items: center;
|
|
578
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
579
|
-
color: white;
|
|
580
|
-
text-transform: uppercase;
|
|
581
|
-
font-weight: bold;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
.event-list-item .no-preview-overlay {
|
|
585
|
-
display: block;
|
|
586
|
-
position: absolute;
|
|
587
|
-
top: 0;
|
|
588
|
-
left: 0;
|
|
589
|
-
bottom: 0;
|
|
590
|
-
right: 0;
|
|
591
|
-
pointer-events: none;
|
|
592
|
-
background-position: center;
|
|
593
|
-
background-repeat: no-repeat;
|
|
594
|
-
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAABaCAYAAABzAJLvAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AIDBB8ysGG6bgAAAy1JREFUeNrtnD1oFFEUhc8s6Y0gCDHrT64/EE0UCVEQxB9ioSgWFoqNRgQFG0EQUlhYCXYRBSFuIogkTSKCoNhY2FpYiDYHEYJYiRYuiOhY5EVWFyNxNzvv3T1ftc2+eXO/uWd29s0MIIQQQgghhBBCCCGEEEIIIYQQQgghxILkea4ieIWkqQrNpRTZfF6QnEytk0n2k/xGco8EL8w2AEdIVrIsi1ry/NxIbgXwEsBtM3umzPh3N3SR/EGyksBcyyRzkqMyt3jJ1ZjjmuRAkDsiY/9XwLVBciUWyTWxPBjkXtcvf2dxTXJDkHtNhpzFNcldQe5FmXES1zWxvDvIvapYdhbX4To3J3lFJpzFNcn9Qe55GXAS1zWxPBTkXlYsO4trkjuD3EuquLO4JnkoyD2tSjuJ65pYPhzkXlAsO4trkvuC3HOqrLO4JnksyD3hqTaZI8n9mFu2mwAwBaBjEV8vA7gFYNjMxvM8R5Zlv6J7/rMEFyv4HoCTjYxhZtkfY54xszsp16UEP3Q2+YA5CmAs9aJ4Epw3Ue5BADMeiuJJcDM795GX/ZHgernTnvapQ1p/Y8bbDqmDnSPBEtxWvJVgx5hZjzfJElxPH4BXEuyXKoAdXjpZl0n1MZ0D+AKgh+RndXA8TDT4/Y9A3VLjJnVwwdQs523H3P/RfWa2qHMoyTKAN+GpxuH5Mc3sgzItAkjeCIv1GxsYI5mnGttN7miQu6UJY0X/VGNbUHOD3M0g15p4wET3VGO7du7dIHf1EoytuC5Y7lij51zFdbyxPB5eeLKqBQeS4rrFnTsdOndlC7epuG5Roe8HuesK2LbieoljeSoUeEWBB1iScZ0l0LlPABwAsNzMPhU8ly4AswAmzGw4BcGlyOU+ADAEoFy0XAAws/cAugEcTyWuSxHLfQhgL4BlZjYby7yC5F4k8ka+LFK5zwEMAug0s2qkc0wirksRFu4xgIEQy9VYC5dKXGeRyX2KuReSdpvZ10Qu39YAeA1gEsBZM/uuDv47vQC6UpEbOvkdgPUATgHYrItbp5DU7U9CCCGEEEIIIYQQQgghhBBCCCGEEEIIIUTK/ASpxrk/iYZ2rgAAAABJRU5ErkJggg==');
|
|
595
|
-
background-color: rgba(128, 128, 128, 0.8);
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
.event-list-item-caption {
|
|
599
|
-
background: linear-gradient(
|
|
600
|
-
to bottom,
|
|
601
|
-
rgba(0, 0, 0, 0) 0%,
|
|
602
|
-
rgba(0, 0, 0, 0.65) 100%
|
|
603
|
-
);
|
|
604
|
-
padding-left: 8px;
|
|
605
|
-
padding-bottom: 8px;
|
|
606
|
-
padding-top: 8px;
|
|
607
|
-
position: absolute;
|
|
608
|
-
font-size: 11px;
|
|
609
|
-
bottom: 0;
|
|
610
|
-
left: 0;
|
|
611
|
-
right: 0;
|
|
612
|
-
z-index: 1;
|
|
613
|
-
pointer-events: none;
|
|
614
|
-
display: flex;
|
|
615
|
-
flex-direction: column;
|
|
616
|
-
justify-content: flex-end;
|
|
617
|
-
}
|
|
618
|
-
|
|
619
|
-
.event-list-item:hover .event-list-item__time {
|
|
620
|
-
color: white;
|
|
621
|
-
}
|
|
622
|
-
|
|
623
|
-
.event-list-item__time {
|
|
624
|
-
text-shadow: 0 1px 2px black;
|
|
625
|
-
font-size: 14px;
|
|
626
|
-
order: 1;
|
|
627
|
-
font-weight: bold;
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
.event-list-item__camera-name {
|
|
631
|
-
white-space: nowrap;
|
|
632
|
-
overflow: hidden;
|
|
633
|
-
text-overflow: ellipsis;
|
|
634
|
-
font-weight: bold;
|
|
635
|
-
font-size: 13px;
|
|
636
|
-
line-height: 24px;
|
|
637
|
-
font-family: 'Roboto', sans-serif;
|
|
638
|
-
/* text-shadow: 0 1px 2px black;
|
|
639
|
-
line-height: 20px; */
|
|
640
|
-
}
|
|
641
|
-
|
|
642
|
-
.event-list-item__duration {
|
|
643
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
644
|
-
font-size: 12px;
|
|
645
|
-
padding: 0 4px;
|
|
646
|
-
position: absolute;
|
|
647
|
-
right: 2px;
|
|
648
|
-
bottom: 32px;
|
|
649
|
-
opacity: 0.9;
|
|
650
|
-
}
|
|
651
|
-
|
|
652
|
-
.event-list-item__temperature {
|
|
653
|
-
font-size: 14px;
|
|
654
|
-
font-weight: bold;
|
|
655
|
-
padding: 0 4px;
|
|
656
|
-
position: absolute;
|
|
657
|
-
right: 2px;
|
|
658
|
-
bottom: 4px;
|
|
659
|
-
display: flex;
|
|
660
|
-
align-items: center;
|
|
661
|
-
text-shadow: 0 1px 2px black;
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
.event-list-item .frame {
|
|
665
|
-
--frame-color-hsl: 186 100% 50%;
|
|
666
|
-
position: absolute;
|
|
667
|
-
top: 0;
|
|
668
|
-
left: 0;
|
|
669
|
-
right: 0;
|
|
670
|
-
border: 1px solid hsl(var(--frame-color-hsl) / 0.2);
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
.event-list-item .preview {
|
|
674
|
-
opacity: 0;
|
|
675
|
-
position: absolute;
|
|
676
|
-
pointer-events: none;
|
|
677
|
-
box-shadow: 0 0 4px rgba(0, 0, 0, 0.75);
|
|
678
|
-
transition: opacity 0s linear 0.2s;
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
.event-list-item .trigger:hover ~ .preview {
|
|
682
|
-
opacity: 1;
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
.event-list-item__license-plate-trigger {
|
|
686
|
-
outline: 2px solid var(--license-plate-color);
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
.event-list-item__license-plate .plate-number {
|
|
690
|
-
font-family: 'Roboto Mono', monospace;
|
|
691
|
-
color: white;
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
.event-list-item__license-plate .plate-number .digit {
|
|
695
|
-
color: var(--license-plate-color);
|
|
696
|
-
}
|
|
697
|
-
|
|
698
|
-
.event-list-item__license-plate .plate-number .digit:first-of-type {
|
|
699
|
-
margin-left: 2px;
|
|
700
|
-
}
|
|
701
|
-
|
|
702
|
-
.event-list-item__license-plate-caption {
|
|
703
|
-
position: absolute;
|
|
704
|
-
left: 0;
|
|
705
|
-
right: 0;
|
|
706
|
-
bottom: 0;
|
|
707
|
-
height: 60px;
|
|
708
|
-
display: flex;
|
|
709
|
-
align-items: center;
|
|
710
|
-
justify-content: space-between;
|
|
711
|
-
gap: 10px;
|
|
712
|
-
background-color: black;
|
|
713
|
-
z-index: 1;
|
|
714
|
-
padding-left: 10px;
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
.event-list-item__license-plate-caption .plate-number {
|
|
718
|
-
font-family: 'Roboto Mono', monospace;
|
|
719
|
-
font-size: 16px;
|
|
720
|
-
color: white;
|
|
721
|
-
border: 2px solid rgba(255, 255, 255, 0.5);
|
|
722
|
-
padding: 0 8px;
|
|
723
|
-
border-radius: 4px;
|
|
724
|
-
letter-spacing: 1px;
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
.event-list-item__license-plate-caption .plate-number .digit {
|
|
728
|
-
color: var(--license-plate-color);
|
|
729
|
-
}
|
|
730
|
-
|
|
731
|
-
.event-list-item__license-plate-caption .plate-number :is(.char + .digit) {
|
|
732
|
-
margin-left: 0.25rem;
|
|
733
|
-
}
|
|
734
|
-
|
|
735
|
-
.event-list-item__license-plate-caption .plate-number :is(.digit + .char) {
|
|
736
|
-
margin-left: 0.25rem;
|
|
737
|
-
}
|
|
738
|
-
|
|
739
|
-
.event-list-item__detected-object-label {
|
|
740
|
-
display: flex;
|
|
741
|
-
flex-direction: column;
|
|
742
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
743
|
-
position: absolute;
|
|
744
|
-
font-size: 13px;
|
|
745
|
-
font-family: 'Roboto Mono', monospace;
|
|
746
|
-
white-space: nowrap;
|
|
747
|
-
color: white;
|
|
748
|
-
font-weight: bold;
|
|
749
|
-
min-width: 64px;
|
|
750
|
-
}
|
|
751
|
-
|
|
752
|
-
.event-list-item__detected-object-label__caption {
|
|
753
|
-
padding-left: 4px;
|
|
754
|
-
font-size: 9px;
|
|
755
|
-
line-height: 14px;
|
|
756
|
-
opacity: 0.75;
|
|
757
|
-
color: black;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
.event-list-item__license-plate-label {
|
|
761
|
-
display: flex;
|
|
762
|
-
flex-direction: column;
|
|
763
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
764
|
-
position: absolute;
|
|
765
|
-
font-size: 14px;
|
|
766
|
-
font-family: 'Roboto Mono', monospace;
|
|
767
|
-
white-space: nowrap;
|
|
768
|
-
color: white;
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
.event-list-item__license-plate-label .digit {
|
|
772
|
-
color: var(--license-plate-color);
|
|
773
|
-
}
|
|
774
|
-
|
|
775
|
-
.event-list-item__license-plate-label .digit:first-of-type {
|
|
776
|
-
margin-left: 2px;
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
.event-list-item__license-plate-label__caption {
|
|
780
|
-
padding-left: 4px;
|
|
781
|
-
background-color: var(--license-plate-color);
|
|
782
|
-
color: black;
|
|
783
|
-
opacity: 0.75;
|
|
784
|
-
font-size: 10px;
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
.event-list-item__license-plate .plate-number {
|
|
788
|
-
position: absolute;
|
|
789
|
-
background: black;
|
|
790
|
-
padding-left: 2px;
|
|
791
|
-
padding-right: 2px;
|
|
792
|
-
bottom: 0;
|
|
793
|
-
left: 0;
|
|
794
|
-
right: 0;
|
|
795
|
-
height: 16px;
|
|
796
|
-
}
|
|
797
|
-
|
|
798
|
-
.event-list-item__license-plate .frame {
|
|
799
|
-
--frame-color-hsl: 186 100% 50%;
|
|
800
|
-
}
|
|
801
|
-
|
|
802
|
-
.event-list-item-face .frame {
|
|
803
|
-
--frame-color-hsl: 42 100% 50%;
|
|
804
|
-
bottom: 0;
|
|
805
|
-
}
|
|
806
|
-
|
|
807
|
-
.event-list-item .menu-button {
|
|
808
|
-
position: absolute;
|
|
809
|
-
top: 0;
|
|
810
|
-
right: 0;
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
.menu-button {
|
|
814
|
-
border: none;
|
|
815
|
-
background: none;
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
.menu-button[data-open],
|
|
819
|
-
.menu-button:hover {
|
|
820
|
-
background-color: rgba(var(--surface-highlight-rgb), 0.1);
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
.menu-list {
|
|
824
|
-
background-color: var(--container);
|
|
825
|
-
color: var(--on-container);
|
|
826
|
-
-webkit-backdrop-filter: blur(10px);
|
|
827
|
-
backdrop-filter: blur(10px);
|
|
828
|
-
padding: 4px;
|
|
829
|
-
border-radius: 6px;
|
|
830
|
-
box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgb(0 0 0 / 0.1),
|
|
831
|
-
inset 0 0 0 1px rgb(255 255 255 /0.05);
|
|
832
|
-
outline: 0;
|
|
833
|
-
}
|
|
834
|
-
|
|
835
|
-
.menu-item {
|
|
836
|
-
display: flex;
|
|
837
|
-
justify-content: space-between;
|
|
838
|
-
align-items: center;
|
|
839
|
-
background: none;
|
|
840
|
-
width: 100%;
|
|
841
|
-
border: none;
|
|
842
|
-
border-radius: 4px;
|
|
843
|
-
text-align: left;
|
|
844
|
-
min-width: 120px;
|
|
845
|
-
margin: 0;
|
|
846
|
-
outline: 0;
|
|
847
|
-
}
|
|
848
|
-
|
|
849
|
-
.menu-item--danger {
|
|
850
|
-
color: var(--danger-color);
|
|
851
|
-
}
|
|
852
|
-
|
|
853
|
-
.menu-item.x-3deye-button {
|
|
854
|
-
font-size: 14px;
|
|
855
|
-
background: none;
|
|
856
|
-
border: none;
|
|
857
|
-
text-align: left;
|
|
858
|
-
padding: 8px 16px;
|
|
859
|
-
width: 100%;
|
|
860
|
-
letter-spacing: 0.5px;
|
|
861
|
-
height: -moz-fit-content;
|
|
862
|
-
height: fit-content;
|
|
863
|
-
}
|
|
864
|
-
|
|
865
|
-
.menu-item:focus {
|
|
866
|
-
background-color: rgba(var(--surface-highlight-rgb), 0.1);
|
|
867
|
-
}
|
|
868
|
-
|
|
869
|
-
.menu-item[data-focus-inside][data-open] {
|
|
870
|
-
background-color: rgba(var(--surface-highlight-rgb), 0.1);
|
|
871
|
-
}
|
|
872
|
-
|
|
873
|
-
.frame .corner-highlight-tl {
|
|
874
|
-
position: absolute;
|
|
875
|
-
top: -1px;
|
|
876
|
-
left: -1px;
|
|
877
|
-
width: 10px;
|
|
878
|
-
height: 2px;
|
|
879
|
-
background-color: hsl(var(--frame-color-hsl));
|
|
880
|
-
}
|
|
881
|
-
|
|
882
|
-
.frame .corner-highlight-tl::before {
|
|
883
|
-
content: '';
|
|
884
|
-
display: block;
|
|
885
|
-
position: absolute;
|
|
886
|
-
top: 0;
|
|
887
|
-
left: 0;
|
|
888
|
-
height: 10px;
|
|
889
|
-
width: 2px;
|
|
890
|
-
background-color: hsl(var(--frame-color-hsl));
|
|
891
|
-
}
|
|
892
|
-
|
|
893
|
-
.frame .corner-highlight-tr {
|
|
894
|
-
position: absolute;
|
|
895
|
-
top: -1px;
|
|
896
|
-
right: -1px;
|
|
897
|
-
width: 10px;
|
|
898
|
-
height: 2px;
|
|
899
|
-
background-color: hsl(var(--frame-color-hsl));
|
|
900
|
-
}
|
|
901
|
-
|
|
902
|
-
.frame .corner-highlight-tr::before {
|
|
903
|
-
content: '';
|
|
904
|
-
display: block;
|
|
905
|
-
position: absolute;
|
|
906
|
-
top: 0;
|
|
907
|
-
right: 0;
|
|
908
|
-
height: 10px;
|
|
909
|
-
width: 2px;
|
|
910
|
-
background-color: hsl(var(--frame-color-hsl));
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
.frame .corner-highlight-br {
|
|
914
|
-
position: absolute;
|
|
915
|
-
bottom: -1px;
|
|
916
|
-
right: -1px;
|
|
917
|
-
width: 10px;
|
|
918
|
-
height: 2px;
|
|
919
|
-
background-color: hsl(var(--frame-color-hsl));
|
|
920
|
-
}
|
|
921
|
-
|
|
922
|
-
.frame .corner-highlight-br::before {
|
|
923
|
-
content: '';
|
|
924
|
-
display: block;
|
|
925
|
-
position: absolute;
|
|
926
|
-
bottom: 0;
|
|
927
|
-
right: 0;
|
|
928
|
-
height: 10px;
|
|
929
|
-
width: 2px;
|
|
930
|
-
background-color: hsl(var(--frame-color-hsl));
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
.frame .corner-highlight-bl {
|
|
934
|
-
position: absolute;
|
|
935
|
-
bottom: -1px;
|
|
936
|
-
left: -1px;
|
|
937
|
-
width: 10px;
|
|
938
|
-
height: 2px;
|
|
939
|
-
background-color: hsl(var(--frame-color-hsl));
|
|
940
|
-
}
|
|
941
|
-
|
|
942
|
-
.frame .corner-highlight-bl::before {
|
|
943
|
-
content: '';
|
|
944
|
-
display: block;
|
|
945
|
-
position: absolute;
|
|
946
|
-
bottom: 0;
|
|
947
|
-
left: 0;
|
|
948
|
-
height: 10px;
|
|
949
|
-
width: 2px;
|
|
950
|
-
background-color: hsl(var(--frame-color-hsl));
|
|
951
|
-
}
|
|
1
|
+
.event-grid-datepicker{display:flex;&>div{flex:1;display:flex}& .date-button{flex-direction:column;justify-content:center;padding:4px 8px;display:flex;& label{opacity:.5;font-size:.75em}}}.color-selector{z-index:1;justify-content:space-between;align-items:center;padding:5px 0 5px 8px;display:flex}.color-selector__items{align-items:center;display:flex}.color-selector__item{color:currentColor;border:none;border-radius:20px;width:20px;height:20px;margin:4px;padding:0;transition:box-shadow .2s ease-in;box-shadow:0 0 0 1.5px}.color-selector__item:focus{box-shadow:0 0 0 1.5px currentColor,0 0 0 5px rgba(var(--surface-highlight-rgb),.2)}.color-selector__item:focus:active{box-shadow:0 0 0 1.5px}.color-selector__item .icon{opacity:0;transition:opacity .2s ease-in}.color-selector__item.selected .icon{opacity:1}.color-selector__clear{border-radius:50%;padding:6px}.x-3deye-button{color:inherit;user-select:none;letter-spacing:.0107143em;background:0 0;border:none;border-radius:4px;justify-content:center;align-items:center;height:32px;padding:0 8px;font-weight:500;display:inline-flex;position:relative}.x-3deye-button sup{position:relative;top:-.5em;left:.25em}.x-3deye-button.x-3deye-button--fullwidth{width:100%}.x-3deye-button:focus,.x-3deye-button.x-3deye-button:not(:disabled):hover{background-color:rgba(var(--surface-highlight-rgb),.1)}.x-3deye-button--icon{border-radius:16px;justify-content:center;align-items:center;width:32px;height:32px;padding:4px;display:inline-flex}.x-3deye-button--action .icon{opacity:.5}.x-3deye-button--action:hover .icon{opacity:1}.x-3deye-button:disabled{opacity:.4}.x-3deye-button:not(:disabled){cursor:pointer}.x-3deye-button.x-3deye-button--filled,.x-3deye-button.x-3deye-button--text{text-transform:capitalize;border-radius:.25rem;min-width:80px;padding:0 1rem;font-family:Roboto,sans-serif;font-size:.875rem;font-weight:500}.x-3deye-button.x-3deye-button--filled{color:#fff;background-color:#27b9a1}.x-3deye-button.x-3deye-button--filled:not(:disabled):hover{background-color:#22a38e}.x-3deye-button.x-3deye-button--filled:focus{transition:box-shadow .2s cubic-bezier(.215,.61,.355,1);box-shadow:0 0 0 2px #27b9a154}.x-3deye-button canvas{color:rgb(var(--surface-highlight-rgb))}.x-3deye-button--overlay{pointer-events:auto;color:#fff;background:#00000080;border:2px solid #ffffff40}.x-3deye-button.x-3deye-button--overlay:focus,.x-3deye-button.x-3deye-button--overlay:not(:disabled):hover{background:#00000080;border:2px solid #ffffff80}.x-3deye-button.x-3deye-button--overlay.x-3deye-button--overlay-danger:not(:disabled),.x-3deye-button.x-3deye-button--overlay.x-3deye-button--overlay-danger:not(:disabled):hover{background-color:#9c333180}.preloader-container{flex:1;justify-content:center;align-items:center;display:flex}.x-3deye-datetimepicker{width:max-content}.x-3deye-button.button-date{text-transform:none;font-family:Roboto Mono,monospace}.x-3deye-button.button-date:hover{text-decoration:underline}.x-3deye-timepicker{height:260px;overflow:hidden}.x-3deye-timepicker__column{text-align:center;flex:1;width:60px;font-size:.85rem;overflow:hidden}.x-3deye-timepicker--alt .x-3deye-timepicker__column{white-space:nowrap;width:max-content;height:100%;overflow-y:scroll}.x-3deye-timepicker--alt .x-3deye-timepicker__column>div{width:max-content}.x-3deye-timepicker__column:hover{overflow-y:scroll}.x-3deye-timepicker__value{border-radius:.25rem;height:30px;padding:0 10px;line-height:30px}.x-3deye-datepicker__day{border-radius:.25rem;justify-content:center;align-items:center;width:1.75rem;height:1.75rem;font-weight:500;display:flex}.x-3deye-datepicker__day:not(.x-3deye-datepicker__day--selected):not(.x-3deye-datepicker__day--disabled):hover{color:currentColor;background-color:#0000000d}.x-3deye-datepicker__day--next-month,.x-3deye-datepicker__day--previous-month{color:oklch(.7 0 0)}.x-3deye-datepicker__day--disabled{color:oklch(.9 0 0)}.x-3deye-datepicker__day--selected{color:#fff;background-color:#0067ac}.x-3deye-datepicker__day--today{border:2px solid #0067ac66;font-weight:700}.x-3deye-timepicker__column>div{width:60px;height:40px;padding:5px 10px;&:hover .x-3deye-timepicker__value{background-color:#0000000d}&.selected .x-3deye-timepicker__value{color:#fff;background-color:#0067ac}}.x-3deye-datepicker__button--previous-month,.x-3deye-datepicker__button--next-month{opacity:.3;padding:0;&:disabled{opacity:.1}&:hover:not(:disabled){opacity:1}}.x-3deye-popover-container{color:#fff;text-align:left;background:#222;border-radius:6px;padding:8px;animation:.15s ease-in slide-in;box-shadow:0 12px 28px #0003,0 2px 4px #0000001a,inset 0 0 0 1px #ffffff0d}@media (prefers-reduced-motion:reduce){.x-3deye-popover-container{animation:none}}.x-3deye-popover-container .tip{--tip-background:#222;--tip-border:#ffffff0d}.segmented-control-wrapper{background-color:var(--surface-inverse);border-radius:6px;display:inline-grid}.segmented-control{--indicator-offset:0%;grid-auto-columns:1fr;grid-auto-flow:column;margin:2px;display:grid;position:relative}.segmented-control-indicator{pointer-events:none;transform:translateX(var(--indicator-offset));height:100%;transition:all .2s ease-in-out;position:absolute}.segmented-control-indicator-inner{background:#fff;border-radius:6px;transition:all .2s;position:absolute;inset:0;transform:scale(1);box-shadow:0 0 5px #00000029}.segmented-control-indicator.active .segmented-control-indicator-inner{transform:scale(.95)}.segmented-control-button{color:currentColor;user-select:none;text-overflow:ellipsis;z-index:1;background:0 0;border:none;min-height:24px;margin:2px;font-family:inherit;overflow:hidden}.segmented-control-button:not(.current):hover{opacity:.6}.segmented-control-button.current{color:#000}#x-3deye-floating-ui-root{z-index:calc(infinity);width:100%;position:absolute}.x-3deye-select-container{background-color:#00000080;border-radius:.5rem;display:flex;& *{box-sizing:border-box}& .x-3deye-select-body{padding:.375rem .5rem;display:grid;&>*{grid-area:1/1}}& .x-3deye-multi-select-body{flex-wrap:wrap;gap:4px;padding:.375rem .5rem;display:flex}& .x-3deye-select-value{color:#333;background-color:var(--color,#e6e6e6);border-radius:2px;align-items:center;gap:4px;min-height:24px;padding-left:6px;font-size:.75rem;display:inline-flex;&>.icon{flex-shrink:0}& .close-button{background-color:var(--color,#e6e6e6);color:inherit;border:none;border-top-right-radius:2px;border-bottom-right-radius:2px;justify-content:center;align-items:center;width:24px;min-width:24px;height:100%;margin:0 0 0 3px;padding:0;display:flex;&:hover,&:focus{background-color:var(--background-color,#ffbdad);color:var(--color,#de350b)}}}}.x-3deye-select-indicators{color:#ccc;&:hover{color:#e6e6e6}}.x-3deye-select-container--open,.x-3deye-select-container:has(.x-3deye-select input:focus){background-color:#fff;& .x-3deye-select-indicators{color:#747474;&:hover{color:#747474}}& .x-3deye-select-single-value{color:#000}}.x-3deye-select{line-height:0;display:inline-grid}.x-3deye-select-placeholder{color:#b3b3b3;pointer-events:none;grid-area:1/1;align-items:center;gap:4px;display:flex}.x-3deye-select-single-value{color:#fff;grid-area:1/1;align-content:center;padding:.25em .25em .25em 0}.x-3deye-select:after,.x-3deye-select input{font:inherit;resize:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:none;grid-area:1/1;min-width:1em;margin:0;padding:.25em .25em .25em 0}.x-3deye-select input{height:24px;&:focus{outline:none}}.x-3deye-select:after{content:attr(data-value)" ";visibility:hidden;white-space:pre-wrap}.x-3deye-select-menu{background:#fff;border-radius:.25rem;box-shadow:0 12px 28px #0003,0 2px 4px #0000001a,inset 0 0 0 1px #6666660d}.x-3deye-select-option{cursor:default;align-items:center;padding:8px;font-size:.875rem;display:flex}.x-3deye-select-option--selected{color:#fff;background-color:#2196f3!important}.event-list-item{user-select:none;color:#ffffffbf;--license-plate-color:#00e5ff;background-color:#ffffff1a;font-size:12px;position:absolute;inset:0;overflow:hidden}.event-list-item .x-3deye-button--icon:hover,.event-list-item .x-3deye-button--icon:focus{background-color:#0003}.event-list-item .acknowledged-overlay{pointer-events:none;color:#fff;text-transform:uppercase;background-color:#0006;place-items:center;font-weight:700;display:grid;position:absolute;inset:0}.event-list-item .no-preview-overlay{pointer-events:none;background-color:#808080cc;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAABaCAYAAABzAJLvAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AIDBB8ysGG6bgAAAy1JREFUeNrtnD1oFFEUhc8s6Y0gCDHrT64/EE0UCVEQxB9ioSgWFoqNRgQFG0EQUlhYCXYRBSFuIogkTSKCoNhY2FpYiDYHEYJYiRYuiOhY5EVWFyNxNzvv3T1ftc2+eXO/uWd29s0MIIQQQgghhBBCCCGEEEIIIYQQQgghxILkea4ieIWkqQrNpRTZfF6QnEytk0n2k/xGco8EL8w2AEdIVrIsi1ry/NxIbgXwEsBtM3umzPh3N3SR/EGyksBcyyRzkqMyt3jJ1ZjjmuRAkDsiY/9XwLVBciUWyTWxPBjkXtcvf2dxTXJDkHtNhpzFNcldQe5FmXES1zWxvDvIvapYdhbX4To3J3lFJpzFNcn9Qe55GXAS1zWxPBTkXlYsO4trkjuD3EuquLO4JnkoyD2tSjuJ65pYPhzkXlAsO4trkvuC3HOqrLO4JnksyD3hqTaZI8n9mFu2mwAwBaBjEV8vA7gFYNjMxvM8R5Zlv6J7/rMEFyv4HoCTjYxhZtkfY54xszsp16UEP3Q2+YA5CmAs9aJ4Epw3Ue5BADMeiuJJcDM795GX/ZHgernTnvapQ1p/Y8bbDqmDnSPBEtxWvJVgx5hZjzfJElxPH4BXEuyXKoAdXjpZl0n1MZ0D+AKgh+RndXA8TDT4/Y9A3VLjJnVwwdQs523H3P/RfWa2qHMoyTKAN+GpxuH5Mc3sgzItAkjeCIv1GxsYI5mnGttN7miQu6UJY0X/VGNbUHOD3M0g15p4wET3VGO7du7dIHf1EoytuC5Y7lij51zFdbyxPB5eeLKqBQeS4rrFnTsdOndlC7epuG5Roe8HuesK2LbieoljeSoUeEWBB1iScZ0l0LlPABwAsNzMPhU8ly4AswAmzGw4BcGlyOU+ADAEoFy0XAAws/cAugEcTyWuSxHLfQhgL4BlZjYby7yC5F4k8ka+LFK5zwEMAug0s2qkc0wirksRFu4xgIEQy9VYC5dKXGeRyX2KuReSdpvZ10Qu39YAeA1gEsBZM/uuDv47vQC6UpEbOvkdgPUATgHYrItbp5DU7U9CCCGEEEIIIYQQQgghhBBCCCGEEEIIIUTK/ASpxrk/iYZ2rgAAAABJRU5ErkJggg==);background-position:50%;background-repeat:no-repeat;display:block;position:absolute;inset:0}.event-list-item-caption{z-index:1;pointer-events:none;background:linear-gradient(#0000 0%,#000000a6 100%);flex-direction:column;justify-content:flex-end;padding-top:8px;padding-bottom:8px;padding-left:8px;font-size:11px;display:flex;position:absolute;bottom:0;left:0;right:0}.event-list-item:hover .event-list-item__time{color:#fff}.event-list-item__time{text-shadow:0 1px 2px #000;order:1;font-size:14px;font-weight:700}.event-list-item__camera-name{white-space:nowrap;text-overflow:ellipsis;font-family:Roboto,sans-serif;font-size:13px;font-weight:700;line-height:24px;overflow:hidden}.event-list-item__duration{opacity:.9;background-color:#000000bf;padding:0 4px;font-size:12px;position:absolute;bottom:32px;right:2px}.event-list-item__temperature{text-shadow:0 1px 2px #000;align-items:center;padding:0 4px;font-size:14px;font-weight:700;display:flex;position:absolute;bottom:4px;right:2px}.event-list-item .frame{--frame-color-hsl:186 100% 50%;border:1px solid hsl(var(--frame-color-hsl)/.2);position:absolute;top:0;left:0;right:0}.event-list-item .preview{opacity:0;pointer-events:none;transition:opacity 0s linear .2s;position:absolute;box-shadow:0 0 4px #000000bf}.event-list-item .trigger:hover~.preview{opacity:1}.event-list-item__license-plate-trigger{outline:2px solid var(--license-plate-color)}.event-list-item__license-plate .plate-number{color:#fff;font-family:Roboto Mono,monospace}.event-list-item__license-plate .plate-number .digit{color:var(--license-plate-color)}.event-list-item__license-plate .plate-number .digit:first-of-type{margin-left:2px}.event-list-item__license-plate-caption{z-index:1;background-color:#000;justify-content:space-between;align-items:center;gap:10px;height:60px;padding-left:10px;display:flex;position:absolute;bottom:0;left:0;right:0}.event-list-item__license-plate-caption .plate-number{color:#fff;letter-spacing:1px;border:2px solid #ffffff80;border-radius:4px;padding:0 8px;font-family:Roboto Mono,monospace;font-size:16px;& .digit{color:var(--license-plate-color)}& :is(.char+.digit),& :is(.digit+.char){margin-left:.25rem}}.event-list-item__detected-object-label{white-space:nowrap;color:#fff;background-color:#00000080;flex-direction:column;min-width:64px;font-family:Roboto Mono,monospace;font-size:13px;font-weight:700;display:flex;position:absolute}.event-list-item__detected-object-label__caption{opacity:.75;color:#000;padding-left:4px;font-size:9px;line-height:14px}.event-list-item__license-plate-label{white-space:nowrap;color:#fff;background-color:#00000080;flex-direction:column;font-family:Roboto Mono,monospace;font-size:14px;display:flex;position:absolute}.event-list-item__license-plate-label .digit{color:var(--license-plate-color)}.event-list-item__license-plate-label .digit:first-of-type{margin-left:2px}.event-list-item__license-plate-label__caption{background-color:var(--license-plate-color);color:#000;opacity:.75;padding-left:4px;font-size:10px}.event-list-item__license-plate .plate-number{background:#000;height:16px;padding-left:2px;padding-right:2px;position:absolute;bottom:0;left:0;right:0}.event-list-item__license-plate .frame{--frame-color-hsl:186 100% 50%}.event-list-item-face .frame{--frame-color-hsl:42 100% 50%;bottom:0}.event-list-item .menu-button{position:absolute;top:0;right:0}.x-3deye-slider{align-items:center;display:flex;position:relative}.x-3deye-slider:focus-visible{outline:none}.x-3deye-slider.horizontal{width:100%;height:20px}.x-3deye-slider.vertical{flex-direction:column;width:20px;height:100%}.x-3deye-slider__track{background:var(--surface-inverse,gainsboro);flex:1;position:relative}.x-3deye-slider__bar{background-color:var(--primary-color,#0067ac);position:absolute}.x-3deye-slider.disabled .x-3deye-slider__bar{background-color:#a5a5a5}.x-3deye-slider.horizontal .x-3deye-slider__bar{top:0;bottom:0;left:0}.x-3deye-slider.vertical .x-3deye-slider__bar{bottom:0;left:0;right:0}.x-3deye-slider.horizontal .x-3deye-slider__track{height:3px}.x-3deye-slider.vertical .x-3deye-slider__track{width:3px}.x-3deye-slider__thumb{will-change:transform box-shadow;background:#fff;border-radius:50%;width:20px;height:20px;transition:box-shadow .15s cubic-bezier(.45,.05,.55,.95);box-shadow:0 0 0 6px #0064ff00,inset 0 0 0 1px #0000001a,1px 1px 2px #00000040}.x-3deye-slider:not(.disabled) .x-3deye-slider__thumb:hover,.x-3deye-slider:focus .x-3deye-slider__thumb{box-shadow:0 0 0 6px rgba(var(--surface-highlight-rgb,0,100,255),.1),0 0 0 1px #0000001a inset,1px 1px 2px 0 #00000040}.x-3deye-slider:focus .x-3deye-slider__thumb.active{box-shadow:0 0 0 6px rgba(var(--surface-highlight-rgb,0,100,255),.2),0 0 0 1px #0000001a inset,1px 1px 2px 0 #00000040}.x-3deye-slider.horizontal .x-3deye-slider__thumb{margin-left:-10px}.x-3deye-slider.vertical .x-3deye-slider__thumb{margin-bottom:-10px}.x-3deye-slider__label{pointer-events:none;touch-action:none;will-change:transform;background:var(--primary-color,#0067ac);color:var(--on-primary-color,white);transform-origin:bottom;border-radius:4px;width:fit-content;min-width:24px;padding:4px 8px;font-size:.75rem;transition:transform .15s cubic-bezier(.45,.05,.55,.95);position:relative;bottom:50%;left:50%;transform:translate(-50%,-100%)scale(0)}.x-3deye-slider__label.open,.x-3deye-slider:not(.disabled) .x-3deye-slider__thumb:hover .x-3deye-slider__label,.x-3deye-slider:focus .x-3deye-slider__label{transform:translate(-50%,-100%)scale(1)}.x-3deye-slider__label:before{content:"";border-left:5px solid #0000;border-right:5px solid #0000;border-top:5px solid var(--primary-color,#0067ac);width:0;height:0;display:block;position:absolute;top:100%;left:calc(50% - 5px)}.x-3deye-tooltip{color:#fff;background:#000000e6;border:1px solid #ffffff26;border-radius:4px;padding:.5em 1em;font-size:12px}.menu-button{background:0 0;border:none}.menu-button[data-open],.menu-button:hover{background-color:rgba(var(--surface-highlight-rgb),.1)}.menu-list{background-color:var(--container);color:var(--on-container);backdrop-filter:blur(10px);border-radius:6px;outline:0;padding:4px;box-shadow:0 12px 28px #0003,0 2px 4px #0000001a,inset 0 0 0 1px #ffffff0d}.menu-item{text-align:left;background:0 0;border:none;border-radius:4px;outline:0;justify-content:space-between;align-items:center;width:100%;min-width:120px;margin:0;display:flex}.menu-item--danger{color:var(--danger-color)}.menu-item.x-3deye-button{text-align:left;letter-spacing:.5px;background:0 0;border:none;width:100%;height:fit-content;padding:8px 16px;font-size:14px}.menu-item:focus,.menu-item[data-focus-inside][data-open]{background-color:rgba(var(--surface-highlight-rgb),.1)}.frame .corner-highlight-tl{background-color:hsl(var(--frame-color-hsl));width:10px;height:2px;position:absolute;top:-1px;left:-1px}.frame .corner-highlight-tl:before{content:"";background-color:hsl(var(--frame-color-hsl));width:2px;height:10px;display:block;position:absolute;top:0;left:0}.frame .corner-highlight-tr{background-color:hsl(var(--frame-color-hsl));width:10px;height:2px;position:absolute;top:-1px;right:-1px}.frame .corner-highlight-tr:before{content:"";background-color:hsl(var(--frame-color-hsl));width:2px;height:10px;display:block;position:absolute;top:0;right:0}.frame .corner-highlight-br{background-color:hsl(var(--frame-color-hsl));width:10px;height:2px;position:absolute;bottom:-1px;right:-1px}.frame .corner-highlight-br:before{content:"";background-color:hsl(var(--frame-color-hsl));width:2px;height:10px;display:block;position:absolute;bottom:0;right:0}.frame .corner-highlight-bl{background-color:hsl(var(--frame-color-hsl));width:10px;height:2px;position:absolute;bottom:-1px;left:-1px}.frame .corner-highlight-bl:before{content:"";background-color:hsl(var(--frame-color-hsl));width:2px;height:10px;display:block;position:absolute;bottom:0;left:0}
|