@olenbetong/synergi-react 2.3.4 → 2.3.6

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.
Files changed (32) hide show
  1. package/es/components/DateNavigator/index.js +1 -5
  2. package/es/components/SplitContainer/index.js +1 -3
  3. package/es/components/ValueToggleGroup/index.js +1 -3
  4. package/es/elements/ElementDamage/DuplicateDamage/DesktopView.js +6 -1
  5. package/es/elements/ElementDamage/DuplicateDamage/PhoneView.js +1 -1
  6. package/es/elements/ElementDamage/RegisterFix.js +1 -1
  7. package/es/elements/ElementLookupDialog/BarcodeScanner/index.js +1 -1
  8. package/es/elements/ElementLookupDialog/HIDScanner/index.js +7 -2
  9. package/es/elements/ElementLookupDialog/index.js +1 -1
  10. package/es/elements/ProjectSelect.js +3 -1
  11. package/package.json +4 -4
  12. package/src/elements/ElementDamage/DuplicateDamage/DesktopView.tsx +7 -5
  13. package/src/elements/ElementDamage/DuplicateDamage/PhoneView.tsx +4 -4
  14. package/src/elements/ElementDamage/RegisterFix.tsx +1 -1
  15. package/src/elements/ElementLookupDialog/BarcodeScanner/index.tsx +1 -1
  16. package/src/elements/ElementLookupDialog/HIDScanner/index.tsx +7 -7
  17. package/src/elements/ElementLookupDialog/HIDScanner/useHIDScanner.ts +1 -1
  18. package/src/elements/ElementLookupDialog/index.tsx +5 -5
  19. package/src/elements/ProjectSelect.tsx +3 -1
  20. package/src/global.d.ts +3 -0
  21. package/dist/esm/ob.react.css +0 -1956
  22. package/dist/esm/ob.react.js +0 -47897
  23. package/dist/esm/ob.react.min.css +0 -25
  24. package/dist/esm/ob.react.min.css.map +0 -7
  25. package/dist/esm/ob.react.min.js +0 -264
  26. package/dist/esm/ob.react.min.js.map +0 -7
  27. package/dist/iife/ob.react.css +0 -1956
  28. package/dist/iife/ob.react.js +0 -47909
  29. package/dist/iife/ob.react.min.css +0 -25
  30. package/dist/iife/ob.react.min.css.map +0 -7
  31. package/dist/iife/ob.react.min.js +0 -264
  32. package/dist/iife/ob.react.min.js.map +0 -7
