optimized-react-component-library-xyz123 0.1.152 → 0.1.154
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/index.css +612 -0
- package/dist/index.css.map +1 -1
- package/package.json +5 -3
- package/src/css/questions.css +250 -0
- package/src/css/styles.css +258 -1269
package/src/css/styles.css
CHANGED
|
@@ -162,106 +162,7 @@ p[aria-live='assertive']:empty {
|
|
|
162
162
|
margin-bottom: 36px;
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
-
fieldset {
|
|
166
|
-
border: none;
|
|
167
|
-
padding: 0;
|
|
168
|
-
margin: 0;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
.pts-root-question {
|
|
172
|
-
display: flex;
|
|
173
|
-
flex-direction: column;
|
|
174
|
-
max-width: 624px;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
div.pts-root-question:last-child{
|
|
178
|
-
padding-bottom: 0 ;
|
|
179
|
-
margin-bottom: 0 ;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.pts-root-categoryDescription,
|
|
183
|
-
.pts-root-stepDescription {
|
|
184
|
-
margin-bottom: 3.6rem;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.pts-root-question{
|
|
188
|
-
margin-bottom: 3.6rem;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.pts-root-question legend,
|
|
192
|
-
.pts-root-question label,
|
|
193
|
-
.pts-radio-option {
|
|
194
|
-
display: flex;
|
|
195
|
-
align-items: flex-start;
|
|
196
|
-
cursor: pointer;
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
.pts-radio-option,
|
|
200
|
-
.pts-root-question legend {
|
|
201
|
-
margin-bottom: 0.8rem;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.pts-root-question legend {
|
|
205
|
-
font-family: Arial;
|
|
206
|
-
font-size: 1.6rem;
|
|
207
|
-
font-style: normal;
|
|
208
|
-
font-weight: 400;
|
|
209
|
-
line-height: 20px;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
.pts-root-about {
|
|
215
|
-
font-size: 1.4rem;
|
|
216
|
-
color: var(--info);
|
|
217
|
-
margin: 0;
|
|
218
|
-
margin-bottom: 0.4rem;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
.pts-root-question input[type='text']:focus,
|
|
222
|
-
.pts-root-question input[type='email']:focus,
|
|
223
|
-
.pts-root-question input[type='tel']:focus {
|
|
224
|
-
border: 0.2rem solid var(--action);
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.pts-root-error {
|
|
228
|
-
display: flex;
|
|
229
|
-
margin-top: 0.4rem;
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
.errorDot {
|
|
233
|
-
display: flex;
|
|
234
|
-
font-size: 1.6rem;
|
|
235
|
-
font-weight: 700;
|
|
236
|
-
width: 1.8rem;
|
|
237
|
-
height: 1.8rem;
|
|
238
|
-
border-radius: 1rem;
|
|
239
|
-
justify-content: center;
|
|
240
|
-
color: var(--main);
|
|
241
|
-
background-color: var(--error);
|
|
242
|
-
margin-right: 9px;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
.errorText,
|
|
246
|
-
.pts-root-mandatoryAsterisk {
|
|
247
|
-
color: var(--error);
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
.pts-root-mandatoryAsterisk {
|
|
251
|
-
font-size: 1.8rem;
|
|
252
|
-
padding-left: 0.8rem;
|
|
253
|
-
}
|
|
254
165
|
|
|
255
|
-
.pts-root-question-input-error-border,
|
|
256
|
-
.pts-root-question-input-error-border,
|
|
257
|
-
.pts-root-question-input-error-border {
|
|
258
|
-
border: 0.2rem solid var(--error) !important;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.error-container{
|
|
262
|
-
padding: 3.6rem 0 0 0;
|
|
263
|
-
margin: 0;
|
|
264
|
-
}
|
|
265
166
|
|
|
266
167
|
.sr-only {
|
|
267
168
|
position: absolute;
|
|
@@ -297,17 +198,6 @@ textarea:focus-visible,
|
|
|
297
198
|
box-shadow: 0 0 0 0px #000 !important;
|
|
298
199
|
}
|
|
299
200
|
|
|
300
|
-
.pts-root-question input[type='text'],
|
|
301
|
-
.pts-root-question input[type='email'],
|
|
302
|
-
.pts-root-question input[type='tel'] {
|
|
303
|
-
max-width: 100%;
|
|
304
|
-
font-size: 1.6rem;
|
|
305
|
-
padding-left: 1.6rem;
|
|
306
|
-
padding-right: 1.6rem;
|
|
307
|
-
border-radius: 0.8rem;
|
|
308
|
-
border: 1px solid var(--info);
|
|
309
|
-
height: 4.8rem;
|
|
310
|
-
}
|
|
311
201
|
|
|
312
202
|
/* ---------- COOKIE BANNER ---------- */
|
|
313
203
|
|
|
@@ -348,7 +238,6 @@ textarea:focus-visible,
|
|
|
348
238
|
padding: 0.8rem 2rem;
|
|
349
239
|
}
|
|
350
240
|
|
|
351
|
-
/* Button styles */
|
|
352
241
|
.pts-cookieBanner button {
|
|
353
242
|
min-width: 140px;
|
|
354
243
|
text-align: center;
|
|
@@ -375,25 +264,49 @@ textarea:focus-visible,
|
|
|
375
264
|
top: -0.7rem;
|
|
376
265
|
}
|
|
377
266
|
|
|
378
|
-
/* ----------
|
|
267
|
+
/* ---------- HEADER ---------- */
|
|
379
268
|
|
|
380
|
-
.pts-
|
|
381
|
-
|
|
269
|
+
.pts-skipLink-container a {
|
|
270
|
+
position: absolute;
|
|
271
|
+
top: -1000px;
|
|
272
|
+
left: 1.8rem;
|
|
273
|
+
transition: top 0.3s ease-in-out;
|
|
274
|
+
background-color: var(--main);
|
|
275
|
+
color: var(--action);
|
|
382
276
|
}
|
|
383
277
|
|
|
384
|
-
.pts-
|
|
385
|
-
|
|
278
|
+
.pts-skipLink-container a:focus {
|
|
279
|
+
top: 1.8rem;
|
|
386
280
|
}
|
|
387
281
|
|
|
388
|
-
.pts-
|
|
389
|
-
|
|
282
|
+
.pts-header-container {
|
|
283
|
+
display: flex;
|
|
284
|
+
min-height: 80px;
|
|
285
|
+
padding: 0px 70px;
|
|
286
|
+
align-items: center;
|
|
287
|
+
justify-content: space-between;
|
|
288
|
+
background-color: var(--main);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.pts-languageButton {
|
|
292
|
+
display: flex;
|
|
293
|
+
background: transparent;
|
|
294
|
+
border: transparent;
|
|
295
|
+
color: var(--action);
|
|
296
|
+
cursor: pointer;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.pts-languageButton svg {
|
|
300
|
+
width: 1.5rem;
|
|
301
|
+
height: 1.5rem;
|
|
390
302
|
}
|
|
391
303
|
|
|
304
|
+
/* ---------- TextBODY ---------- */
|
|
305
|
+
|
|
392
306
|
.MoreInfoIcon{
|
|
393
307
|
margin-top: 2px;
|
|
394
308
|
}
|
|
395
309
|
|
|
396
|
-
.pts-serviceHeadlineAndBody-container a svg,
|
|
397
310
|
.MoreInfoIcon svg {
|
|
398
311
|
width: 1.6rem;
|
|
399
312
|
height: 1.6rem;
|
|
@@ -404,7 +317,6 @@ textarea:focus-visible,
|
|
|
404
317
|
margin-right: 1.6rem;
|
|
405
318
|
}
|
|
406
319
|
|
|
407
|
-
.pts-serviceHeadlineAndBody-container a svg path,
|
|
408
320
|
.MoreInfoIcon svg path {
|
|
409
321
|
fill: var(--main);
|
|
410
322
|
}
|
|
@@ -424,6 +336,17 @@ textarea:focus-visible,
|
|
|
424
336
|
flex-shrink: 0;
|
|
425
337
|
margin-right: 1.6rem;
|
|
426
338
|
}
|
|
339
|
+
|
|
340
|
+
/* ---------- TEXT HEADLINE AND BODY ---------- */
|
|
341
|
+
|
|
342
|
+
.pts-textHeadlineAndBody-container .notFirstInList {
|
|
343
|
+
margin-top: 0.8rem;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.pts-textHeadlineAndBody-container .first-paragraph {
|
|
347
|
+
margin-top: 0;
|
|
348
|
+
}
|
|
349
|
+
|
|
427
350
|
/* ---------- STEPPER ---------- */
|
|
428
351
|
|
|
429
352
|
.pts-stepper-container {
|
|
@@ -474,164 +397,231 @@ textarea:focus-visible,
|
|
|
474
397
|
.pts-shortNameInStepper {
|
|
475
398
|
text-align: center;
|
|
476
399
|
}
|
|
477
|
-
/* ---------- STEPPER BUTTON ---------- */
|
|
478
|
-
|
|
479
|
-
.pts-stepperButtons-container {
|
|
480
|
-
display: flex;
|
|
481
|
-
justify-content: end;
|
|
482
|
-
margin-right: 0.8rem;
|
|
483
|
-
}
|
|
484
400
|
|
|
485
|
-
|
|
486
|
-
.pts-backButton {
|
|
487
|
-
background-color: var(--action);
|
|
488
|
-
border: 2px solid var(--action);
|
|
489
|
-
color: var(--main);
|
|
490
|
-
padding: 8px 20px;
|
|
491
|
-
border-radius: 8px;
|
|
492
|
-
font-size: 1.6rem;
|
|
493
|
-
cursor: pointer;
|
|
494
|
-
margin-left: 1.6rem;
|
|
495
|
-
}
|
|
401
|
+
/* ---------- ERROR SUMMARY ---------- */
|
|
496
402
|
|
|
497
|
-
.pts-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
403
|
+
.pts-errorSummary-container {
|
|
404
|
+
padding: 1.6rem 2.4rem 1.6rem 2.4rem;
|
|
405
|
+
border-radius: 0.8rem;
|
|
406
|
+
border: 0.1rem solid var(--error);
|
|
407
|
+
border-left: 4rem solid var(--error);
|
|
408
|
+
position: relative;
|
|
501
409
|
}
|
|
502
410
|
|
|
503
|
-
.pts-
|
|
504
|
-
|
|
505
|
-
.
|
|
506
|
-
.
|
|
507
|
-
.
|
|
508
|
-
|
|
411
|
+
.pts-errorSummary-container .errorDot {
|
|
412
|
+
position: absolute;
|
|
413
|
+
top: 2.1rem;
|
|
414
|
+
left: -2.8rem;
|
|
415
|
+
width: 1.6rem;
|
|
416
|
+
height: 1.6rem;
|
|
417
|
+
border-radius: 50%;
|
|
509
418
|
background-color: var(--main);
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
419
|
+
color: var(--error);
|
|
420
|
+
align-items: center;
|
|
421
|
+
font-size: 1.4rem;
|
|
513
422
|
}
|
|
514
423
|
|
|
515
|
-
|
|
424
|
+
.pts-errorSummary-container h2 {
|
|
425
|
+
margin-bottom: 0;
|
|
426
|
+
}
|
|
516
427
|
|
|
517
|
-
.pts-
|
|
518
|
-
|
|
519
|
-
width: 1.8rem;
|
|
520
|
-
height: 1.8rem;
|
|
521
|
-
border: 1.5px solid var(--info);
|
|
522
|
-
border-radius: 3.1rem;
|
|
428
|
+
.pts-errorSummary-container ul {
|
|
429
|
+
padding: 0;
|
|
523
430
|
margin: 0;
|
|
524
|
-
margin-right: 0.8rem;
|
|
525
|
-
vertical-align: -2px;
|
|
526
|
-
position: relative;
|
|
527
|
-
cursor: pointer;
|
|
528
431
|
}
|
|
529
432
|
|
|
530
|
-
.pts-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
top:
|
|
534
|
-
left: 50%;
|
|
535
|
-
transform: translate(-50%, -50%);
|
|
536
|
-
width: 1rem;
|
|
537
|
-
height: 1rem;
|
|
538
|
-
border-radius: 50%;
|
|
539
|
-
background-color: var(--action);
|
|
433
|
+
.pts-errorSummary-container li {
|
|
434
|
+
display: flex;
|
|
435
|
+
cursor: pointer;
|
|
436
|
+
padding-top: 1.6rem;
|
|
540
437
|
}
|
|
541
438
|
|
|
542
|
-
.
|
|
543
|
-
|
|
544
|
-
flex: 1;
|
|
545
|
-
cursor: pointer;
|
|
439
|
+
.errorSummary-text {
|
|
440
|
+
color: var(--error);
|
|
546
441
|
}
|
|
547
442
|
|
|
548
|
-
/* ----------
|
|
443
|
+
/* ---------- GRANSKA-Sidan ---------- */
|
|
444
|
+
.pts-editPreviewLink-container {
|
|
445
|
+
display: flex;
|
|
446
|
+
justify-content: end;
|
|
447
|
+
width: 100%;
|
|
448
|
+
margin-left: 1rem;
|
|
449
|
+
align-self: flex-start;
|
|
450
|
+
}
|
|
549
451
|
|
|
550
|
-
.pts-
|
|
551
|
-
|
|
452
|
+
.pts-editPreviewLink-container button {
|
|
453
|
+
display: flex;
|
|
454
|
+
align-items: center;
|
|
455
|
+
background-color: transparent;
|
|
456
|
+
color: var(--action);
|
|
457
|
+
border: none;
|
|
458
|
+
cursor: pointer;
|
|
459
|
+
font-size: 1.3rem;
|
|
460
|
+
gap: 0.2rem;
|
|
461
|
+
}
|
|
552
462
|
|
|
553
|
-
|
|
554
|
-
height: 1.
|
|
555
|
-
|
|
463
|
+
.pts-editPreviewLink-container svg {
|
|
464
|
+
height: 1.6rem;
|
|
465
|
+
width: 1.6rem;
|
|
556
466
|
flex-shrink: 0;
|
|
467
|
+
}
|
|
557
468
|
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
469
|
+
.pts-question-preview,
|
|
470
|
+
.addFilesPreviewContainer {
|
|
471
|
+
display: flex;
|
|
472
|
+
justify-content: space-between;
|
|
473
|
+
border-bottom: 1px solid #ddd;
|
|
474
|
+
margin-bottom: 24px;
|
|
475
|
+
margin-top: 0;
|
|
476
|
+
}
|
|
561
477
|
|
|
562
|
-
|
|
478
|
+
.pts-question-preview h3,
|
|
479
|
+
.addFilesPreviewContainer h3 {
|
|
480
|
+
margin-bottom: 8px;
|
|
481
|
+
width: 33%;
|
|
482
|
+
padding-right: 3.6rem;
|
|
563
483
|
}
|
|
564
484
|
|
|
565
|
-
.pts-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
485
|
+
.pts-root-answer,
|
|
486
|
+
.answer {
|
|
487
|
+
width: auto;
|
|
488
|
+
margin-bottom: 8px;
|
|
569
489
|
}
|
|
570
490
|
|
|
571
|
-
.pts-
|
|
572
|
-
cursor: pointer;
|
|
491
|
+
.pts-root-answer ul {
|
|
573
492
|
margin: 0;
|
|
574
|
-
padding
|
|
493
|
+
padding: 0;
|
|
575
494
|
}
|
|
576
495
|
|
|
577
|
-
.pts-
|
|
578
|
-
padding-left: unset;
|
|
579
|
-
margin-top: 0;
|
|
496
|
+
.pts-root-answer li {
|
|
580
497
|
margin-bottom: 0.8rem;
|
|
581
498
|
}
|
|
582
499
|
|
|
583
|
-
.
|
|
584
|
-
margin
|
|
585
|
-
|
|
586
|
-
align-items: flex-start;
|
|
587
|
-
cursor: pointer;
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
.pts-multipleCheckboxes-container li label {
|
|
591
|
-
flex: 1;
|
|
592
|
-
margin-top: 0.2rem;
|
|
500
|
+
.stepInfoText {
|
|
501
|
+
margin: 0;
|
|
502
|
+
margin-bottom: 36px;
|
|
593
503
|
}
|
|
594
|
-
/* ---------- HEADER ---------- */
|
|
595
504
|
|
|
596
|
-
.pts-
|
|
597
|
-
|
|
598
|
-
top: -1000px;
|
|
599
|
-
left: 1.8rem;
|
|
600
|
-
transition: top 0.3s ease-in-out;
|
|
601
|
-
background-color: var(--main);
|
|
602
|
-
color: var(--action);
|
|
505
|
+
.pts-edit-step-button{
|
|
506
|
+
text-decoration: none;
|
|
603
507
|
}
|
|
604
508
|
|
|
605
|
-
.pts-
|
|
606
|
-
|
|
509
|
+
.pts-edit-step-text{
|
|
510
|
+
padding-left: 5px;
|
|
607
511
|
}
|
|
608
512
|
|
|
609
|
-
.
|
|
513
|
+
.h3andPreviewLink {
|
|
610
514
|
display: flex;
|
|
611
|
-
min-height: 80px;
|
|
612
|
-
padding: 0px 70px;
|
|
613
515
|
align-items: center;
|
|
614
516
|
justify-content: space-between;
|
|
615
|
-
|
|
517
|
+
width: 100%;
|
|
616
518
|
}
|
|
617
519
|
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
background: transparent;
|
|
621
|
-
border: transparent;
|
|
622
|
-
color: var(--action);
|
|
623
|
-
cursor: pointer;
|
|
520
|
+
#section-heading-0 {
|
|
521
|
+
width: 100%;
|
|
624
522
|
}
|
|
625
523
|
|
|
626
|
-
.
|
|
627
|
-
|
|
628
|
-
|
|
524
|
+
.pts-legend {
|
|
525
|
+
display: block;
|
|
526
|
+
margin-bottom: 2.8rem;
|
|
527
|
+
}
|
|
629
528
|
|
|
630
|
-
.
|
|
631
|
-
|
|
632
|
-
|
|
529
|
+
.multipleCheckboxes-legend {
|
|
530
|
+
font-weight: 700 !important;
|
|
531
|
+
margin-bottom: 3.6rem;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.no-answer-preview-page {
|
|
535
|
+
color: var(--info);
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.pts-preview-header {
|
|
539
|
+
display: flex;
|
|
540
|
+
justify-content: space-between;
|
|
541
|
+
align-items: baseline;
|
|
542
|
+
width: 100%;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.pts-preview-answer-list {
|
|
546
|
+
padding-inline-start: 18px;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.pts-preview-page dl {
|
|
550
|
+
display: grid;
|
|
551
|
+
grid-template-columns: 35% 65%;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.pts-preview-page dt,
|
|
555
|
+
.pts-preview-page dd {
|
|
556
|
+
padding: 16px 0px 4px 0px;
|
|
557
|
+
margin-inline-start: 0px;
|
|
558
|
+
border-bottom: 1px solid #ddd;
|
|
559
|
+
line-height: 2.4rem;
|
|
560
|
+
margin: 0;
|
|
561
|
+
width: auto;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.pts-preview-page dt {
|
|
565
|
+
font-size: 1.6rem;
|
|
566
|
+
font-weight: 600;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.pts-preview-page dd {
|
|
570
|
+
padding-left: 36px;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.preview-undefined {
|
|
574
|
+
display: none;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.no-answer-preview-page {
|
|
578
|
+
display: inline-block;
|
|
579
|
+
padding: 16px 0px 0px 8px;
|
|
580
|
+
width: 100%;
|
|
581
|
+
position: relative;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
/* ---------- STEPPER BUTTON ---------- */
|
|
585
|
+
|
|
586
|
+
.pts-stepperButtons-container {
|
|
587
|
+
display: flex;
|
|
588
|
+
justify-content: end;
|
|
589
|
+
margin-right: 0.8rem;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.pts-forwardButton,
|
|
593
|
+
.pts-backButton {
|
|
594
|
+
background-color: var(--action);
|
|
595
|
+
border: 2px solid var(--action);
|
|
596
|
+
color: var(--main);
|
|
597
|
+
padding: 8px 20px;
|
|
598
|
+
border-radius: 8px;
|
|
599
|
+
font-size: 1.6rem;
|
|
600
|
+
cursor: pointer;
|
|
601
|
+
margin-left: 1.6rem;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
.pts-start-applicationButton {
|
|
605
|
+
align-self: start !important;
|
|
606
|
+
margin-left: 0px !important;
|
|
607
|
+
margin: 3.6rem 0 0 0;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.pts-backButton:focus,
|
|
611
|
+
.pts-backButton:hover,
|
|
612
|
+
.pts-forwardButton:focus,
|
|
613
|
+
.pts-forwardButton:hover,
|
|
614
|
+
.btn-upload:focus,
|
|
615
|
+
.btn-upload:hover {
|
|
616
|
+
background-color: var(--main);
|
|
617
|
+
border: 2px solid var(--action);
|
|
618
|
+
color: var(--action);
|
|
619
|
+
transition: 0.2s;
|
|
633
620
|
}
|
|
634
621
|
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
|
|
635
625
|
/* ---------- FOOTER ---------- */
|
|
636
626
|
|
|
637
627
|
.pts-footer-container {
|
|
@@ -694,1068 +684,67 @@ textarea:focus-visible,
|
|
|
694
684
|
box-sizing: border-box;
|
|
695
685
|
}
|
|
696
686
|
|
|
697
|
-
/* ---------- TEXTFIELD / TEXTAREA ABOUT ---------- */
|
|
698
|
-
|
|
699
|
-
.pts-textField-container
|
|
700
|
-
|
|
701
|
-
.pts-textField-container{
|
|
702
|
-
margin-top: 8px;
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
.pts-about {
|
|
706
|
-
margin-bottom: 0.4rem;
|
|
707
|
-
color: var(--info);
|
|
708
|
-
font-size: 1.4rem;
|
|
709
|
-
}
|
|
710
|
-
|
|
711
|
-
.textfield-about {
|
|
712
|
-
margin-bottom: 0.4rem;
|
|
713
|
-
color: var(--info);
|
|
714
|
-
font-size: 1.4rem;
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
.pts-textField-container label {
|
|
718
|
-
margin-bottom: 0.8rem;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
.pts-question-hasAbout label {
|
|
722
|
-
margin-bottom: 0.3rem;
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
/* ---------- TEXTAREA ---------- */
|
|
726
|
-
|
|
727
|
-
.pts-textArea-container textarea {
|
|
728
|
-
height: 16rem;
|
|
729
|
-
padding: 1.2rem 1.6rem;
|
|
730
|
-
flex-shrink: 0;
|
|
731
|
-
font-family: arial;
|
|
732
|
-
font-size: 1.6rem;
|
|
733
|
-
border-radius: 8px;
|
|
734
|
-
border: 0.1px solid var(--info);
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
.pts-textArea-container textarea:focus {
|
|
738
|
-
border: 0.2rem solid var(--action);
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
.pts-textarea-counter-error-container {
|
|
742
|
-
display: flex;
|
|
743
|
-
}
|
|
744
|
-
|
|
745
|
-
.pts-character-counter {
|
|
746
|
-
text-align: right;
|
|
747
|
-
width: 100%;
|
|
748
|
-
margin-top: 0.4rem;
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
.pts-textarea-counter-error-container .pts-root-error {
|
|
752
|
-
width: 100%;
|
|
753
|
-
}
|
|
754
687
|
|
|
755
|
-
/* ----------
|
|
688
|
+
/* ---------- MODAL ---------- */
|
|
756
689
|
|
|
757
|
-
.pts-
|
|
758
|
-
|
|
759
|
-
|
|
690
|
+
.pts-modal-overlay {
|
|
691
|
+
position: fixed;
|
|
692
|
+
top: 0;
|
|
693
|
+
left: 0;
|
|
760
694
|
width: 100%;
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
.pts-editPreviewLink-container button {
|
|
695
|
+
height: 100%;
|
|
696
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
766
697
|
display: flex;
|
|
767
698
|
align-items: center;
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
border: none;
|
|
771
|
-
cursor: pointer;
|
|
772
|
-
font-size: 1.3rem;
|
|
773
|
-
gap: 0.2rem;
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
.pts-editPreviewLink-container svg {
|
|
777
|
-
height: 1.6rem;
|
|
778
|
-
width: 1.6rem;
|
|
779
|
-
flex-shrink: 0;
|
|
780
|
-
}
|
|
781
|
-
|
|
782
|
-
/* ---------- GRANSKA ---------- */
|
|
783
|
-
|
|
784
|
-
.pts-question-preview,
|
|
785
|
-
.addFilesPreviewContainer {
|
|
786
|
-
display: flex;
|
|
787
|
-
justify-content: space-between;
|
|
788
|
-
border-bottom: 1px solid #ddd;
|
|
789
|
-
margin-bottom: 24px;
|
|
790
|
-
margin-top: 0;
|
|
699
|
+
justify-content: center;
|
|
700
|
+
z-index: 999;
|
|
791
701
|
}
|
|
792
702
|
|
|
793
|
-
.pts-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
703
|
+
.pts-modal-content {
|
|
704
|
+
background: white;
|
|
705
|
+
color: black;
|
|
706
|
+
padding: 3.7rem;
|
|
707
|
+
border-radius: 4px;
|
|
708
|
+
max-width: 600px;
|
|
709
|
+
width: 90%;
|
|
710
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
798
711
|
}
|
|
799
712
|
|
|
800
|
-
.pts-
|
|
801
|
-
|
|
802
|
-
width:
|
|
803
|
-
|
|
713
|
+
.pts-spinner-border {
|
|
714
|
+
display: block;
|
|
715
|
+
width: 9.4rem;
|
|
716
|
+
height: 9.4rem;
|
|
717
|
+
margin: 0 auto 0 auto;
|
|
718
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='94' height='94' viewBox='0 0 94 94' fill='none'%3e%3cpath d='M47 11.75C66.4682 11.75 82.25 27.532 82.25 47C82.25 66.4682 66.4682 82.25 47 82.25C27.532 82.25 11.75 66.4682 11.75 47C11.75 27.532 27.532 11.75 47 11.75Z' stroke='%236E3282' stroke-opacity='0.25' stroke-width='7.83333' stroke-linecap='round'/%3e%3cpath d='M47 11.75C66.4682 11.75 82.25 27.532 82.25 47' stroke='%236E3282' stroke-width='7.83333' stroke-linecap='round'/%3e%3c/svg%3e");
|
|
719
|
+
background-size: contain;
|
|
720
|
+
background-repeat: no-repeat;
|
|
721
|
+
background-position: center;
|
|
722
|
+
animation: pts-spinner-border 0.75s linear infinite;
|
|
804
723
|
}
|
|
805
724
|
|
|
806
|
-
.pts-
|
|
725
|
+
.pts-modal-content h1 {
|
|
807
726
|
margin: 0;
|
|
808
|
-
padding: 0;
|
|
809
|
-
}
|
|
810
|
-
|
|
811
|
-
.pts-root-answer li {
|
|
812
727
|
margin-bottom: 0.8rem;
|
|
813
728
|
}
|
|
814
729
|
|
|
815
|
-
.
|
|
730
|
+
.pts-modal-content p {
|
|
816
731
|
margin: 0;
|
|
817
|
-
margin-bottom: 36px;
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
.pts-edit-step-button{
|
|
821
|
-
text-decoration: none;
|
|
822
|
-
}
|
|
823
|
-
|
|
824
|
-
.pts-edit-step-text{
|
|
825
|
-
padding-left: 5px;
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
.h3andPreviewLink {
|
|
829
|
-
display: flex;
|
|
830
|
-
align-items: center;
|
|
831
|
-
justify-content: space-between;
|
|
832
|
-
width: 100%;
|
|
833
|
-
}
|
|
834
|
-
|
|
835
|
-
#section-heading-0 {
|
|
836
|
-
width: 100%;
|
|
837
|
-
}
|
|
838
|
-
|
|
839
|
-
.pts-legend {
|
|
840
|
-
display: block;
|
|
841
|
-
margin-bottom: 2.8rem;
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
.multipleCheckboxes-legend {
|
|
845
|
-
font-weight: 700 !important;
|
|
846
732
|
margin-bottom: 3.6rem;
|
|
847
733
|
}
|
|
848
734
|
|
|
849
|
-
|
|
850
|
-
|
|
735
|
+
@keyframes pts-spinner-border {
|
|
736
|
+
100% {
|
|
737
|
+
transform: rotate(360deg);
|
|
738
|
+
}
|
|
851
739
|
}
|
|
852
740
|
|
|
853
|
-
.pts-preview-header {
|
|
854
|
-
display: flex;
|
|
855
|
-
justify-content: space-between;
|
|
856
|
-
align-items: baseline;
|
|
857
|
-
width: 100%;
|
|
858
|
-
}
|
|
859
741
|
|
|
860
|
-
.pts-preview-answer-list {
|
|
861
|
-
padding-inline-start: 18px;
|
|
862
|
-
}
|
|
863
742
|
|
|
864
|
-
.
|
|
865
|
-
|
|
866
|
-
grid-template-columns: 35% 65%;
|
|
743
|
+
.cleanPadding {
|
|
744
|
+
padding: 0;
|
|
867
745
|
}
|
|
868
746
|
|
|
869
|
-
.pts-preview-page dt,
|
|
870
|
-
.pts-preview-page dd {
|
|
871
|
-
padding: 16px 0px 4px 0px;
|
|
872
|
-
margin-inline-start: 0px;
|
|
873
|
-
border-bottom: 1px solid #ddd;
|
|
874
|
-
line-height: 2.4rem;
|
|
875
|
-
margin: 0;
|
|
876
|
-
width: auto;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
.pts-preview-page dt {
|
|
880
|
-
font-size: 1.6rem;
|
|
881
|
-
font-weight: 600;
|
|
882
|
-
}
|
|
883
|
-
|
|
884
|
-
.pts-preview-page dd {
|
|
885
|
-
padding-left: 36px;
|
|
886
|
-
}
|
|
887
|
-
|
|
888
|
-
.preview-undefined {
|
|
889
|
-
display: none;
|
|
890
|
-
}
|
|
891
|
-
|
|
892
|
-
.no-answer-preview-page {
|
|
893
|
-
display: inline-block;
|
|
894
|
-
padding: 16px 0px 0px 8px;
|
|
895
|
-
width: 100%;
|
|
896
|
-
position: relative;
|
|
897
|
-
}
|
|
898
|
-
|
|
899
|
-
/* ---------- TEXT HEADLINE AND BODY / SERVICE HEADLINE AND BODY ---------- */
|
|
900
|
-
|
|
901
|
-
.pts-textHeadlineAndBody-container .notFirstInList {
|
|
902
|
-
margin-top: 0.8rem;
|
|
903
|
-
}
|
|
904
|
-
|
|
905
|
-
.pts-serviceHeadlineAndBody-container .notFirstInList {
|
|
906
|
-
margin-top: 0.8rem;
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
.pts-textHeadlineAndBody-container .first-paragraph {
|
|
910
|
-
margin-top: 0;
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
/* ---------- MODAL ---------- */
|
|
914
|
-
|
|
915
|
-
.pts-modal-overlay {
|
|
916
|
-
position: fixed;
|
|
917
|
-
top: 0;
|
|
918
|
-
left: 0;
|
|
919
|
-
width: 100%;
|
|
920
|
-
height: 100%;
|
|
921
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
922
|
-
display: flex;
|
|
923
|
-
align-items: center;
|
|
924
|
-
justify-content: center;
|
|
925
|
-
z-index: 999;
|
|
926
|
-
}
|
|
927
|
-
|
|
928
|
-
.pts-modal-content {
|
|
929
|
-
background: white;
|
|
930
|
-
color: black;
|
|
931
|
-
padding: 3.7rem;
|
|
932
|
-
border-radius: 4px;
|
|
933
|
-
max-width: 600px;
|
|
934
|
-
width: 90%;
|
|
935
|
-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
936
|
-
}
|
|
937
|
-
|
|
938
|
-
.pts-spinner-border {
|
|
939
|
-
display: block;
|
|
940
|
-
width: 9.4rem;
|
|
941
|
-
height: 9.4rem;
|
|
942
|
-
margin: 0 auto 0 auto;
|
|
943
|
-
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='94' height='94' viewBox='0 0 94 94' fill='none'%3e%3cpath d='M47 11.75C66.4682 11.75 82.25 27.532 82.25 47C82.25 66.4682 66.4682 82.25 47 82.25C27.532 82.25 11.75 66.4682 11.75 47C11.75 27.532 27.532 11.75 47 11.75Z' stroke='%236E3282' stroke-opacity='0.25' stroke-width='7.83333' stroke-linecap='round'/%3e%3cpath d='M47 11.75C66.4682 11.75 82.25 27.532 82.25 47' stroke='%236E3282' stroke-width='7.83333' stroke-linecap='round'/%3e%3c/svg%3e");
|
|
944
|
-
background-size: contain;
|
|
945
|
-
background-repeat: no-repeat;
|
|
946
|
-
background-position: center;
|
|
947
|
-
animation: pts-spinner-border 0.75s linear infinite;
|
|
948
|
-
}
|
|
949
|
-
|
|
950
|
-
.pts-modal-content h1 {
|
|
951
|
-
margin: 0;
|
|
952
|
-
margin-bottom: 0.8rem;
|
|
953
|
-
}
|
|
954
|
-
|
|
955
|
-
.pts-modal-content p {
|
|
956
|
-
margin: 0;
|
|
957
|
-
margin-bottom: 3.6rem;
|
|
958
|
-
}
|
|
959
|
-
|
|
960
|
-
@keyframes pts-spinner-border {
|
|
961
|
-
100% {
|
|
962
|
-
transform: rotate(360deg);
|
|
963
|
-
}
|
|
964
|
-
}
|
|
965
|
-
|
|
966
|
-
/* ---------- ERROR SUMMARY ---------- */
|
|
967
|
-
|
|
968
|
-
.pts-errorSummary-container {
|
|
969
|
-
padding: 1.6rem 2.4rem 1.6rem 2.4rem;
|
|
970
|
-
border-radius: 0.8rem;
|
|
971
|
-
border: 0.1rem solid var(--error);
|
|
972
|
-
border-left: 4rem solid var(--error);
|
|
973
|
-
position: relative;
|
|
974
|
-
}
|
|
975
|
-
|
|
976
|
-
.pts-errorSummary-container .errorDot {
|
|
977
|
-
position: absolute;
|
|
978
|
-
top: 2.1rem;
|
|
979
|
-
left: -2.8rem;
|
|
980
|
-
width: 1.6rem;
|
|
981
|
-
height: 1.6rem;
|
|
982
|
-
border-radius: 50%;
|
|
983
|
-
background-color: var(--main);
|
|
984
|
-
color: var(--error);
|
|
985
|
-
align-items: center;
|
|
986
|
-
font-size: 1.4rem;
|
|
987
|
-
}
|
|
988
|
-
|
|
989
|
-
.pts-errorSummary-container h2 {
|
|
990
|
-
margin-bottom: 0;
|
|
991
|
-
}
|
|
992
|
-
|
|
993
|
-
.pts-errorSummary-container ul {
|
|
994
|
-
padding: 0;
|
|
995
|
-
margin: 0;
|
|
996
|
-
}
|
|
997
|
-
|
|
998
|
-
.pts-errorSummary-container li {
|
|
999
|
-
display: flex;
|
|
1000
|
-
cursor: pointer;
|
|
1001
|
-
padding-top: 1.6rem;
|
|
1002
|
-
}
|
|
1003
|
-
|
|
1004
|
-
.errorSummary-text {
|
|
1005
|
-
color: var(--error);
|
|
1006
|
-
}
|
|
1007
|
-
|
|
1008
|
-
.cleanPadding {
|
|
1009
|
-
padding: 0;
|
|
1010
|
-
}
|
|
1011
|
-
|
|
1012
|
-
/* ---------- FILE UPLOAD ---------- */
|
|
1013
|
-
.files-upload {
|
|
1014
|
-
width: 100%;
|
|
1015
|
-
max-width: 800px;
|
|
1016
|
-
margin: 0 auto;
|
|
1017
|
-
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
1018
|
-
}
|
|
1019
|
-
|
|
1020
|
-
/* Drop Zone */
|
|
1021
|
-
.files-drop-zone {
|
|
1022
|
-
border: 2px dashed var(--action);
|
|
1023
|
-
border-radius: 12px;
|
|
1024
|
-
padding: 3rem 2rem;
|
|
1025
|
-
text-align: center;
|
|
1026
|
-
transition: all 0.3s ease;
|
|
1027
|
-
background-color: #fafafa;
|
|
1028
|
-
cursor: pointer;
|
|
1029
|
-
position: relative;
|
|
1030
|
-
overflow: hidden;
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
|
-
.files-drop-zone:hover {
|
|
1034
|
-
border-color: var(--action);
|
|
1035
|
-
background-color: #f5ebf8;
|
|
1036
|
-
transform: translateY(-2px);
|
|
1037
|
-
box-shadow: 0 4px 12px rgba(220, 148, 253, 0.15);
|
|
1038
|
-
}
|
|
1039
|
-
|
|
1040
|
-
.files-drop-zone.drag-active {
|
|
1041
|
-
border-color: var(--action);
|
|
1042
|
-
background-color: #f5ebf8;
|
|
1043
|
-
transform: scale(1.02);
|
|
1044
|
-
box-shadow: 0 8px 25px rgba(30, 167, 253, 0.2);
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
|
-
.files-drop-zone:focus {
|
|
1048
|
-
/* border-color: var(--action);
|
|
1049
|
-
background-color: #f5ebf8;
|
|
1050
|
-
transform: translateY(-2px);
|
|
1051
|
-
box-shadow: 0 4px 12px rgba(220, 148, 253, 0.15);
|
|
1052
|
-
transform: translateY(-3px);
|
|
1053
|
-
|
|
1054
|
-
animation: focusPulse 1s ease-in-out infinite;
|
|
1055
|
-
box-shadow: inset 0 0 0 4px var(--action);
|
|
1056
|
-
|
|
1057
|
-
border: none; */
|
|
1058
|
-
border: 0.2rem solid var(--action);
|
|
1059
|
-
}
|
|
1060
|
-
|
|
1061
|
-
.files-drop-zone:focus-visible {
|
|
1062
|
-
outline-offset: 0 !important;
|
|
1063
|
-
outline-style: solid !important;
|
|
1064
|
-
outline-color: #fff !important;
|
|
1065
|
-
outline-width: 2px !important;
|
|
1066
|
-
box-shadow: 0 0 0 4px #000 !important;
|
|
1067
|
-
}
|
|
1068
|
-
|
|
1069
|
-
.files-drop-content {
|
|
1070
|
-
pointer-events: none;
|
|
1071
|
-
}
|
|
1072
|
-
|
|
1073
|
-
.files-icon {
|
|
1074
|
-
font-size: 4rem;
|
|
1075
|
-
margin-bottom: 1rem;
|
|
1076
|
-
opacity: 0.7;
|
|
1077
|
-
animation: float 3s ease-in-out infinite;
|
|
1078
|
-
}
|
|
1079
|
-
|
|
1080
|
-
@keyframes float {
|
|
1081
|
-
0%,
|
|
1082
|
-
100% {
|
|
1083
|
-
transform: translateY(0px);
|
|
1084
|
-
}
|
|
1085
|
-
50% {
|
|
1086
|
-
transform: translateY(-10px);
|
|
1087
|
-
}
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
.files-drop-text {
|
|
1091
|
-
font-size: 1.2rem;
|
|
1092
|
-
margin-bottom: 0.5rem;
|
|
1093
|
-
color: #333;
|
|
1094
|
-
font-weight: 500;
|
|
1095
|
-
}
|
|
1096
|
-
|
|
1097
|
-
.files-drop-info {
|
|
1098
|
-
font-size: 0.9rem;
|
|
1099
|
-
color: #666;
|
|
1100
|
-
margin: 0;
|
|
1101
|
-
}
|
|
1102
|
-
|
|
1103
|
-
.files-allowed-types {
|
|
1104
|
-
font-size: 0.85rem;
|
|
1105
|
-
color: #555;
|
|
1106
|
-
margin: 0.75rem 0 0 0;
|
|
1107
|
-
padding: 0.5rem;
|
|
1108
|
-
background-color: rgba(146, 64, 252, 0.1);
|
|
1109
|
-
border-radius: 6px;
|
|
1110
|
-
border-left: 3px solid #ce95e0;
|
|
1111
|
-
}
|
|
1112
|
-
|
|
1113
|
-
.files-allowed-types strong {
|
|
1114
|
-
color: var(--action);
|
|
1115
|
-
}
|
|
1116
|
-
|
|
1117
|
-
.files-input-hidden {
|
|
1118
|
-
display: none;
|
|
1119
|
-
}
|
|
1120
|
-
|
|
1121
|
-
/* Summary */
|
|
1122
|
-
.files-summary {
|
|
1123
|
-
margin: 1.5rem 0;
|
|
1124
|
-
padding: 1rem;
|
|
1125
|
-
background-color: #f8f9fa;
|
|
1126
|
-
border-radius: 8px;
|
|
1127
|
-
border: 1px solid #e9ecef;
|
|
1128
|
-
}
|
|
1129
|
-
|
|
1130
|
-
.files-summary-stats {
|
|
1131
|
-
display: flex;
|
|
1132
|
-
gap: 1rem;
|
|
1133
|
-
margin-bottom: 1rem;
|
|
1134
|
-
flex-wrap: wrap;
|
|
1135
|
-
}
|
|
1136
|
-
|
|
1137
|
-
.stat {
|
|
1138
|
-
padding: 0.5rem 1rem;
|
|
1139
|
-
border-radius: 20px;
|
|
1140
|
-
background-color: #e9ecef;
|
|
1141
|
-
font-size: 0.9rem;
|
|
1142
|
-
display: flex;
|
|
1143
|
-
align-items: center;
|
|
1144
|
-
gap: 0.5rem;
|
|
1145
|
-
}
|
|
1146
|
-
|
|
1147
|
-
.stat.pending {
|
|
1148
|
-
background-color: #fff3cd;
|
|
1149
|
-
color: #856404;
|
|
1150
|
-
}
|
|
1151
|
-
|
|
1152
|
-
.stat.completed {
|
|
1153
|
-
background-color: #d1e7dd;
|
|
1154
|
-
color: #0a3622;
|
|
1155
|
-
}
|
|
1156
|
-
|
|
1157
|
-
.stat.error {
|
|
1158
|
-
background-color: #f8d7da;
|
|
1159
|
-
color: #721c24;
|
|
1160
|
-
}
|
|
1161
|
-
|
|
1162
|
-
.files-summary-actions {
|
|
1163
|
-
display: flex;
|
|
1164
|
-
gap: 0.5rem;
|
|
1165
|
-
flex-wrap: wrap;
|
|
1166
|
-
}
|
|
1167
|
-
|
|
1168
|
-
.action-button {
|
|
1169
|
-
padding: 0.75rem 1.5rem;
|
|
1170
|
-
border: none;
|
|
1171
|
-
border-radius: 6px;
|
|
1172
|
-
cursor: pointer;
|
|
1173
|
-
font-weight: 500;
|
|
1174
|
-
transition: all 0.2s ease;
|
|
1175
|
-
display: flex;
|
|
1176
|
-
align-items: center;
|
|
1177
|
-
gap: 0.5rem;
|
|
1178
|
-
}
|
|
1179
|
-
|
|
1180
|
-
.action-button.primary {
|
|
1181
|
-
background-color: #1ea7fd;
|
|
1182
|
-
color: white;
|
|
1183
|
-
}
|
|
1184
|
-
|
|
1185
|
-
.action-button.primary:hover {
|
|
1186
|
-
background-color: #1890ff;
|
|
1187
|
-
transform: translateY(-1px);
|
|
1188
|
-
}
|
|
1189
|
-
|
|
1190
|
-
.action-button.secondary {
|
|
1191
|
-
background-color: #6c757d;
|
|
1192
|
-
color: white;
|
|
1193
|
-
}
|
|
1194
|
-
|
|
1195
|
-
.action-button.secondary:hover {
|
|
1196
|
-
background-color: #5a6268;
|
|
1197
|
-
transform: translateY(-1px);
|
|
1198
|
-
}
|
|
1199
|
-
|
|
1200
|
-
/* Files List */
|
|
1201
|
-
.files-list {
|
|
1202
|
-
margin-top: 1.5rem;
|
|
1203
|
-
}
|
|
1204
|
-
|
|
1205
|
-
.files-list h4 {
|
|
1206
|
-
margin-bottom: 1rem;
|
|
1207
|
-
color: #333;
|
|
1208
|
-
font-size: 1.1rem;
|
|
1209
|
-
font-weight: 600;
|
|
1210
|
-
}
|
|
1211
|
-
|
|
1212
|
-
.files-items {
|
|
1213
|
-
list-style: none;
|
|
1214
|
-
padding: 0;
|
|
1215
|
-
margin: 0;
|
|
1216
|
-
}
|
|
1217
|
-
|
|
1218
|
-
.file-item {
|
|
1219
|
-
display: flex;
|
|
1220
|
-
align-items: center;
|
|
1221
|
-
gap: 1rem;
|
|
1222
|
-
padding: 1rem;
|
|
1223
|
-
border: 1px solid #e9ecef;
|
|
1224
|
-
border-radius: 8px;
|
|
1225
|
-
margin-bottom: 0.75rem;
|
|
1226
|
-
background-color: white;
|
|
1227
|
-
transition: all 0.2s ease;
|
|
1228
|
-
position: relative;
|
|
1229
|
-
}
|
|
1230
|
-
|
|
1231
|
-
.file-item:hover {
|
|
1232
|
-
background-color: #f8f9fa;
|
|
1233
|
-
border-color: #dee2e6;
|
|
1234
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
1235
|
-
}
|
|
1236
|
-
|
|
1237
|
-
.file-item.uploading {
|
|
1238
|
-
background-color: #e6f7ff;
|
|
1239
|
-
border-color: #91d5ff;
|
|
1240
|
-
}
|
|
1241
|
-
|
|
1242
|
-
.file-item.completed {
|
|
1243
|
-
background-color: #f6ffed;
|
|
1244
|
-
border-color: #b7eb8f;
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
|
-
.file-item.error {
|
|
1248
|
-
background-color: #fff2f0;
|
|
1249
|
-
border-color: #ffccc7;
|
|
1250
|
-
}
|
|
1251
|
-
|
|
1252
|
-
.file-icon-status {
|
|
1253
|
-
font-size: 1.5rem;
|
|
1254
|
-
min-width: 2rem;
|
|
1255
|
-
text-align: center;
|
|
1256
|
-
}
|
|
1257
|
-
|
|
1258
|
-
.file-info {
|
|
1259
|
-
flex: 1;
|
|
1260
|
-
min-width: 0;
|
|
1261
|
-
}
|
|
1262
|
-
|
|
1263
|
-
.file-name {
|
|
1264
|
-
font-weight: 500;
|
|
1265
|
-
color: #333;
|
|
1266
|
-
margin-bottom: 0.5rem;
|
|
1267
|
-
word-break: break-word;
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1270
|
-
.file-details {
|
|
1271
|
-
display: flex;
|
|
1272
|
-
gap: 1rem;
|
|
1273
|
-
font-size: 0.85rem;
|
|
1274
|
-
color: #666;
|
|
1275
|
-
flex-wrap: wrap;
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
.file-size {
|
|
1279
|
-
color: #666;
|
|
1280
|
-
}
|
|
1281
|
-
|
|
1282
|
-
.file-status {
|
|
1283
|
-
color: #1ea7fd;
|
|
1284
|
-
font-weight: 500;
|
|
1285
|
-
}
|
|
1286
|
-
|
|
1287
|
-
.file-error {
|
|
1288
|
-
color: #dc3545;
|
|
1289
|
-
font-weight: 500;
|
|
1290
|
-
}
|
|
1291
|
-
|
|
1292
|
-
.progress-bar {
|
|
1293
|
-
width: 100%;
|
|
1294
|
-
height: 4px;
|
|
1295
|
-
background-color: #e9ecef;
|
|
1296
|
-
border-radius: 2px;
|
|
1297
|
-
margin-top: 0.5rem;
|
|
1298
|
-
overflow: hidden;
|
|
1299
|
-
}
|
|
1300
|
-
|
|
1301
|
-
.progress-fill {
|
|
1302
|
-
height: 100%;
|
|
1303
|
-
background-color: #1ea7fd;
|
|
1304
|
-
transition: width 0.3s ease;
|
|
1305
|
-
border-radius: 2px;
|
|
1306
|
-
}
|
|
1307
|
-
|
|
1308
|
-
.file-actions {
|
|
1309
|
-
display: flex;
|
|
1310
|
-
gap: 0.5rem;
|
|
1311
|
-
}
|
|
1312
|
-
|
|
1313
|
-
.action-btn {
|
|
1314
|
-
background: none;
|
|
1315
|
-
border: 1px solid transparent;
|
|
1316
|
-
padding: 0.5rem;
|
|
1317
|
-
border-radius: 6px;
|
|
1318
|
-
cursor: pointer;
|
|
1319
|
-
font-size: 1rem;
|
|
1320
|
-
transition: all 0.2s ease;
|
|
1321
|
-
min-width: 2.5rem;
|
|
1322
|
-
height: 2.5rem;
|
|
1323
|
-
display: flex;
|
|
1324
|
-
align-items: center;
|
|
1325
|
-
justify-content: center;
|
|
1326
|
-
}
|
|
1327
|
-
|
|
1328
|
-
.action-btn.upload {
|
|
1329
|
-
color: #1ea7fd;
|
|
1330
|
-
border-color: #1ea7fd;
|
|
1331
|
-
}
|
|
1332
|
-
|
|
1333
|
-
.action-btn.upload:hover {
|
|
1334
|
-
background-color: #1ea7fd;
|
|
1335
|
-
color: white;
|
|
1336
|
-
}
|
|
1337
|
-
|
|
1338
|
-
.action-btn.retry {
|
|
1339
|
-
color: #fd7e14;
|
|
1340
|
-
border-color: #fd7e14;
|
|
1341
|
-
}
|
|
1342
|
-
|
|
1343
|
-
.action-btn.retry:hover {
|
|
1344
|
-
background-color: #fd7e14;
|
|
1345
|
-
color: white;
|
|
1346
|
-
}
|
|
1347
|
-
|
|
1348
|
-
.action-btn.remove {
|
|
1349
|
-
color: var(--action);
|
|
1350
|
-
border-color: var(--action);
|
|
1351
|
-
}
|
|
1352
|
-
|
|
1353
|
-
.action-btn.remove:hover {
|
|
1354
|
-
background-color: var(--action);
|
|
1355
|
-
color: white;
|
|
1356
|
-
}
|
|
1357
|
-
|
|
1358
|
-
.files-icon {
|
|
1359
|
-
font-size: 3rem;
|
|
1360
|
-
}
|
|
1361
|
-
|
|
1362
|
-
.files-drop-text {
|
|
1363
|
-
font-size: 1rem;
|
|
1364
|
-
}
|
|
1365
|
-
|
|
1366
|
-
.files-summary-stats {
|
|
1367
|
-
flex-direction: column;
|
|
1368
|
-
gap: 0.5rem;
|
|
1369
|
-
}
|
|
1370
|
-
|
|
1371
|
-
.files-summary-actions {
|
|
1372
|
-
flex-direction: column;
|
|
1373
|
-
}
|
|
1374
|
-
|
|
1375
|
-
.action-button {
|
|
1376
|
-
justify-content: center;
|
|
1377
|
-
}
|
|
1378
|
-
|
|
1379
|
-
.file-item {
|
|
1380
|
-
flex-direction: column;
|
|
1381
|
-
align-items: flex-start;
|
|
1382
|
-
gap: 0.75rem;
|
|
1383
|
-
}
|
|
1384
|
-
|
|
1385
|
-
.file-details {
|
|
1386
|
-
flex-direction: column;
|
|
1387
|
-
gap: 0.25rem;
|
|
1388
|
-
}
|
|
1389
|
-
|
|
1390
|
-
.file-actions {
|
|
1391
|
-
align-self: flex-end;
|
|
1392
|
-
}
|
|
1393
|
-
|
|
1394
|
-
.files-drop-zone {
|
|
1395
|
-
padding: 1.5rem 1rem;
|
|
1396
|
-
}
|
|
1397
|
-
|
|
1398
|
-
.file-item {
|
|
1399
|
-
padding: 0.75rem;
|
|
1400
|
-
}
|
|
1401
|
-
|
|
1402
|
-
/* ---------- ADD FILES ---------- */
|
|
1403
|
-
|
|
1404
|
-
/* ExploreFiles.tsx */
|
|
1405
|
-
|
|
1406
|
-
.invisible {
|
|
1407
|
-
display: none;
|
|
1408
|
-
width: 1px;
|
|
1409
|
-
}
|
|
1410
|
-
|
|
1411
|
-
.filePickLabel {
|
|
1412
|
-
display: flex;
|
|
1413
|
-
align-items: center;
|
|
1414
|
-
justify-content: flex-start;
|
|
1415
|
-
width: 100%;
|
|
1416
|
-
margin: 0;
|
|
1417
|
-
padding: 0;
|
|
1418
|
-
height: 48px;
|
|
1419
|
-
border: 1px solid #747474;
|
|
1420
|
-
border-radius: 8px;
|
|
1421
|
-
}
|
|
1422
|
-
.filePickLabel:focus {
|
|
1423
|
-
border: #000000 2px solid;
|
|
1424
|
-
box-shadow: none;
|
|
1425
|
-
}
|
|
1426
|
-
.filePickLabel .filePickButton {
|
|
1427
|
-
cursor: pointer;
|
|
1428
|
-
padding: 16px;
|
|
1429
|
-
height: 100%;
|
|
1430
|
-
background: #747474;
|
|
1431
|
-
border-top-left-radius: 4px;
|
|
1432
|
-
border-bottom-left-radius: 4px;
|
|
1433
|
-
display: flex;
|
|
1434
|
-
align-items: center;
|
|
1435
|
-
flex-direction: column;
|
|
1436
|
-
justify-content: center;
|
|
1437
|
-
align-self: stretch;
|
|
1438
|
-
color: #ffff;
|
|
1439
|
-
font-family: Arial;
|
|
1440
|
-
font-size: 1.6rem;
|
|
1441
|
-
font-style: normal;
|
|
1442
|
-
font-weight: 400;
|
|
1443
|
-
line-height: 24px;
|
|
1444
|
-
}
|
|
1445
|
-
|
|
1446
|
-
.filePickButton {
|
|
1447
|
-
width: auto !important;
|
|
1448
|
-
border: none;
|
|
1449
|
-
margin-left: 0px !important;
|
|
1450
|
-
}
|
|
1451
|
-
|
|
1452
|
-
.filePickButton.error {
|
|
1453
|
-
background: var(--error) !important;
|
|
1454
|
-
color: #fff !important;
|
|
1455
|
-
}
|
|
1456
|
-
|
|
1457
|
-
.filePickLabel .filePickText {
|
|
1458
|
-
padding-left: 16px;
|
|
1459
|
-
color: #000;
|
|
1460
|
-
|
|
1461
|
-
font-family: Arial;
|
|
1462
|
-
font-size: 1.6rem;
|
|
1463
|
-
font-style: normal;
|
|
1464
|
-
font-weight: 400;
|
|
1465
|
-
line-height: 24px;
|
|
1466
|
-
}
|
|
1467
|
-
|
|
1468
|
-
.inputContainer {
|
|
1469
|
-
display: flex;
|
|
1470
|
-
align-items: center;
|
|
1471
|
-
justify-content: center;
|
|
1472
|
-
width: 100%;
|
|
1473
|
-
height: 100%;
|
|
1474
|
-
}
|
|
1475
|
-
|
|
1476
|
-
.inputContainer button {
|
|
1477
|
-
margin: 0;
|
|
1478
|
-
/* padding: 0; */
|
|
1479
|
-
padding: 8px 24px;
|
|
1480
|
-
margin-left: 16px;
|
|
1481
|
-
height: 50px;
|
|
1482
|
-
width: 200px;
|
|
1483
|
-
}
|
|
1484
|
-
|
|
1485
|
-
.inputContainer input[type='text'] {
|
|
1486
|
-
font-size: 1.6rem;
|
|
1487
|
-
}
|
|
1488
|
-
|
|
1489
|
-
/* .uploadedDot.uploadFailed {
|
|
1490
|
-
background: var(--red-green-red, var(--error));
|
|
1491
|
-
|
|
1492
|
-
color: var(--neutral-300, #fff);
|
|
1493
|
-
} */
|
|
1494
|
-
|
|
1495
|
-
/* Clipboard.tsx */
|
|
1496
|
-
|
|
1497
|
-
.ClipboardFiles {
|
|
1498
|
-
display: flex;
|
|
1499
|
-
flex-direction: column;
|
|
1500
|
-
align-items: center;
|
|
1501
|
-
gap: 16px;
|
|
1502
|
-
padding: 16px;
|
|
1503
|
-
|
|
1504
|
-
margin-top: 32px;
|
|
1505
|
-
background-color: #222;
|
|
1506
|
-
animation-name: color;
|
|
1507
|
-
animation-duration: 1s;
|
|
1508
|
-
animation-iteration-count: infinite;
|
|
1509
|
-
|
|
1510
|
-
border-radius: 8px;
|
|
1511
|
-
cursor: pointer;
|
|
1512
|
-
}
|
|
1513
|
-
|
|
1514
|
-
.ClipboardFiles.clicked {
|
|
1515
|
-
background-color: #ccc;
|
|
1516
|
-
animation-name: none;
|
|
1517
|
-
cursor: copy;
|
|
1518
|
-
}
|
|
1519
|
-
|
|
1520
|
-
@keyframes color {
|
|
1521
|
-
0% {
|
|
1522
|
-
background-color: #ddd;
|
|
1523
|
-
}
|
|
1524
|
-
25% {
|
|
1525
|
-
background-color: #ccc;
|
|
1526
|
-
}
|
|
1527
|
-
50% {
|
|
1528
|
-
background-color: #bbb;
|
|
1529
|
-
}
|
|
1530
|
-
75% {
|
|
1531
|
-
background-color: #ccc;
|
|
1532
|
-
}
|
|
1533
|
-
100% {
|
|
1534
|
-
background-color: #ddd;
|
|
1535
|
-
}
|
|
1536
|
-
}
|
|
1537
|
-
|
|
1538
|
-
/* DropFiles.tsx */
|
|
1539
|
-
|
|
1540
|
-
.DropZone {
|
|
1541
|
-
color: #000;
|
|
1542
|
-
margin-top: 20px;
|
|
1543
|
-
margin-bottom: 16px;
|
|
1544
|
-
font-size: 2rem;
|
|
1545
|
-
display: inline-flex;
|
|
1546
|
-
width: 100%;
|
|
1547
|
-
height: 180px;
|
|
1548
|
-
position: relative;
|
|
1549
|
-
clip-path: inset(0 round 8px 8px 8px 8px);
|
|
1550
|
-
background: var(--neutral-350, #f7f7f7);
|
|
1551
|
-
align-items: center;
|
|
1552
|
-
justify-content: center;
|
|
1553
|
-
text-align: center;
|
|
1554
|
-
gap: 10px;
|
|
1555
|
-
flex-direction: column;
|
|
1556
|
-
cursor: pointer;
|
|
1557
|
-
}
|
|
1558
|
-
|
|
1559
|
-
.DropZone::before {
|
|
1560
|
-
content: '';
|
|
1561
|
-
position: absolute;
|
|
1562
|
-
left: -7px;
|
|
1563
|
-
top: -7px;
|
|
1564
|
-
right: -7px;
|
|
1565
|
-
bottom: -7px;
|
|
1566
|
-
border: 9px dashed rgba(0, 0, 0, 0.6);
|
|
1567
|
-
border-radius: 15px 15px 15px 15px;
|
|
1568
|
-
box-sizing: border-box;
|
|
1569
|
-
}
|
|
1570
|
-
|
|
1571
|
-
.DropZone:hover {
|
|
1572
|
-
background: var(--neutral-350, #f7f7f7);
|
|
1573
|
-
opacity: 0.9;
|
|
1574
|
-
cursor: copy;
|
|
1575
|
-
}
|
|
1576
|
-
|
|
1577
|
-
.DropZone-label-container {
|
|
1578
|
-
display: flex;
|
|
1579
|
-
}
|
|
1580
|
-
|
|
1581
|
-
.DropZone svg {
|
|
1582
|
-
border-radius: 55%;
|
|
1583
|
-
background: var(--purple-purple-900-primary, var(--action));
|
|
1584
|
-
border: 6px solid var(--action);
|
|
1585
|
-
margin-top: 17px;
|
|
1586
|
-
margin-right: 16px;
|
|
1587
|
-
height: 1.5rem;
|
|
1588
|
-
width: 1.5rem;
|
|
1589
|
-
}
|
|
1590
|
-
|
|
1591
|
-
/* AddFiles.tsx */ /* SelectedFiles.tsx */
|
|
1592
|
-
.lastCol {
|
|
1593
|
-
display: flex;
|
|
1594
|
-
justify-content: flex-end;
|
|
1595
|
-
max-width: 62px;
|
|
1596
|
-
padding: 0;
|
|
1597
|
-
margin: 0;
|
|
1598
|
-
}
|
|
1599
|
-
|
|
1600
|
-
.fileInListContainer,
|
|
1601
|
-
.inputContainer,
|
|
1602
|
-
.DropZone {
|
|
1603
|
-
max-width: 624px;
|
|
1604
|
-
}
|
|
1605
|
-
|
|
1606
|
-
.fileListUnorderedList {
|
|
1607
|
-
list-style: none !important;
|
|
1608
|
-
padding: 0;
|
|
1609
|
-
margin: 0;
|
|
1610
|
-
}
|
|
1611
|
-
|
|
1612
|
-
.fileInList {
|
|
1613
|
-
width: 100%;
|
|
1614
|
-
}
|
|
1615
|
-
|
|
1616
|
-
.fileInList .row {
|
|
1617
|
-
display: flex;
|
|
1618
|
-
justify-content: space-between;
|
|
1619
|
-
align-items: center;
|
|
1620
|
-
max-width: 100% !important;
|
|
1621
|
-
border: 0px solid black;
|
|
1622
|
-
|
|
1623
|
-
padding: 0px 0px;
|
|
1624
|
-
--bs-gutter-x: 0px !important;
|
|
1625
|
-
}
|
|
1626
|
-
|
|
1627
|
-
.fileInList .row .col {
|
|
1628
|
-
padding: 0;
|
|
1629
|
-
margin: 0;
|
|
1630
|
-
}
|
|
1631
|
-
|
|
1632
|
-
.fileInList .row .lastCol {
|
|
1633
|
-
display: flex;
|
|
1634
|
-
justify-content: flex-end;
|
|
1635
|
-
}
|
|
1636
|
-
|
|
1637
|
-
.fileItem {
|
|
1638
|
-
display: grid !important;
|
|
1639
|
-
grid-template-columns: 26px 1fr 60px;
|
|
1640
|
-
margin: 0 1px 1.3rem 0;
|
|
1641
|
-
}
|
|
1642
|
-
|
|
1643
|
-
.fileInList .makeSpace {
|
|
1644
|
-
border-bottom: 1px solid #747474;
|
|
1645
|
-
}
|
|
1646
|
-
|
|
1647
|
-
.desktopFileName,
|
|
1648
|
-
.mobileFirstFileName {
|
|
1649
|
-
display: block;
|
|
1650
|
-
}
|
|
1651
|
-
|
|
1652
|
-
.selectedFilesLinkButton {
|
|
1653
|
-
display: flex;
|
|
1654
|
-
padding: 0;
|
|
1655
|
-
stroke-width: 2px;
|
|
1656
|
-
stroke: var(--purple-900-primary, var(--action));
|
|
1657
|
-
color: var(--purple-900-primary, var(--action));
|
|
1658
|
-
font-size: 1.6rem;
|
|
1659
|
-
line-height: 24px;
|
|
1660
|
-
text-decoration: none;
|
|
1661
|
-
cursor: pointer;
|
|
1662
|
-
background-color: transparent;
|
|
1663
|
-
border: 0px;
|
|
1664
|
-
}
|
|
1665
|
-
|
|
1666
|
-
.selectedFilesLinkButton:hover {
|
|
1667
|
-
color: var(--purple-900-primary, var(--action));
|
|
1668
|
-
text-decoration: underline;
|
|
1669
|
-
}
|
|
1670
|
-
|
|
1671
|
-
.addFilesMandatory {
|
|
1672
|
-
margin-bottom: 16px;
|
|
1673
|
-
margin-top: 0px;
|
|
1674
|
-
}
|
|
1675
|
-
|
|
1676
|
-
.addFilesMandatory.error {
|
|
1677
|
-
display: inline;
|
|
1678
|
-
margin-bottom: 0px;
|
|
1679
|
-
}
|
|
1680
|
-
|
|
1681
|
-
.pts-addFile-error-container {
|
|
1682
|
-
position: relative;
|
|
1683
|
-
display: flex;
|
|
1684
|
-
max-width: 532px;
|
|
1685
|
-
padding: 1.6rem 2.4rem 0 2.4rem;
|
|
1686
|
-
margin: 0 0 1.6rem 0;
|
|
1687
|
-
}
|
|
1688
|
-
|
|
1689
|
-
.pts-addFile-error-container li {
|
|
1690
|
-
display: flex;
|
|
1691
|
-
cursor: unset;
|
|
1692
|
-
padding: 0 20px 0 0;
|
|
1693
|
-
width: 100%;
|
|
1694
|
-
margin-bottom: 1.6rem;
|
|
1695
|
-
}
|
|
1696
|
-
|
|
1697
|
-
.addFile-error-list-container {
|
|
1698
|
-
width: 95%;
|
|
1699
|
-
}
|
|
1700
|
-
|
|
1701
|
-
.error-close {
|
|
1702
|
-
line-height: unset;
|
|
1703
|
-
}
|
|
1704
|
-
|
|
1705
|
-
.addfileserror {
|
|
1706
|
-
margin: 0.8rem 0;
|
|
1707
|
-
}
|
|
1708
|
-
|
|
1709
|
-
.errorMessageAddingFile {
|
|
1710
|
-
color: var(--red-green-red, var(--error));
|
|
1711
|
-
font-size: 1.3rem;
|
|
1712
|
-
line-height: 1.6rem;
|
|
1713
|
-
padding-top: 0.8rem !important;
|
|
1714
|
-
max-width: 380px;
|
|
1715
|
-
}
|
|
1716
|
-
|
|
1717
|
-
.uploadedDot {
|
|
1718
|
-
border-radius: 17px;
|
|
1719
|
-
background: var(--red-green-green, #008e55);
|
|
1720
|
-
display: flex;
|
|
1721
|
-
width: 1rem;
|
|
1722
|
-
height: 1rem;
|
|
1723
|
-
padding: 4px;
|
|
1724
|
-
margin: 0 8px 10px 0;
|
|
1725
|
-
}
|
|
1726
|
-
|
|
1727
|
-
.uploadedDot svg {
|
|
1728
|
-
width: 1rem;
|
|
1729
|
-
height: 1rem;
|
|
1730
|
-
stroke-width: 1.5px;
|
|
1731
|
-
stroke: var(--neutral-300, #fff);
|
|
1732
|
-
flex-shrink: 0;
|
|
1733
|
-
}
|
|
1734
|
-
|
|
1735
|
-
/* Indicator.tsx */
|
|
1736
|
-
|
|
1737
|
-
.uploadIndicator {
|
|
1738
|
-
height: 6px;
|
|
1739
|
-
flex-shrink: 0;
|
|
1740
|
-
margin-top: 0px;
|
|
1741
|
-
border-radius: 8px 8px 8px 8px;
|
|
1742
|
-
}
|
|
1743
|
-
|
|
1744
|
-
.uploadIndicator.uploadDone {
|
|
1745
|
-
width: 100%;
|
|
1746
|
-
background: var(--red-green-green, #008e55);
|
|
1747
|
-
}
|
|
1748
|
-
.uploadIndicator.uploadFailed {
|
|
1749
|
-
width: 10%;
|
|
1750
|
-
background: var(--red-green-red, var(--error));
|
|
1751
|
-
}
|
|
1752
|
-
.uploadIndicator.uploadLoading {
|
|
1753
|
-
width: 50%;
|
|
1754
|
-
background: var(--red-green-red, rgb(211, 165, 0));
|
|
1755
|
-
}
|
|
1756
|
-
/* ---------- END FILE UPLOAD ---------- */
|
|
1757
|
-
|
|
1758
747
|
.unsetMargin-Padding {
|
|
1759
748
|
margin: 0;
|
|
1760
749
|
padding: 0;
|
|
1761
|
-
}
|
|
750
|
+
}
|