@@ -1,1956 +0,0 @@
1
- @charset "UTF-8";
2
-
3
- /* src/components/Checkbox/index.scss */
4
- .ObCheckbox-root {
5
- --check-width: 2rem;
6
- --bg-color: var(--brand-dark, rgba(42, 65, 50, 0.5));
7
- --bg-color-hover: var(--brand-primary, rgba(42, 65, 50, 0.8));
8
- --bg-color-selected: var(--brand-light);
9
- display: inline-block;
10
- height: var(--check-width);
11
- margin-bottom: 0;
12
- }
13
- .ObCheckbox-root:focus-within .ObCheckbox-box {
14
- border: 0.1rem solid black;
15
- }
16
- .ObCheckbox-root.Ob-disabled {
17
- --bg-color: rgba(150, 150, 150, 0.5);
18
- --bg-color-hover: var(--bg-color);
19
- }
20
- .ObCheckbox-box {
21
- position: relative;
22
- background: var(--bg-color);
23
- transition: background 300ms ease;
24
- overflow: hidden;
25
- border-radius: calc(var(--check-width) / 15);
26
- height: var(--check-width);
27
- width: var(--check-width);
28
- }
29
- .ObCheckbox-box:hover {
30
- background: var(--bg-color-hover);
31
- }
32
- .ObCheckbox-label {
33
- position: relative;
34
- margin-bottom: 0;
35
- overflow: hidden;
36
- }
37
- .ObCheckbox-label:focus {
38
- outline: none;
39
- }
40
- .ObCheckbox-mark {
41
- color: #fff;
42
- display: inline-block;
43
- font-size: calc(var(--check-width) * 0.4);
44
- left: 50%;
45
- opacity: 0;
46
- pointer-events: none;
47
- position: absolute;
48
- top: 50%;
49
- transition: all 300ms ease-in-out;
50
- transition-delay: 0ms;
51
- transform: translate(-50%, -50%) scale(6);
52
- }
53
- .ObCheckbox-input {
54
- clip: rect(0 0 0 0);
55
- clip-path: inset(50%);
56
- height: 1px;
57
- overflow: hidden;
58
- position: absolute;
59
- white-space: nowrap;
60
- width: 1px;
61
- }
62
- .ObCheckbox-input:focus {
63
- outline: none;
64
- }
65
- .ObCheckbox-label {
66
- display: flex;
67
- gap: 0.5rem;
68
- align-items: center;
69
- overflow: visible;
70
- }
71
- .ObCheckbox-root.Ob-reverse .ObCheckbox-label {
72
- flex-direction: row-reverse;
73
- }
74
- .ObCheckbox-input:checked:not(:disabled) + .ObCheckbox-label .ObCheckbox-box {
75
- animation: animOn 600ms 1 forwards;
76
- }
77
- .ObCheckbox-input:checked:not(:disabled) + .ObCheckbox-label .ObCheckbox-box {
78
- background: var(--bg-color-selected);
79
- }
80
- .ObCheckbox-input:checked + .ObCheckbox-label .ObCheckbox-box .ObCheckbox-mark {
81
- transform: translate(-50%, -50%) scale(1);
82
- transition-delay: 200ms;
83
- opacity: 1;
84
- }
85
- .ObCheckbox-root.Ob-disabled .ObCheckbox-box {
86
- cursor: not-allowed;
87
- }
88
- @keyframes animOn {
89
- 40% {
90
- transform: scaleY(0.4) scaleX(2);
91
- }
92
- 50% {
93
- transform: scaleY(1.2) scaleX(0.6);
94
- }
95
- 60% {
96
- transform: scaleY(0.8) scaleX(1.4);
97
- }
98
- 70% {
99
- transform: scaleY(1.1) scaleX(0.9);
100
- }
101
- 100% {
102
- transform: scaleY(1) scaleX(1);
103
- }
104
- }
105
-
106
- /* src/components/ColorCard/index.css */
107
- .ObColorCard-root {
108
- --bg-color-border: black;
109
- --bg-color-main: white;
110
- --bg-size: 0.75rem;
111
- --card-color: rgb(0, 0, 0);
112
- display: flex;
113
- align-items: stretch;
114
- min-height: 10rem;
115
- overflow: hidden;
116
- border-radius: 0.25rem;
117
- box-shadow: 0 1px 12px rgba(0, 0, 0, 0.15), 0 1px 6px rgba(0, 0, 0, 0.25);
118
- color: #666;
119
- background-image:
120
- linear-gradient(
121
- to right,
122
- var(--bg-color-border),
123
- var(--bg-color-border) var(--bg-size),
124
- var(--bg-color-main) var(--bg-size),
125
- var(--bg-color-main));
126
- font-family:
127
- "Variable Bahnschrift",
128
- "Bahnschrift",
129
- "Open Sans",
130
- -apple-system,
131
- BlinkMacSystemFont,
132
- "Segoe UI",
133
- Roboto,
134
- "Helvetica Neue",
135
- Arial,
136
- sans-serif,
137
- "Apple Color Emoji",
138
- "Segoe UI Emoji",
139
- "Segoe UI Symbol";
140
- font-size: 1rem;
141
- transition: all ease-in-out 300ms;
142
- cursor: pointer;
143
- &:nth-of-type(5n+1) {
144
- --bg-color-border: rgb(178, 108, 190);
145
- }
146
- &:nth-of-type(5n+2) {
147
- --bg-color-border: rgb(79, 164, 61);
148
- }
149
- &:nth-of-type(5n+3) {
150
- --bg-color-border: rgb(246, 170, 23);
151
- }
152
- &:nth-of-type(5n+4) {
153
- --bg-color-border: rgb(218, 93, 83);
154
- }
155
- &:nth-of-type(5n+5) {
156
- --bg-color-border: rgb(23, 162, 184);
157
- }
158
- &:hover,
159
- &:focus {
160
- --bg-color-main: #f5f5f5;
161
- box-shadow: 0 3px 18px rgba(0, 0, 0, 0.15), 0 3px 12px rgba(0, 0, 0, 0.25);
162
- text-decoration: none;
163
- }
164
- @media screen and (min-width: 48rem) {
165
- font-size: 1.2rem;
166
- }
167
- }
168
- .ObColorCard-column {
169
- display: flex;
170
- flex: 1 1 100%;
171
- flex-direction: column;
172
- justify-content: space-between;
173
- margin: 1rem 0;
174
- padding: 0.5rem 1.5rem 0.5rem 1rem;
175
- overflow: hidden;
176
- text-overflow: ellipsis;
177
- &:first-child {
178
- margin-left: var(--bg-size, 0.75rem);
179
- }
180
- &.ObColorCard-minor {
181
- flex: 0 0 4rem;
182
- border-right: 1px solid #e3e3e3;
183
- transition: margin ease-in-out 300ms;
184
- @media screen and (min-width: 48rem) {
185
- flex: 0 0 8rem;
186
- }
187
- }
188
- }
189
- .ObColorCard-detailValue {
190
- color: #555555;
191
- }
192
- .ObColorCard-detailLabel {
193
- color: #696969;
194
- font-size: 0.8rem;
195
- text-transform: uppercase;
196
- }
197
- .ObColorCard-detail {
198
- &:not(:last-child) {
199
- margin-right: 1.5rem;
200
- }
201
- &.ObColorCard-primary,
202
- &.ObColorCard-primary .ObColorCard-detailValue {
203
- font-size: 1.25rem;
204
- font-weight: 300;
205
- }
206
- &.ObColorCard-primary .ObColorCard-detailValue {
207
- color: unset;
208
- }
209
- @media screen and (min-width: 48rem) {
210
- font-size: 1rem;
211
- }
212
- }
213
- .ObColorCard-stepList {
214
- display: flex;
215
- flex-direction: column;
216
- gap: 1rem;
217
- }
218
- .ObColorCard-step {
219
- position: relative;
220
- text-box-trim: trim-both;
221
- display: flex;
222
- align-items: flex-start;
223
- gap: 0.5rem;
224
- }
225
- .ObColorCard-step::before {
226
- flex: 0.6em 0 0;
227
- content: "";
228
- position: relative;
229
- top: 0.25em;
230
- width: 0.6em;
231
- height: 0.6em;
232
- background: white;
233
- border: 2px solid var(--bg-color-border, #999);
234
- border-radius: 50%;
235
- box-sizing: border-box;
236
- z-index: 1;
237
- }
238
- .ObColorCard-step:not(:last-child)::after {
239
- content: "";
240
- position: absolute;
241
- top: calc(0.25em + 0.6em + 0.15em);
242
- left: calc(0.3em - 1px);
243
- height: calc(100% - 0.95em + 1rem + 0.0625em);
244
- border-left: 2px dotted #999;
245
- z-index: 0;
246
- }
247
-
248
- /* src/components/DateNavigator/index.css */
249
- :root {
250
- --ob-datenavigator-height: 3rem;
251
- }
252
- .ObDateNavigator-icon {
253
- display: inline-block;
254
- svg {
255
- width: 0.625em;
256
- position: relative;
257
- top: -1px;
258
- }
259
- }
260
- .ObDateNavigator-root {
261
- background-color: hsl(220, 20%, 96%);
262
- background-color: var(--block-header-color-bg);
263
- display: flex;
264
- font-size: 1rem;
265
- outline: none;
266
- &:focus-visible {
267
- outline: 2px solid var(--brand-dark, #336699);
268
- outline-offset: 2px;
269
- }
270
- }
271
- .ObDateNavigator-arrow {
272
- display: flex;
273
- align-items: center;
274
- flex: 0 0 var(--ob-datenavigator-height);
275
- justify-content: center;
276
- height: var(--ob-datenavigator-height);
277
- cursor: pointer;
278
- text-align: center;
279
- &:hover:not(:disabled) {
280
- background-color: #e3e3e3;
281
- background-color: var(--block-header-button-hover);
282
- }
283
- &:disabled {
284
- cursor: not-allowed;
285
- color: rgba(0 0 0 / 0.2);
286
- }
287
- }
288
- .ObDateNavigator-arrowLeft {
289
- border-right: 1px solid #dddddd;
290
- order: 1;
291
- }
292
- .ObDateNavigator-arrowRight {
293
- border-left: 1px solid #dddddd;
294
- order: 3;
295
- }
296
- .ObDateNavigator-date {
297
- display: flex;
298
- flex: 1 1 100%;
299
- flex-direction: column;
300
- justify-content: center;
301
- order: 2;
302
- height: var(--ob-datenavigator-height);
303
- text-align: center;
304
- }
305
- .ObDateNavigator-today {
306
- order: 4;
307
- padding: 0 1rem;
308
- height: var(--ob-datenavigator-height);
309
- display: flex;
310
- align-items: center;
311
- justify-content: center;
312
- font-size: 0.875rem;
313
- color: var(--brand-dark, #336699);
314
- text-transform: uppercase;
315
- cursor: pointer;
316
- text-wrap: nowrap;
317
- border-left: 1px solid #dddddd;
318
- &:hover:not(:disabled) {
319
- background-color: var(--block-header-button-hover);
320
- }
321
- &:focus-visible {
322
- outline: 2px solid var(--brand-dark, #336699);
323
- outline-offset: 2px;
324
- }
325
- }
326
-
327
- /* src/components/LinkedCardList/index.scss */
328
- :root {
329
- --ob-linked-list-bullet-size: 0.7em;
330
- --ob-linked-list-line-width: 0.2em;
331
- }
332
- .ObLinkedList-root {
333
- list-style-type: none;
334
- margin-left: 0;
335
- padding-left: 0;
336
- }
337
- .ObLinkedList-item {
338
- display: flex;
339
- align-items: center;
340
- flex-direction: row;
341
- }
342
- .ObLinkedList-leftColumn {
343
- flex: 1 1 4em;
344
- font-size: 0.75em;
345
- padding: 0 1em;
346
- text-align: center;
347
- }
348
- .ObLinkedList-rightColumn {
349
- flex: 1 1 100%;
350
- padding: 1em 1em 1em 1.5em;
351
- }
352
- .ObLinkedList-line {
353
- display: flex;
354
- align-self: stretch;
355
- flex: 0 0 0.2em;
356
- background: white;
357
- position: relative;
358
- }
359
- .ObLinkedList-bullet {
360
- background: white;
361
- border: 1px solid rgba(50, 50, 50, 0.25);
362
- border-radius: 0.55em;
363
- height: 0.7em;
364
- width: 0.7em;
365
- position: absolute;
366
- left: 0;
367
- top: 50%;
368
- transform: translate(calc(-1 * var(--ob-linked-list-bullet-size) / 2 + var(--ob-linked-list-line-width) / 2), -50%);
369
- }
370
- .ObLinkedList-card {
371
- display: block;
372
- background: white;
373
- border: 1px solid;
374
- border-color: #e5e6e9 #dfe0e4 #d0d1d5;
375
- border-radius: 0.1875em;
376
- color: inherit;
377
- cursor: pointer;
378
- flex: 100% 1 1;
379
- position: relative;
380
- }
381
- .ObLinkedList-card::before {
382
- border-bottom: 0.5em solid transparent;
383
- border-right: 1em solid white;
384
- border-top: 0.5em solid transparent;
385
- content: " ";
386
- filter: drop-shadow(-1px 0px 1px rgba(50, 50, 50, 0.2));
387
- height: 1em;
388
- left: -1em;
389
- margin-top: -0.5em;
390
- position: absolute;
391
- top: 50%;
392
- width: 1em;
393
- }
394
- .ObLinkedList-card:hover {
395
- background-color: hsl(220, 20%, 94%) !important;
396
- color: inherit;
397
- text-decoration: inherit;
398
- }
399
- .ObLinkedList-card:hover::before {
400
- border-right-color: hsl(220, 20%, 94%) !important;
401
- }
402
-
403
- /* src/components/PageBanner/index.scss */
404
- .ObPageBanner-root {
405
- background-color: hsl(186, 72%, 24%);
406
- background-color: var(--brand-dark);
407
- box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.2);
408
- color: white;
409
- }
410
- .ObPageBanner-root a {
411
- color: hsl(200, 50%, 80%);
412
- }
413
- .ObPageBanner-inner {
414
- display: flex;
415
- align-items: center;
416
- flex-direction: column;
417
- }
418
- @media screen and (min-width: 768px) {
419
- .ObPageBanner-inner {
420
- align-items: flex-start;
421
- flex-direction: row;
422
- }
423
- }
424
- .ObPageBanner-plantTitle {
425
- font-size: 2rem;
426
- }
427
- @media screen and (min-width: 992px) {
428
- .ObPageBanner-plantTitle {
429
- font-size: 3rem;
430
- }
431
- }
432
- .ObPageBanner-bannerImage {
433
- align-self: stretch;
434
- background-color: #ddd;
435
- display: inline-block;
436
- height: 20vh;
437
- object-fit: cover;
438
- object-position: center center;
439
- width: 100%;
440
- }
441
- @media screen and (min-width: 576px) {
442
- .ObPageBanner-bannerImage {
443
- align-self: center;
444
- margin: 0;
445
- margin-right: 1rem;
446
- border: 0.4rem solid white;
447
- border-radius: 50%;
448
- height: 150px;
449
- width: 150px;
450
- }
451
- }
452
- @media screen and (min-width: 992px) {
453
- .ObPageBanner-bannerImage {
454
- height: 250px;
455
- width: 250px;
456
- }
457
- }
458
- .ObPageBanner-bannerTitle {
459
- margin-bottom: 1rem;
460
- margin-top: 1rem;
461
- font-size: 2rem;
462
- }
463
- @media screen and (min-width: 768px) {
464
- .ObPageBanner-bannerTitle {
465
- margin-top: 0;
466
- }
467
- }
468
- @media screen and (min-width: 992px) {
469
- .ObPageBanner-bannerTitle {
470
- font-size: 3rem;
471
- }
472
- }
473
- .ObPageBanner-tabList.sticky {
474
- position: -webkit-sticky;
475
- position: sticky;
476
- top: 0;
477
- z-index: 1000;
478
- }
479
- .ObPageBanner-tabListInner {
480
- overflow-x: auto;
481
- scrollbar-width: thin;
482
- white-space: nowrap;
483
- }
484
- .ObPageBanner-tab {
485
- border-bottom: 0.25rem solid transparent;
486
- display: inline-block;
487
- margin-top: 0.5rem;
488
- min-width: 8rem;
489
- padding: 0.5rem 1rem;
490
- text-align: center;
491
- text-transform: capitalize;
492
- }
493
- .ObPageBanner-tab.active {
494
- border-color: white;
495
- }
496
-
497
- /* src/components/ProgressBar/index.scss */
498
- .ObProgressBar-root {
499
- height: 1.5em;
500
- width: 100%;
501
- appearance: none;
502
- -webkit-appearance: none;
503
- background-color: whiteSmoke;
504
- border: none;
505
- border-radius: 3px;
506
- box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) inset;
507
- color: royalblue;
508
- position: relative;
509
- }
510
- .ObProgressBar-root::-webkit-progress-bar {
511
- background-color: whiteSmoke;
512
- border-radius: 3px;
513
- box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) inset;
514
- }
515
- .ObProgressBar-root::-webkit-progress-value {
516
- background-image:
517
- linear-gradient(
518
- 135deg,
519
- transparent,
520
- transparent 33%,
521
- rgba(0, 0, 0, 0.1) 33%,
522
- rgba(0, 0, 0, 0.1) 66%,
523
- transparent 66%),
524
- linear-gradient(
525
- top,
526
- rgba(255, 255, 255, 0.25),
527
- rgba(0, 0, 0, 0.2)),
528
- linear-gradient(
529
- left,
530
- var(--brand-primary),
531
- var(--brand-light));
532
- background-image:
533
- -webkit-linear-gradient(135deg, transparent, transparent 33%, rgba(0, 0, 0, 0.1) 33%, rgba(0, 0, 0, 0.1) 66%, transparent 66%),
534
- -webkit-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.2)),
535
- -webkit-linear-gradient(left, var(--brand-primary), var(--brand-light));
536
- background-size:
537
- 35px 20px,
538
- 100% 100%,
539
- 100% 100%;
540
- border-radius: 3px;
541
- position: relative;
542
- transition: width 0.5s ease-out;
543
- }
544
- .ObProgressBar-root::-webkit-progress-value:after {
545
- background-color: white;
546
- content: "";
547
- border-radius: 100%;
548
- height: 5px;
549
- position: absolute;
550
- right: 7px;
551
- top: 7px;
552
- width: 5px;
553
- }
554
- .ObProgressBar-root::-moz-progress-bar {
555
- background-image:
556
- linear-gradient(
557
- 135deg,
558
- transparent,
559
- transparent 33%,
560
- rgba(0, 0, 0, 0.1) 33%,
561
- rgba(0, 0, 0, 0.1) 66%,
562
- transparent 66%),
563
- linear-gradient(
564
- top,
565
- rgba(255, 255, 255, 0.25),
566
- rgba(0, 0, 0, 0.2)),
567
- linear-gradient(
568
- left,
569
- var(--brand-primary),
570
- var(--brand-light));
571
- background-image:
572
- -moz-linear-gradient(135deg, transparent, transparent 33%, rgba(0, 0, 0, 0.1) 33%, rgba(0, 0, 0, 0.1) 66%, transparent 66%),
573
- -moz-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.2)),
574
- -moz-linear-gradient(left, var(--brand-primary), var(--brand-light));
575
- background-size:
576
- 35px 20px,
577
- 100% 100%,
578
- 100% 100%;
579
- border-radius: 3px;
580
- transition: width 0.5s ease-out;
581
- }
582
-
583
- /* src/components/Sidebar/index.scss */
584
- .ObSidebar-root {
585
- position: fixed;
586
- bottom: 0;
587
- left: 0;
588
- top: 0;
589
- z-index: 2;
590
- background-color: white;
591
- transform: translateX(-100%);
592
- transition: transform 0.2s ease-out;
593
- will-change: transform;
594
- }
595
- .ObSidebar-root.Ob-right {
596
- left: unset;
597
- right: 0;
598
- transform: translateX(100%);
599
- }
600
- .ObSidebar-root {
601
- overflow-y: auto;
602
- }
603
- .ObSidebar-root.Ob-open {
604
- transform: translateX(0);
605
- }
606
- .ObSidebar-root.ObSidebar-shadow {
607
- box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
608
- }
609
- .ObSidebar-root.ObSidebar-shadow.Ob-right {
610
- box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.15);
611
- }
612
- .ObSidebar-overlay {
613
- position: fixed;
614
- bottom: 0;
615
- left: 0;
616
- right: 0;
617
- top: 0;
618
- z-index: 1;
619
- opacity: 0;
620
- visibility: hidden;
621
- transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
622
- background-color: rgba(0, 0, 0, 0.3);
623
- }
624
- .ObSidebar-overlay.Ob-open {
625
- opacity: 1;
626
- visibility: visible;
627
- }
628
-
629
- /* src/components/Spinner/index.css */
630
- .ObSpinner-wrapper,
631
- .ObSpinner-fullPage {
632
- --bullet-size: 0.5em;
633
- }
634
- .ObSpinner-root {
635
- display: inline-block;
636
- }
637
- .ObSpinner-fullPage {
638
- display: flex;
639
- align-items: center;
640
- justify-content: center;
641
- height: 100vh;
642
- width: 100vw;
643
- }
644
- .ObSpinner-spinner {
645
- display: inline-block;
646
- height: calc(var(--bullet-size) * 1.5);
647
- position: relative;
648
- width: calc(var(--bullet-size) * 5);
649
- }
650
- .ObSpinner-bullet {
651
- animation-timing-function: cubic-bezier(0, 1, 1, 0);
652
- background: #666;
653
- border-radius: 50%;
654
- height: var(--bullet-size);
655
- position: absolute;
656
- top: 0.2rem;
657
- width: var(--bullet-size);
658
- &:nth-child(1) {
659
- animation: scaleAnimation 0.6s infinite ease-in-out;
660
- left: calc(var(--bullet-size) * 0.5);
661
- }
662
- &:nth-child(2) {
663
- animation: translateAnimation 0.6s infinite ease-in-out;
664
- left: calc(var(--bullet-size) * 0.5);
665
- }
666
- &:nth-child(3) {
667
- animation: translateAnimation 0.6s infinite ease-in-out;
668
- left: calc(var(--bullet-size) * 2.4);
669
- }
670
- &:nth-child(4) {
671
- animation: scaleAnimation 0.6s infinite ease-in-out reverse;
672
- left: calc(var(--bullet-size) * 4);
673
- }
674
- }
675
- @keyframes scaleAnimation {
676
- from {
677
- transform: scale(0);
678
- }
679
- to {
680
- transform: scale(1);
681
- }
682
- }
683
- @keyframes translateAnimation {
684
- from {
685
- transform: translate(0, 0);
686
- }
687
- to {
688
- transform: translate(calc(var(--bullet-size) * 1.65), 0);
689
- }
690
- }
691
-
692
- /* src/components/SplitContainer/index.scss */
693
- .\1f616 {
694
- display: initial;
695
- }
696
- .ObSplitContainer-root {
697
- display: flex;
698
- flex-direction: column;
699
- height: 100%;
700
- width: 100%;
701
- }
702
- .ObSplitContainer-root.horizontal {
703
- flex-direction: row;
704
- }
705
- .ObSplitContainer-panel {
706
- overflow: hidden;
707
- }
708
- .ObSplitContainer-divider {
709
- flex: 0 0 0.5rem;
710
- background-color: transparent;
711
- line-height: 0.75;
712
- cursor: ns-resize;
713
- display: flex;
714
- align-items: center;
715
- justify-content: center;
716
- }
717
- .ObSplitContainer-divider:focus {
718
- background-color: rgba(0, 0, 0, 0.3);
719
- }
720
- .ObSplitContainer-root.horizontal > .ObSplitContainer-divider {
721
- cursor: ew-resize;
722
- writing-mode: vertical-lr;
723
- }
724
- .ObSplitContainer-panel.dragging {
725
- pointer-events: none;
726
- }
727
-
728
- /* src/components/ValueToggleGroup/index.css */
729
- .ObValueToggleOption {
730
- display: flex;
731
- align-items: center;
732
- margin: 0;
733
- position: relative;
734
- }
735
- .ObValueToggleLabel {
736
- font-size: 0.8em;
737
- margin: 0 0.2em;
738
- padding: 0.3em 0.5em;
739
- text-transform: uppercase;
740
- transition: background 0.2s ease, color 0.2s ease;
741
- border-radius: 4px;
742
- }
743
- .ObValueToggleGroup {
744
- padding: 0.25rem;
745
- border: 2px solid rgb(0 0 0 / 0.2);
746
- border-radius: 4px;
747
- display: flex;
748
- gap: 0.25rem;
749
- flex-wrap: wrap;
750
- &.vertical {
751
- flex-direction: column;
752
- align-items: center;
753
- & .ObValueToggleOption {
754
- width: 100%;
755
- & .ObValueToggleLabel {
756
- width: 100%;
757
- text-align: center;
758
- }
759
- }
760
- }
761
- &:focus-within {
762
- border-color: rgb(0 0 0 / 0.8);
763
- }
764
- }
765
- .ObValueToggleOption input {
766
- position: absolute;
767
- width: 1px;
768
- height: 1px;
769
- padding: 0;
770
- margin: -1px;
771
- overflow: hidden;
772
- clip: rect(0, 0, 0, 0);
773
- border: 0;
774
- }
775
- .ObValueToggleOption:hover input:not(:disabled) + .ObValueToggleLabel {
776
- cursor: pointer;
777
- background: #ccc;
778
- }
779
- .ObValueToggleOption input:checked + .ObValueToggleLabel {
780
- --color-bg: var(--brand-dark);
781
- background-color: var(--color-bg);
782
- color: white;
783
- cursor: default;
784
- }
785
- .ObValueToggleOption input:disabled + .ObValueToggleLabel {
786
- color: rgb(0 0 0 / 0.5);
787
- }
788
- .ObValueToggleOption input:checked:focus-visible + .ObValueToggleLabel {
789
- --color-bg: var(--brand-light);
790
- outline: 2px solid var(--brand-light);
791
- }
792
- .ObValueToggleOption input:checked:hover + .ObValueToggleLabel {
793
- background-color: var(--color-bg);
794
- }
795
-
796
- /* src/features/ElementDamageForm/index.css */
797
- .flow > * + * {
798
- margin-top: var(--spacing, 1rem) !important;
799
- }
800
-
801
- /* src/features/AddElementDialog/HIDScanner/index.css */
802
- @property --angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
803
- @keyframes MovingBackground {
804
- 0% {
805
- --angle: 0deg;
806
- }
807
- 50% {
808
- --angle: 180deg;
809
- }
810
- 100% {
811
- --angle: 360deg;
812
- }
813
- }
814
-
815
- /* ../../node_modules/.pnpm/filepond-plugin-file-poster@2.5.2_filepond@4.32.9/node_modules/filepond-plugin-file-poster/dist/filepond-plugin-file-poster.css */
816
- .filepond--file-poster-wrapper {
817
- z-index: 2;
818
- }
819
- .filepond--image-preview-wrapper ~ .filepond--file-poster-wrapper {
820
- display: none;
821
- }
822
- .filepond--file-poster-overlay {
823
- display: block;
824
- position: absolute;
825
- left: 0;
826
- top: 0;
827
- width: 100%;
828
- min-height: 5rem;
829
- max-height: 7rem;
830
- margin: 0;
831
- opacity: 0;
832
- z-index: 1;
833
- mix-blend-mode: multiply;
834
- pointer-events: none;
835
- -webkit-user-select: none;
836
- -moz-user-select: none;
837
- -ms-user-select: none;
838
- user-select: none;
839
- aspect-ratio: auto;
840
- }
841
- .filepond--file-poster-overlay:nth-of-type(2) {
842
- mix-blend-mode: normal;
843
- }
844
- .filepond--file-poster-overlay:nth-of-type(3) {
845
- mix-blend-mode: normal;
846
- }
847
- @supports (-webkit-marquee-repetition: infinite) and ((-o-object-fit: fill) or (object-fit: fill)) {
848
- .filepond--file-poster-overlay {
849
- mix-blend-mode: normal;
850
- }
851
- }
852
- .filepond--file-poster-wrapper {
853
- pointer-events: none;
854
- position: absolute;
855
- left: 0;
856
- top: 0;
857
- right: 0;
858
- height: 100%;
859
- margin: 0;
860
- border-radius: 0.45em;
861
- overflow: hidden;
862
- background: rgba(0, 0, 0, 0.01);
863
- }
864
- .filepond--file-poster {
865
- position: relative;
866
- z-index: 1;
867
- display: block;
868
- width: 100%;
869
- height: 100%;
870
- pointer-events: none;
871
- -webkit-transform-origin: center center;
872
- transform-origin: center center;
873
- background: #222;
874
- will-change: transform, opacity;
875
- }
876
- .filepond--file-poster img {
877
- height: 100%;
878
- width: auto;
879
- position: relative;
880
- overflow: hidden;
881
- margin: 0 auto;
882
- display: block;
883
- will-change: transform;
884
- }
885
- .filepond--root[data-style-panel-layout~=integrated] .filepond--file-poster-wrapper {
886
- border-radius: 0;
887
- }
888
- .filepond--root[data-style-panel-layout~=integrated] .filepond--file-poster {
889
- height: 100%;
890
- display: flex;
891
- justify-content: center;
892
- align-items: center;
893
- }
894
- .filepond--root[data-style-panel-layout~=circle] .filepond--file-poster-wrapper {
895
- border-radius: 99999rem;
896
- }
897
- .filepond--root[data-style-panel-layout~=circle] .filepond--file-poster-overlay {
898
- top: auto;
899
- bottom: 0;
900
- -webkit-transform: scaleY(-1);
901
- transform: scaleY(-1);
902
- }
903
- .filepond--root[data-style-panel-layout~=circle] .filepond--file .filepond--file-action-button[data-align*=bottom]:not([data-align*=center]) {
904
- margin-bottom: 0.325em;
905
- }
906
- .filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=left] {
907
- left: calc(50% - 3em);
908
- }
909
- .filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=right] {
910
- right: calc(50% - 3em);
911
- }
912
- .filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=left],
913
- .filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=right] {
914
- margin-bottom: calc(0.325em + 0.1875em);
915
- }
916
- .filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=center] {
917
- margin-top: 0;
918
- margin-bottom: 0.1875em;
919
- margin-left: 0.1875em;
920
- }
921
-
922
- /* ../../node_modules/.pnpm/filepond-plugin-image-preview@4.6.12_filepond@4.32.9/node_modules/filepond-plugin-image-preview/dist/filepond-plugin-image-preview.css */
923
- .filepond--image-preview-markup {
924
- position: absolute;
925
- left: 0;
926
- top: 0;
927
- }
928
- .filepond--image-preview-wrapper {
929
- z-index: 2;
930
- }
931
- .filepond--image-preview-overlay {
932
- display: block;
933
- position: absolute;
934
- left: 0;
935
- top: 0;
936
- width: 100%;
937
- min-height: 5rem;
938
- max-height: 7rem;
939
- margin: 0;
940
- opacity: 0;
941
- z-index: 2;
942
- pointer-events: none;
943
- -webkit-user-select: none;
944
- -moz-user-select: none;
945
- -ms-user-select: none;
946
- user-select: none;
947
- }
948
- .filepond--image-preview-overlay svg {
949
- width: 100%;
950
- height: auto;
951
- color: inherit;
952
- max-height: inherit;
953
- }
954
- .filepond--image-preview-overlay-idle {
955
- mix-blend-mode: multiply;
956
- color: rgba(40, 40, 40, 0.85);
957
- }
958
- .filepond--image-preview-overlay-success {
959
- mix-blend-mode: normal;
960
- color: rgba(54, 151, 99, 1);
961
- }
962
- .filepond--image-preview-overlay-failure {
963
- mix-blend-mode: normal;
964
- color: rgba(196, 78, 71, 1);
965
- }
966
- @supports (-webkit-marquee-repetition: infinite) and ((-o-object-fit: fill) or (object-fit: fill)) {
967
- .filepond--image-preview-overlay-idle {
968
- mix-blend-mode: normal;
969
- }
970
- }
971
- .filepond--image-preview-wrapper {
972
- -webkit-user-select: none;
973
- -moz-user-select: none;
974
- -ms-user-select: none;
975
- user-select: none;
976
- position: absolute;
977
- left: 0;
978
- top: 0;
979
- right: 0;
980
- height: 100%;
981
- margin: 0;
982
- border-radius: 0.45em;
983
- overflow: hidden;
984
- background: rgba(0, 0, 0, 0.01);
985
- }
986
- .filepond--image-preview {
987
- position: absolute;
988
- left: 0;
989
- top: 0;
990
- z-index: 1;
991
- display: flex;
992
- align-items: center;
993
- height: 100%;
994
- width: 100%;
995
- pointer-events: none;
996
- background: #222;
997
- will-change: transform, opacity;
998
- }
999
- .filepond--image-clip {
1000
- position: relative;
1001
- overflow: hidden;
1002
- margin: 0 auto;
1003
- }
1004
- .filepond--image-clip[data-transparency-indicator=grid] img,
1005
- .filepond--image-clip[data-transparency-indicator=grid] canvas {
1006
- background-color: #fff;
1007
- background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg' fill='%23eee'%3E%3Cpath d='M0 0 H50 V50 H0'/%3E%3Cpath d='M50 50 H100 V100 H50'/%3E%3C/svg%3E");
1008
- background-size: 1.25em 1.25em;
1009
- }
1010
- .filepond--image-bitmap,
1011
- .filepond--image-vector {
1012
- position: absolute;
1013
- left: 0;
1014
- top: 0;
1015
- will-change: transform;
1016
- }
1017
- .filepond--root[data-style-panel-layout~=integrated] .filepond--image-preview-wrapper {
1018
- border-radius: 0;
1019
- }
1020
- .filepond--root[data-style-panel-layout~=integrated] .filepond--image-preview {
1021
- height: 100%;
1022
- display: flex;
1023
- justify-content: center;
1024
- align-items: center;
1025
- }
1026
- .filepond--root[data-style-panel-layout~=circle] .filepond--image-preview-wrapper {
1027
- border-radius: 99999rem;
1028
- }
1029
- .filepond--root[data-style-panel-layout~=circle] .filepond--image-preview-overlay {
1030
- top: auto;
1031
- bottom: 0;
1032
- -webkit-transform: scaleY(-1);
1033
- transform: scaleY(-1);
1034
- }
1035
- .filepond--root[data-style-panel-layout~=circle] .filepond--file .filepond--file-action-button[data-align*=bottom]:not([data-align*=center]) {
1036
- margin-bottom: 0.325em;
1037
- }
1038
- .filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=left] {
1039
- left: calc(50% - 3em);
1040
- }
1041
- .filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=right] {
1042
- right: calc(50% - 3em);
1043
- }
1044
- .filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=left],
1045
- .filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=right] {
1046
- margin-bottom: calc(0.325em + 0.1875em);
1047
- }
1048
- .filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=center] {
1049
- margin-top: 0;
1050
- margin-bottom: 0.1875em;
1051
- margin-left: 0.1875em;
1052
- }
1053
-
1054
- /* ../../node_modules/.pnpm/filepond@4.32.9/node_modules/filepond/dist/filepond.css */
1055
- .filepond--assistant {
1056
- position: absolute;
1057
- overflow: hidden;
1058
- height: 1px;
1059
- width: 1px;
1060
- padding: 0;
1061
- border: 0;
1062
- clip: rect(1px, 1px, 1px, 1px);
1063
- -webkit-clip-path: inset(50%);
1064
- clip-path: inset(50%);
1065
- white-space: nowrap;
1066
- }
1067
- .filepond--browser.filepond--browser {
1068
- position: absolute;
1069
- margin: 0;
1070
- padding: 0;
1071
- left: 1em;
1072
- top: 1.75em;
1073
- width: calc(100% - 2em);
1074
- opacity: 0;
1075
- font-size: 0;
1076
- }
1077
- .filepond--data {
1078
- position: absolute;
1079
- width: 0;
1080
- height: 0;
1081
- padding: 0;
1082
- margin: 0;
1083
- border: none;
1084
- visibility: hidden;
1085
- pointer-events: none;
1086
- contain: strict;
1087
- }
1088
- .filepond--drip {
1089
- position: absolute;
1090
- top: 0;
1091
- left: 0;
1092
- right: 0;
1093
- bottom: 0;
1094
- overflow: hidden;
1095
- opacity: 0.1;
1096
- pointer-events: none;
1097
- border-radius: 0.5em;
1098
- background: rgba(0, 0, 0, 0.01);
1099
- }
1100
- .filepond--drip-blob {
1101
- position: absolute;
1102
- -webkit-transform-origin: center center;
1103
- transform-origin: center center;
1104
- top: 0;
1105
- left: 0;
1106
- width: 8em;
1107
- height: 8em;
1108
- margin-left: -4em;
1109
- margin-top: -4em;
1110
- background: #292625;
1111
- border-radius: 50%;
1112
- will-change: transform, opacity;
1113
- }
1114
- .filepond--drop-label {
1115
- position: absolute;
1116
- left: 0;
1117
- right: 0;
1118
- top: 0;
1119
- margin: 0;
1120
- color: #4f4f4f;
1121
- display: flex;
1122
- justify-content: center;
1123
- align-items: center;
1124
- height: 0px;
1125
- -webkit-user-select: none;
1126
- -moz-user-select: none;
1127
- -ms-user-select: none;
1128
- user-select: none;
1129
- will-change: transform, opacity;
1130
- }
1131
- .filepond--drop-label.filepond--drop-label label {
1132
- display: block;
1133
- margin: 0;
1134
- padding: 0.5em;
1135
- }
1136
- .filepond--drop-label label {
1137
- cursor: default;
1138
- font-size: 0.875em;
1139
- font-weight: normal;
1140
- text-align: center;
1141
- line-height: 1.5;
1142
- }
1143
- .filepond--label-action {
1144
- text-decoration: underline;
1145
- -webkit-text-decoration-skip: ink;
1146
- text-decoration-skip-ink: auto;
1147
- -webkit-text-decoration-color: #a7a4a4;
1148
- text-decoration-color: #a7a4a4;
1149
- cursor: pointer;
1150
- }
1151
- .filepond--root[data-disabled] .filepond--drop-label label {
1152
- opacity: 0.5;
1153
- }
1154
- .filepond--file-action-button.filepond--file-action-button {
1155
- font-size: 1em;
1156
- width: 1.625em;
1157
- height: 1.625em;
1158
- font-family: inherit;
1159
- line-height: inherit;
1160
- margin: 0;
1161
- padding: 0;
1162
- border: none;
1163
- outline: none;
1164
- will-change: transform, opacity;
1165
- }
1166
- .filepond--file-action-button.filepond--file-action-button span {
1167
- position: absolute;
1168
- overflow: hidden;
1169
- height: 1px;
1170
- width: 1px;
1171
- padding: 0;
1172
- border: 0;
1173
- clip: rect(1px, 1px, 1px, 1px);
1174
- -webkit-clip-path: inset(50%);
1175
- clip-path: inset(50%);
1176
- white-space: nowrap;
1177
- }
1178
- .filepond--file-action-button.filepond--file-action-button {
1179
- }
1180
- .filepond--file-action-button.filepond--file-action-button svg {
1181
- width: 100%;
1182
- height: 100%;
1183
- }
1184
- .filepond--file-action-button.filepond--file-action-button {
1185
- }
1186
- .filepond--file-action-button.filepond--file-action-button::after {
1187
- position: absolute;
1188
- left: -0.75em;
1189
- right: -0.75em;
1190
- top: -0.75em;
1191
- bottom: -0.75em;
1192
- content: "";
1193
- }
1194
- .filepond--file-action-button {
1195
- cursor: auto;
1196
- color: #fff;
1197
- border-radius: 50%;
1198
- background-color: rgba(0, 0, 0, 0.5);
1199
- background-image: none;
1200
- box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
1201
- transition: box-shadow 0.25s ease-in;
1202
- }
1203
- .filepond--file-action-button:hover,
1204
- .filepond--file-action-button:focus {
1205
- box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.9);
1206
- }
1207
- .filepond--file-action-button[disabled] {
1208
- color: rgba(255, 255, 255, 0.5);
1209
- background-color: rgba(0, 0, 0, 0.25);
1210
- }
1211
- .filepond--file-action-button[hidden] {
1212
- display: none;
1213
- }
1214
- .filepond--action-edit-item.filepond--action-edit-item {
1215
- width: 2em;
1216
- height: 2em;
1217
- padding: 0.1875em;
1218
- }
1219
- .filepond--action-edit-item.filepond--action-edit-item[data-align*=center] {
1220
- margin-left: -0.1875em;
1221
- }
1222
- .filepond--action-edit-item.filepond--action-edit-item[data-align*=bottom] {
1223
- margin-bottom: -0.1875em;
1224
- }
1225
- .filepond--action-edit-item-alt {
1226
- border: none;
1227
- line-height: inherit;
1228
- background: transparent;
1229
- font-family: inherit;
1230
- color: inherit;
1231
- outline: none;
1232
- padding: 0;
1233
- margin: 0 0 0 0.25em;
1234
- pointer-events: all;
1235
- position: absolute;
1236
- }
1237
- .filepond--action-edit-item-alt svg {
1238
- width: 1.3125em;
1239
- height: 1.3125em;
1240
- }
1241
- .filepond--action-edit-item-alt span {
1242
- font-size: 0;
1243
- opacity: 0;
1244
- }
1245
- .filepond--file-info {
1246
- position: static;
1247
- display: flex;
1248
- flex-direction: column;
1249
- align-items: flex-start;
1250
- flex: 1;
1251
- margin: 0 0.5em 0 0;
1252
- min-width: 0;
1253
- will-change: transform, opacity;
1254
- pointer-events: none;
1255
- -webkit-user-select: none;
1256
- -moz-user-select: none;
1257
- -ms-user-select: none;
1258
- user-select: none;
1259
- }
1260
- .filepond--file-info * {
1261
- margin: 0;
1262
- }
1263
- .filepond--file-info {
1264
- }
1265
- .filepond--file-info .filepond--file-info-main {
1266
- font-size: 0.75em;
1267
- line-height: 1.2;
1268
- text-overflow: ellipsis;
1269
- overflow: hidden;
1270
- white-space: nowrap;
1271
- width: 100%;
1272
- }
1273
- .filepond--file-info .filepond--file-info-sub {
1274
- font-size: 0.625em;
1275
- opacity: 0.5;
1276
- transition: opacity 0.25s ease-in-out;
1277
- white-space: nowrap;
1278
- }
1279
- .filepond--file-info .filepond--file-info-sub:empty {
1280
- display: none;
1281
- }
1282
- .filepond--file-status {
1283
- position: static;
1284
- display: flex;
1285
- flex-direction: column;
1286
- align-items: flex-end;
1287
- flex-grow: 0;
1288
- flex-shrink: 0;
1289
- margin: 0;
1290
- min-width: 2.25em;
1291
- text-align: right;
1292
- will-change: transform, opacity;
1293
- pointer-events: none;
1294
- -webkit-user-select: none;
1295
- -moz-user-select: none;
1296
- -ms-user-select: none;
1297
- user-select: none;
1298
- }
1299
- .filepond--file-status * {
1300
- margin: 0;
1301
- white-space: nowrap;
1302
- }
1303
- .filepond--file-status {
1304
- }
1305
- .filepond--file-status .filepond--file-status-main {
1306
- font-size: 0.75em;
1307
- line-height: 1.2;
1308
- }
1309
- .filepond--file-status .filepond--file-status-sub {
1310
- font-size: 0.625em;
1311
- opacity: 0.5;
1312
- transition: opacity 0.25s ease-in-out;
1313
- }
1314
- .filepond--file-wrapper.filepond--file-wrapper {
1315
- border: none;
1316
- margin: 0;
1317
- padding: 0;
1318
- min-width: 0;
1319
- height: 100%;
1320
- }
1321
- .filepond--file-wrapper.filepond--file-wrapper > legend {
1322
- position: absolute;
1323
- overflow: hidden;
1324
- height: 1px;
1325
- width: 1px;
1326
- padding: 0;
1327
- border: 0;
1328
- clip: rect(1px, 1px, 1px, 1px);
1329
- -webkit-clip-path: inset(50%);
1330
- clip-path: inset(50%);
1331
- white-space: nowrap;
1332
- }
1333
- .filepond--file {
1334
- position: static;
1335
- display: flex;
1336
- height: 100%;
1337
- align-items: flex-start;
1338
- padding: 0.5625em 0.5625em;
1339
- color: #fff;
1340
- border-radius: 0.5em;
1341
- }
1342
- .filepond--file .filepond--file-status {
1343
- margin-left: auto;
1344
- margin-right: 2.25em;
1345
- }
1346
- .filepond--file .filepond--processing-complete-indicator {
1347
- pointer-events: none;
1348
- -webkit-user-select: none;
1349
- -moz-user-select: none;
1350
- -ms-user-select: none;
1351
- user-select: none;
1352
- z-index: 3;
1353
- }
1354
- .filepond--file .filepond--processing-complete-indicator,
1355
- .filepond--file .filepond--progress-indicator,
1356
- .filepond--file .filepond--file-action-button {
1357
- position: absolute;
1358
- }
1359
- .filepond--file {
1360
- }
1361
- .filepond--file [data-align*=left] {
1362
- left: 0.5625em;
1363
- }
1364
- .filepond--file [data-align*=right] {
1365
- right: 0.5625em;
1366
- }
1367
- .filepond--file [data-align*=center] {
1368
- left: calc(50% - 0.8125em);
1369
- }
1370
- .filepond--file [data-align*=bottom] {
1371
- bottom: 1.125em;
1372
- }
1373
- .filepond--file [data-align=center] {
1374
- top: calc(50% - 0.8125em);
1375
- }
1376
- .filepond--file .filepond--progress-indicator {
1377
- margin-top: 0.1875em;
1378
- }
1379
- .filepond--file .filepond--progress-indicator[data-align*=right] {
1380
- margin-right: 0.1875em;
1381
- }
1382
- .filepond--file .filepond--progress-indicator[data-align*=left] {
1383
- margin-left: 0.1875em;
1384
- }
1385
- [data-filepond-item-state=cancelled] .filepond--file-info,
1386
- [data-filepond-item-state*=invalid] .filepond--file-info,
1387
- [data-filepond-item-state*=error] .filepond--file-info {
1388
- margin-right: 2.25em;
1389
- }
1390
- [data-filepond-item-state~=processing] .filepond--file-status-sub {
1391
- opacity: 0;
1392
- }
1393
- [data-filepond-item-state~=processing] .filepond--action-abort-item-processing ~ .filepond--file-status .filepond--file-status-sub {
1394
- opacity: 0.5;
1395
- }
1396
- [data-filepond-item-state=processing-error] .filepond--file-status-sub {
1397
- opacity: 0;
1398
- }
1399
- [data-filepond-item-state=processing-error] .filepond--action-retry-item-processing ~ .filepond--file-status .filepond--file-status-sub {
1400
- opacity: 0.5;
1401
- }
1402
- [data-filepond-item-state=processing-complete] {
1403
- }
1404
- [data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing svg {
1405
- -webkit-animation: fall 0.5s 0.125s linear both;
1406
- animation: fall 0.5s 0.125s linear both;
1407
- }
1408
- [data-filepond-item-state=processing-complete] {
1409
- }
1410
- [data-filepond-item-state=processing-complete] .filepond--file-status-sub {
1411
- opacity: 0.5;
1412
- }
1413
- [data-filepond-item-state=processing-complete] .filepond--processing-complete-indicator:not([style*=hidden]) ~ .filepond--file-status .filepond--file-status-sub {
1414
- opacity: 0;
1415
- }
1416
- [data-filepond-item-state=processing-complete] .filepond--file-info-sub {
1417
- opacity: 0;
1418
- }
1419
- [data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing ~ .filepond--file-info .filepond--file-info-sub {
1420
- opacity: 0.5;
1421
- }
1422
- [data-filepond-item-state*=invalid] .filepond--panel,
1423
- [data-filepond-item-state*=invalid] .filepond--file-wrapper,
1424
- [data-filepond-item-state*=error] .filepond--panel,
1425
- [data-filepond-item-state*=error] .filepond--file-wrapper {
1426
- -webkit-animation: shake 0.65s linear both;
1427
- animation: shake 0.65s linear both;
1428
- }
1429
- [data-filepond-item-state*=busy] .filepond--progress-indicator svg {
1430
- -webkit-animation: spin 1s linear infinite;
1431
- animation: spin 1s linear infinite;
1432
- }
1433
- @-webkit-keyframes spin {
1434
- 0% {
1435
- -webkit-transform: rotateZ(0deg);
1436
- transform: rotateZ(0deg);
1437
- }
1438
- 100% {
1439
- -webkit-transform: rotateZ(360deg);
1440
- transform: rotateZ(360deg);
1441
- }
1442
- }
1443
- @keyframes spin {
1444
- 0% {
1445
- -webkit-transform: rotateZ(0deg);
1446
- transform: rotateZ(0deg);
1447
- }
1448
- 100% {
1449
- -webkit-transform: rotateZ(360deg);
1450
- transform: rotateZ(360deg);
1451
- }
1452
- }
1453
- @-webkit-keyframes shake {
1454
- 10%, 90% {
1455
- -webkit-transform: translateX(-0.0625em);
1456
- transform: translateX(-0.0625em);
1457
- }
1458
- 20%, 80% {
1459
- -webkit-transform: translateX(0.125em);
1460
- transform: translateX(0.125em);
1461
- }
1462
- 30%, 50%, 70% {
1463
- -webkit-transform: translateX(-0.25em);
1464
- transform: translateX(-0.25em);
1465
- }
1466
- 40%, 60% {
1467
- -webkit-transform: translateX(0.25em);
1468
- transform: translateX(0.25em);
1469
- }
1470
- }
1471
- @keyframes shake {
1472
- 10%, 90% {
1473
- -webkit-transform: translateX(-0.0625em);
1474
- transform: translateX(-0.0625em);
1475
- }
1476
- 20%, 80% {
1477
- -webkit-transform: translateX(0.125em);
1478
- transform: translateX(0.125em);
1479
- }
1480
- 30%, 50%, 70% {
1481
- -webkit-transform: translateX(-0.25em);
1482
- transform: translateX(-0.25em);
1483
- }
1484
- 40%, 60% {
1485
- -webkit-transform: translateX(0.25em);
1486
- transform: translateX(0.25em);
1487
- }
1488
- }
1489
- @-webkit-keyframes fall {
1490
- 0% {
1491
- opacity: 0;
1492
- -webkit-transform: scale(0.5);
1493
- transform: scale(0.5);
1494
- -webkit-animation-timing-function: ease-out;
1495
- animation-timing-function: ease-out;
1496
- }
1497
- 70% {
1498
- opacity: 1;
1499
- -webkit-transform: scale(1.1);
1500
- transform: scale(1.1);
1501
- -webkit-animation-timing-function: ease-in-out;
1502
- animation-timing-function: ease-in-out;
1503
- }
1504
- 100% {
1505
- -webkit-transform: scale(1);
1506
- transform: scale(1);
1507
- -webkit-animation-timing-function: ease-out;
1508
- animation-timing-function: ease-out;
1509
- }
1510
- }
1511
- @keyframes fall {
1512
- 0% {
1513
- opacity: 0;
1514
- -webkit-transform: scale(0.5);
1515
- transform: scale(0.5);
1516
- -webkit-animation-timing-function: ease-out;
1517
- animation-timing-function: ease-out;
1518
- }
1519
- 70% {
1520
- opacity: 1;
1521
- -webkit-transform: scale(1.1);
1522
- transform: scale(1.1);
1523
- -webkit-animation-timing-function: ease-in-out;
1524
- animation-timing-function: ease-in-out;
1525
- }
1526
- 100% {
1527
- -webkit-transform: scale(1);
1528
- transform: scale(1);
1529
- -webkit-animation-timing-function: ease-out;
1530
- animation-timing-function: ease-out;
1531
- }
1532
- }
1533
- .filepond--hopper[data-hopper-state=drag-over] > * {
1534
- pointer-events: none;
1535
- }
1536
- .filepond--hopper[data-hopper-state=drag-over]::after {
1537
- content: "";
1538
- position: absolute;
1539
- left: 0;
1540
- top: 0;
1541
- right: 0;
1542
- bottom: 0;
1543
- z-index: 100;
1544
- }
1545
- .filepond--progress-indicator {
1546
- z-index: 103;
1547
- }
1548
- .filepond--file-action-button {
1549
- z-index: 102;
1550
- }
1551
- .filepond--file-status {
1552
- z-index: 101;
1553
- }
1554
- .filepond--file-info {
1555
- z-index: 100;
1556
- }
1557
- .filepond--item {
1558
- position: absolute;
1559
- top: 0;
1560
- left: 0;
1561
- right: 0;
1562
- z-index: 1;
1563
- padding: 0;
1564
- margin: 0.25em;
1565
- will-change: transform, opacity;
1566
- touch-action: auto;
1567
- }
1568
- .filepond--item > .filepond--panel {
1569
- z-index: -1;
1570
- }
1571
- .filepond--item > .filepond--panel .filepond--panel-bottom {
1572
- box-shadow: 0 0.0625em 0.125em -0.0625em rgba(0, 0, 0, 0.25);
1573
- }
1574
- .filepond--item {
1575
- }
1576
- .filepond--item > .filepond--file-wrapper,
1577
- .filepond--item > .filepond--panel {
1578
- transition: opacity 0.15s ease-out;
1579
- }
1580
- .filepond--item[data-drag-state] {
1581
- cursor: -webkit-grab;
1582
- cursor: grab;
1583
- }
1584
- .filepond--item[data-drag-state] > .filepond--panel {
1585
- transition: box-shadow 0.125s ease-in-out;
1586
- box-shadow: 0 0 0 rgba(0, 0, 0, 0);
1587
- }
1588
- .filepond--item[data-drag-state=drag] {
1589
- cursor: -webkit-grabbing;
1590
- cursor: grabbing;
1591
- }
1592
- .filepond--item[data-drag-state=drag] > .filepond--panel {
1593
- box-shadow: 0 0.125em 0.3125em rgba(0, 0, 0, 0.325);
1594
- }
1595
- .filepond--item[data-drag-state]:not([data-drag-state=idle]) {
1596
- z-index: 2;
1597
- }
1598
- .filepond--item-panel {
1599
- background-color: #64605e;
1600
- }
1601
- [data-filepond-item-state=processing-complete] .filepond--item-panel {
1602
- background-color: #369763;
1603
- }
1604
- [data-filepond-item-state*=invalid] .filepond--item-panel,
1605
- [data-filepond-item-state*=error] .filepond--item-panel {
1606
- background-color: #c44e47;
1607
- }
1608
- .filepond--item-panel {
1609
- border-radius: 0.5em;
1610
- transition: background-color 0.25s;
1611
- }
1612
- .filepond--list-scroller {
1613
- position: absolute;
1614
- top: 0;
1615
- left: 0;
1616
- right: 0;
1617
- margin: 0;
1618
- will-change: transform;
1619
- }
1620
- .filepond--list-scroller[data-state=overflow] .filepond--list {
1621
- bottom: 0;
1622
- right: 0;
1623
- }
1624
- .filepond--list-scroller[data-state=overflow] {
1625
- overflow-y: scroll;
1626
- overflow-x: hidden;
1627
- -webkit-overflow-scrolling: touch;
1628
- -webkit-mask:
1629
- linear-gradient(
1630
- to bottom,
1631
- #000 calc(100% - 0.5em),
1632
- transparent 100%);
1633
- mask:
1634
- linear-gradient(
1635
- to bottom,
1636
- #000 calc(100% - 0.5em),
1637
- transparent 100%);
1638
- }
1639
- .filepond--list-scroller::-webkit-scrollbar {
1640
- background: transparent;
1641
- }
1642
- .filepond--list-scroller::-webkit-scrollbar:vertical {
1643
- width: 1em;
1644
- }
1645
- .filepond--list-scroller::-webkit-scrollbar:horizontal {
1646
- height: 0;
1647
- }
1648
- .filepond--list-scroller::-webkit-scrollbar-thumb {
1649
- background-color: rgba(0, 0, 0, 0.3);
1650
- border-radius: 99999px;
1651
- border: 0.3125em solid transparent;
1652
- background-clip: content-box;
1653
- }
1654
- .filepond--list.filepond--list {
1655
- position: absolute;
1656
- top: 0;
1657
- margin: 0;
1658
- padding: 0;
1659
- list-style-type: none;
1660
- will-change: transform;
1661
- }
1662
- .filepond--list {
1663
- left: 0.75em;
1664
- right: 0.75em;
1665
- }
1666
- .filepond--root[data-style-panel-layout~=integrated] {
1667
- width: 100%;
1668
- height: 100%;
1669
- max-width: none;
1670
- margin: 0;
1671
- }
1672
- .filepond--root[data-style-panel-layout~=circle] .filepond--panel-root,
1673
- .filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root {
1674
- border-radius: 0;
1675
- }
1676
- .filepond--root[data-style-panel-layout~=circle] .filepond--panel-root > *,
1677
- .filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root > * {
1678
- display: none;
1679
- }
1680
- .filepond--root[data-style-panel-layout~=circle] .filepond--drop-label,
1681
- .filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label {
1682
- bottom: 0;
1683
- height: auto;
1684
- display: flex;
1685
- justify-content: center;
1686
- align-items: center;
1687
- z-index: 7;
1688
- }
1689
- .filepond--root[data-style-panel-layout~=circle],
1690
- .filepond--root[data-style-panel-layout~=integrated] {
1691
- }
1692
- .filepond--root[data-style-panel-layout~=circle] .filepond--item-panel,
1693
- .filepond--root[data-style-panel-layout~=integrated] .filepond--item-panel {
1694
- display: none;
1695
- }
1696
- .filepond--root[data-style-panel-layout~=compact] .filepond--list-scroller,
1697
- .filepond--root[data-style-panel-layout~=integrated] .filepond--list-scroller {
1698
- overflow: hidden;
1699
- height: 100%;
1700
- margin-top: 0;
1701
- margin-bottom: 0;
1702
- }
1703
- .filepond--root[data-style-panel-layout~=compact] .filepond--list,
1704
- .filepond--root[data-style-panel-layout~=integrated] .filepond--list {
1705
- left: 0;
1706
- right: 0;
1707
- height: 100%;
1708
- }
1709
- .filepond--root[data-style-panel-layout~=compact] .filepond--item,
1710
- .filepond--root[data-style-panel-layout~=integrated] .filepond--item {
1711
- margin: 0;
1712
- }
1713
- .filepond--root[data-style-panel-layout~=compact] .filepond--file-wrapper,
1714
- .filepond--root[data-style-panel-layout~=integrated] .filepond--file-wrapper {
1715
- height: 100%;
1716
- }
1717
- .filepond--root[data-style-panel-layout~=compact] .filepond--drop-label,
1718
- .filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label {
1719
- z-index: 7;
1720
- }
1721
- .filepond--root[data-style-panel-layout~=circle] {
1722
- border-radius: 99999rem;
1723
- overflow: hidden;
1724
- }
1725
- .filepond--root[data-style-panel-layout~=circle] > .filepond--panel {
1726
- border-radius: inherit;
1727
- }
1728
- .filepond--root[data-style-panel-layout~=circle] > .filepond--panel > * {
1729
- display: none;
1730
- }
1731
- .filepond--root[data-style-panel-layout~=circle] {
1732
- }
1733
- .filepond--root[data-style-panel-layout~=circle] .filepond--file-info {
1734
- display: none;
1735
- }
1736
- .filepond--root[data-style-panel-layout~=circle] .filepond--file-status {
1737
- display: none;
1738
- }
1739
- .filepond--root[data-style-panel-layout~=circle] .filepond--action-edit-item {
1740
- opacity: 1 !important;
1741
- visibility: visible !important;
1742
- }
1743
- @media not all and (min-resolution: 0.001dpcm) {
1744
- @supports (-webkit-appearance: none) and (stroke-color: transparent) {
1745
- .filepond--root[data-style-panel-layout~=circle] {
1746
- will-change: transform;
1747
- }
1748
- }
1749
- }
1750
- .filepond--panel-root {
1751
- border-radius: 0.5em;
1752
- background-color: #f1f0ef;
1753
- }
1754
- .filepond--panel {
1755
- position: absolute;
1756
- left: 0;
1757
- top: 0;
1758
- right: 0;
1759
- margin: 0;
1760
- height: 100% !important;
1761
- pointer-events: none;
1762
- }
1763
- .filepond-panel:not([data-scalable=false]) {
1764
- height: auto !important;
1765
- }
1766
- .filepond--panel[data-scalable=false] > div {
1767
- display: none;
1768
- }
1769
- .filepond--panel[data-scalable=true] {
1770
- -webkit-transform-style: preserve-3d;
1771
- transform-style: preserve-3d;
1772
- background-color: transparent !important;
1773
- border: none !important;
1774
- }
1775
- .filepond--panel-top,
1776
- .filepond--panel-bottom,
1777
- .filepond--panel-center {
1778
- position: absolute;
1779
- left: 0;
1780
- top: 0;
1781
- right: 0;
1782
- margin: 0;
1783
- padding: 0;
1784
- }
1785
- .filepond--panel-top,
1786
- .filepond--panel-bottom {
1787
- height: 0.5em;
1788
- }
1789
- .filepond--panel-top {
1790
- border-bottom-left-radius: 0 !important;
1791
- border-bottom-right-radius: 0 !important;
1792
- border-bottom: none !important;
1793
- }
1794
- .filepond--panel-top::after {
1795
- content: "";
1796
- position: absolute;
1797
- height: 2px;
1798
- left: 0;
1799
- right: 0;
1800
- bottom: -1px;
1801
- background-color: inherit;
1802
- }
1803
- .filepond--panel-center,
1804
- .filepond--panel-bottom {
1805
- will-change: transform;
1806
- -webkit-backface-visibility: hidden;
1807
- backface-visibility: hidden;
1808
- -webkit-transform-origin: left top;
1809
- transform-origin: left top;
1810
- -webkit-transform: translate3d(0, 0.5em, 0);
1811
- transform: translate3d(0, 0.5em, 0);
1812
- }
1813
- .filepond--panel-bottom {
1814
- border-top-left-radius: 0 !important;
1815
- border-top-right-radius: 0 !important;
1816
- border-top: none !important;
1817
- }
1818
- .filepond--panel-bottom::before {
1819
- content: "";
1820
- position: absolute;
1821
- height: 2px;
1822
- left: 0;
1823
- right: 0;
1824
- top: -1px;
1825
- background-color: inherit;
1826
- }
1827
- .filepond--panel-center {
1828
- height: 100px !important;
1829
- border-top: none !important;
1830
- border-bottom: none !important;
1831
- border-radius: 0 !important;
1832
- }
1833
- .filepond--panel-center:not([style]) {
1834
- visibility: hidden;
1835
- }
1836
- .filepond--progress-indicator {
1837
- position: static;
1838
- width: 1.25em;
1839
- height: 1.25em;
1840
- color: #fff;
1841
- margin: 0;
1842
- pointer-events: none;
1843
- will-change: transform, opacity;
1844
- }
1845
- .filepond--progress-indicator svg {
1846
- width: 100%;
1847
- height: 100%;
1848
- vertical-align: top;
1849
- transform-box: fill-box;
1850
- }
1851
- .filepond--progress-indicator path {
1852
- fill: none;
1853
- stroke: currentColor;
1854
- }
1855
- .filepond--list-scroller {
1856
- z-index: 6;
1857
- }
1858
- .filepond--drop-label {
1859
- z-index: 5;
1860
- }
1861
- .filepond--drip {
1862
- z-index: 3;
1863
- }
1864
- .filepond--root > .filepond--panel {
1865
- z-index: 2;
1866
- }
1867
- .filepond--browser {
1868
- z-index: 1;
1869
- }
1870
- .filepond--root {
1871
- box-sizing: border-box;
1872
- position: relative;
1873
- margin-bottom: 1em;
1874
- font-size: 1rem;
1875
- line-height: normal;
1876
- font-family:
1877
- -apple-system,
1878
- BlinkMacSystemFont,
1879
- "Segoe UI",
1880
- Roboto,
1881
- Helvetica,
1882
- Arial,
1883
- sans-serif,
1884
- "Apple Color Emoji",
1885
- "Segoe UI Emoji",
1886
- "Segoe UI Symbol";
1887
- font-weight: 450;
1888
- text-align: left;
1889
- text-rendering: optimizeLegibility;
1890
- direction: ltr;
1891
- contain: layout style size;
1892
- }
1893
- .filepond--root * {
1894
- box-sizing: inherit;
1895
- line-height: inherit;
1896
- }
1897
- .filepond--root *:not(text) {
1898
- font-size: inherit;
1899
- }
1900
- .filepond--root {
1901
- }
1902
- .filepond--root[data-disabled] {
1903
- pointer-events: none;
1904
- }
1905
- .filepond--root[data-disabled] .filepond--list-scroller {
1906
- pointer-events: all;
1907
- }
1908
- .filepond--root[data-disabled] .filepond--list {
1909
- pointer-events: none;
1910
- }
1911
- .filepond--root .filepond--drop-label {
1912
- min-height: 4.75em;
1913
- }
1914
- .filepond--root .filepond--list-scroller {
1915
- margin-top: 1em;
1916
- margin-bottom: 1em;
1917
- }
1918
- .filepond--root .filepond--credits {
1919
- position: absolute;
1920
- right: 0;
1921
- opacity: 0.4;
1922
- line-height: 0.85;
1923
- font-size: 11px;
1924
- color: inherit;
1925
- text-decoration: none;
1926
- z-index: 3;
1927
- bottom: -14px;
1928
- }
1929
- .filepond--root .filepond--credits[style] {
1930
- top: 0;
1931
- bottom: auto;
1932
- margin-top: 14px;
1933
- }
1934
- /*! Bundled license information:
1935
-
1936
- filepond-plugin-file-poster/dist/filepond-plugin-file-poster.css:
1937
- (*!
1938
- * FilePondPluginFilePoster 2.5.2
1939
- * Licensed under MIT, https://opensource.org/licenses/MIT/
1940
- * Please visit https://pqina.nl/filepond/ for details.
1941
- *)
1942
-
1943
- filepond-plugin-image-preview/dist/filepond-plugin-image-preview.css:
1944
- (*!
1945
- * FilePondPluginImagePreview 4.6.12
1946
- * Licensed under MIT, https://opensource.org/licenses/MIT/
1947
- * Please visit https://pqina.nl/filepond/ for details.
1948
- *)
1949
-
1950
- filepond/dist/filepond.css:
1951
- (*!
1952
- * FilePond 4.32.9
1953
- * Licensed under MIT, https://opensource.org/licenses/MIT/
1954
- * Please visit https://pqina.nl/filepond/ for details.
1955
- *)
1956
- */