optimized-react-component-library-xyz123 1.1.29 → 1.2.2
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.d.mts +94 -3
- package/dist/index.d.ts +94 -3
- package/dist/index.js +1013 -70
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1009 -68
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
- package/src/css/darkMode.css +107 -2
- package/src/css/mobileView.css +88 -0
- package/src/css/styles.css +381 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optimized-react-component-library-xyz123",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "A modern React component library using TypeScript with React 19 support.",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -83,6 +83,7 @@
|
|
|
83
83
|
"date-fns": "^4.1.0",
|
|
84
84
|
"dompurify": "^3.2.6",
|
|
85
85
|
"react-bootstrap": "^2.10.10",
|
|
86
|
-
"react-dropzone": "^14.3.8"
|
|
86
|
+
"react-dropzone": "^14.3.8",
|
|
87
|
+
"react-router-dom": "^7.13.0"
|
|
87
88
|
}
|
|
88
89
|
}
|
package/src/css/darkMode.css
CHANGED
|
@@ -67,6 +67,95 @@
|
|
|
67
67
|
color: var(--dark-text);
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
+
|
|
71
|
+
/*--Navigation header / menu ----*/
|
|
72
|
+
|
|
73
|
+
.pts-navigation-header-container {
|
|
74
|
+
background: var(--dark-background-second);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.pts-navigation-header-logo-container,
|
|
78
|
+
.pts-navigation-header-headline-container {
|
|
79
|
+
border-color: var(--dark-background-third)!important;
|
|
80
|
+
}
|
|
81
|
+
.pts-navigation-header-nav-container button svg path,
|
|
82
|
+
.pts-navigation-header-nav-container button svg line{
|
|
83
|
+
color: var(--dark-text);
|
|
84
|
+
fill: var(--dark-text);
|
|
85
|
+
stroke: var(--dark-text);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.pts-navigation-header-container svg path {
|
|
89
|
+
fill: var(--dark-text);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
.pts-navigation-header-nav-container,
|
|
94
|
+
.pts-navigation-header-button-label {
|
|
95
|
+
background: var(--dark-background-second);
|
|
96
|
+
color: var(--dark-text);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.pts-expand-icon svg rect{
|
|
100
|
+
fill: var(--dark-action);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
.pts-contract-icon svg rect{
|
|
105
|
+
fill: var(--dark-orientation-active);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
.pts-navigation-close-text{
|
|
110
|
+
color: var(--dark-text);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.pts-navigation-close-button{
|
|
114
|
+
background: var(--dark-main);
|
|
115
|
+
color: var(--dark-text);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.pts-navigation-close-button svg path{
|
|
119
|
+
stroke: var(--dark-text);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.pts-navigation-link-expand-button{
|
|
123
|
+
background-color: var(--dark-main);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.pts-navigation-link-expand-button svg path{
|
|
127
|
+
stroke: var(--dark-main)!important;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.pts-navigation-with-close-button,
|
|
131
|
+
.pts-navigation-menu-container,
|
|
132
|
+
.pts-navigation-button,
|
|
133
|
+
.pts-navigation-close-container,
|
|
134
|
+
.pts-sub-navigation-item,
|
|
135
|
+
.pts-sub-navigation-item a,
|
|
136
|
+
.pts-navigation-button > a {
|
|
137
|
+
background: var(--dark-main);
|
|
138
|
+
color: var(--dark-text);
|
|
139
|
+
border-color: var(--dark-background-third);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.pts-navigation-button a {
|
|
143
|
+
|
|
144
|
+
color: var(--dark-text);
|
|
145
|
+
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.pts-sub-navigation-container {
|
|
149
|
+
background-color: #d5b9dd;
|
|
150
|
+
border-left: var(--dark-action) 5px solid;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/*--------BREADCRUMBS------*/
|
|
154
|
+
.pts-breadcrumbs {
|
|
155
|
+
background-color: var(--dark-background-third);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
|
|
70
159
|
/*-------MAIN CONTENT-------*/
|
|
71
160
|
section,
|
|
72
161
|
.pts-form-step-header {
|
|
@@ -87,6 +176,7 @@
|
|
|
87
176
|
.MoreInfoIcon svg {
|
|
88
177
|
background-color: var(--dark-action);
|
|
89
178
|
}
|
|
179
|
+
|
|
90
180
|
|
|
91
181
|
.pts-serviceHeadlineAndBody-container a svg path,
|
|
92
182
|
.MoreInfoIcon svg path {
|
|
@@ -161,8 +251,6 @@
|
|
|
161
251
|
color: var(--dark-error);
|
|
162
252
|
}
|
|
163
253
|
|
|
164
|
-
.pts-root-question-input-error-border,
|
|
165
|
-
.pts-root-question-input-error-border,
|
|
166
254
|
.pts-root-question-input-error-border {
|
|
167
255
|
border: 0.15rem solid var(--dark-error) !important;
|
|
168
256
|
}
|
|
@@ -405,4 +493,21 @@
|
|
|
405
493
|
input:-moz-autofill {
|
|
406
494
|
box-shadow: 0 0 0 1000px transparent inset !important;
|
|
407
495
|
}
|
|
496
|
+
|
|
497
|
+
/***NYTT FLYTTA?? ***/
|
|
498
|
+
.pts-standard-link-icon svg {
|
|
499
|
+
background-color: var(--dark-action);
|
|
500
|
+
}
|
|
501
|
+
.pts-standard-link svg path{
|
|
502
|
+
fill: var(--dark-main);
|
|
503
|
+
color: #000000;
|
|
504
|
+
}
|
|
505
|
+
.pts-icon-circle {
|
|
506
|
+
border: 2px solid var(--dark-action);
|
|
507
|
+
background-color: var(--dark-action);
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.pts-collapse-content{
|
|
511
|
+
color:var(--dark-text);
|
|
512
|
+
}
|
|
408
513
|
}
|
package/src/css/mobileView.css
CHANGED
|
@@ -3,6 +3,94 @@
|
|
|
3
3
|
/********************************************/
|
|
4
4
|
|
|
5
5
|
@media (max-width: 1085px) {
|
|
6
|
+
|
|
7
|
+
.pts-navigation-header-container {
|
|
8
|
+
padding:unset;
|
|
9
|
+
border-bottom: 2px solid #ddd;
|
|
10
|
+
}
|
|
11
|
+
.pts-navigation-header-content {
|
|
12
|
+
display: block;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.pts-navigation-header-logo-container {
|
|
16
|
+
padding: 1.6rem 0px;
|
|
17
|
+
width: 100%;
|
|
18
|
+
text-align: center;
|
|
19
|
+
border-bottom: 2px solid #ddd;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.pts-navigation-header-headline-container{
|
|
23
|
+
border-bottom: 2px solid #ddd;
|
|
24
|
+
height: 48px;
|
|
25
|
+
align-items: center;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.pts-site-headline,
|
|
29
|
+
.pts-navigation-header-headline-container p{
|
|
30
|
+
font-size: 1.6rem;
|
|
31
|
+
top:auto;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.pts-navigation-header-nav-container {
|
|
35
|
+
align-items: center;
|
|
36
|
+
justify-content: center;
|
|
37
|
+
height: 48px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.pts-navigation-header-nav-container button {
|
|
41
|
+
width: 100%;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
.pts-navigation-close-button {
|
|
46
|
+
align-items: center;
|
|
47
|
+
justify-content: center;
|
|
48
|
+
margin-top: 1rem;
|
|
49
|
+
margin-bottom: 1rem;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/**Navigation menu**/
|
|
53
|
+
|
|
54
|
+
.pts-navigation-menu-container.open{
|
|
55
|
+
top: -50px;
|
|
56
|
+
width: 100%;
|
|
57
|
+
max-width: unset;
|
|
58
|
+
position: relative;
|
|
59
|
+
height: 100%;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.pts-navigation-menu-container {
|
|
63
|
+
transform: translateY(-100%);
|
|
64
|
+
transition: transform 0.35s ease;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.pts-navigation-menu-container.open {
|
|
68
|
+
transform: translateY(0);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.pts-navigation-close-container {
|
|
72
|
+
position: relative;
|
|
73
|
+
padding: 1px 1px;
|
|
74
|
+
height: 48px;
|
|
75
|
+
justify-content: center;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.nav-parent-button {
|
|
79
|
+
padding-right: 5px !important;
|
|
80
|
+
border: 0px !important;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**Breadcrumbs**/
|
|
84
|
+
.pts-breadcrumbs a,
|
|
85
|
+
.pts-crumb-label {
|
|
86
|
+
font-size: 14px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.pts-breadcrumbs {
|
|
90
|
+
padding-left: 20px;
|
|
91
|
+
height: 30px !important;
|
|
92
|
+
}
|
|
93
|
+
|
|
6
94
|
.pts-footer-content {
|
|
7
95
|
display: flex;
|
|
8
96
|
height: auto;
|
package/src/css/styles.css
CHANGED
|
@@ -119,26 +119,7 @@ section {
|
|
|
119
119
|
margin-right: 0.8rem;
|
|
120
120
|
margin-top: 1.6rem;
|
|
121
121
|
}
|
|
122
|
-
/* ?? Make changes in html ?? ----
|
|
123
|
-
.pts-button{
|
|
124
|
-
background-color: var(--action);
|
|
125
|
-
border: 2px solid var(--action);
|
|
126
|
-
color: var(--main);
|
|
127
|
-
padding: 8px 20px;
|
|
128
|
-
border-radius: 8px;
|
|
129
|
-
font-size: 16px;
|
|
130
|
-
cursor: pointer;
|
|
131
|
-
margin-left: 1.6rem;
|
|
132
|
-
}
|
|
133
122
|
|
|
134
|
-
.pts-button:focus,
|
|
135
|
-
.pts-button:hover{
|
|
136
|
-
background-color: var(--main);
|
|
137
|
-
border: 2px solid var(--action);
|
|
138
|
-
color: var(--action);
|
|
139
|
-
transition: 0.2s;
|
|
140
|
-
}
|
|
141
|
-
--- ?? Make changes in html ?? */
|
|
142
123
|
|
|
143
124
|
p[aria-live='assertive']:empty {
|
|
144
125
|
margin: 0;
|
|
@@ -367,15 +348,298 @@ input:focus-visible:-webkit-autofill {
|
|
|
367
348
|
text-decoration: underline 0.2rem;
|
|
368
349
|
}
|
|
369
350
|
|
|
351
|
+
/**Header with navigation**/
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
.pts-navigation-header-container {
|
|
356
|
+
display: flex;
|
|
357
|
+
min-height: 80px;
|
|
358
|
+
padding: 0px 70px;
|
|
359
|
+
align-items: center;
|
|
360
|
+
justify-content: space-between;
|
|
361
|
+
background-color: var(--main);
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.pts-navigation-header-content {
|
|
365
|
+
width: 100%;
|
|
366
|
+
display: grid;
|
|
367
|
+
grid-template-columns: 1fr auto 1fr;
|
|
368
|
+
align-items: center;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
.pts-navigation-header-logo svg {
|
|
373
|
+
height: 4.7rem;
|
|
374
|
+
width: auto;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.pts-navigation-header-headline-container{
|
|
378
|
+
display:flex;
|
|
379
|
+
justify-content: center;
|
|
380
|
+
align-items: flex-end;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.pts-navigation-header-headline-container p{
|
|
384
|
+
position: relative;
|
|
385
|
+
font-family: 'Aeonik';
|
|
386
|
+
font-size: 24px;
|
|
387
|
+
font-weight: 700;
|
|
388
|
+
top: 8px;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.pts-navigation-header-icons{
|
|
392
|
+
position: relative;
|
|
393
|
+
top: 2px;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.pts-close-icon{
|
|
397
|
+
position: relative;
|
|
398
|
+
bottom: -1px;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.pts-open-icon{
|
|
402
|
+
position: relative;
|
|
403
|
+
top: 4px;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.pts-navigation-overlay{
|
|
407
|
+
position: fixed;
|
|
408
|
+
left: 0;
|
|
409
|
+
top: 0;
|
|
410
|
+
width: 100%;
|
|
411
|
+
height: 100%;
|
|
412
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
413
|
+
display: flex;
|
|
414
|
+
align-items: center;
|
|
415
|
+
justify-content: center;
|
|
416
|
+
z-index: 998;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.pts-navigation-header-nav-container{
|
|
420
|
+
display: flex;
|
|
421
|
+
justify-content: flex-end;
|
|
422
|
+
width: 100%;
|
|
423
|
+
align-items: flex-end;
|
|
424
|
+
height: 5rem;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.pts-navigation-header-nav-container button {
|
|
428
|
+
background: none;
|
|
429
|
+
line-height: 2.4rem;
|
|
430
|
+
text-decoration-skip-ink: none;
|
|
431
|
+
border: none;
|
|
432
|
+
color: var(--action);
|
|
433
|
+
font-size: 1.6rem;
|
|
434
|
+
padding: 0;
|
|
435
|
+
cursor: pointer;
|
|
436
|
+
width: 13rem;
|
|
437
|
+
z-index: 900;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.pts-navigation-header-button-label {
|
|
441
|
+
position: relative;
|
|
442
|
+
padding-left: 0.8rem;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
/******NAVIGATION MENU********/
|
|
447
|
+
.pts-navigation-menu-container {
|
|
448
|
+
position: fixed;
|
|
449
|
+
top: 0;
|
|
450
|
+
right: 0;
|
|
451
|
+
width: 100%;
|
|
452
|
+
max-width: 570px;
|
|
453
|
+
z-index: 999;
|
|
454
|
+
transform: translateX(100%);
|
|
455
|
+
transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.pts-navigation-menu-container.open {
|
|
459
|
+
transform: translateX(0);
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
.pts-navigation-close-text {
|
|
464
|
+
padding-left: 0.8rem;
|
|
465
|
+
font-size: 16px;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.pts-navigation-link-list,
|
|
469
|
+
.pts-navigation-link,
|
|
470
|
+
.pts-sub-navigation-list {
|
|
471
|
+
all: unset;
|
|
472
|
+
list-style: none;
|
|
473
|
+
background-color:var(--main);;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.pts-navigation-link-list {
|
|
477
|
+
width: 100%;
|
|
478
|
+
padding-inline-start: 0px;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.pts-navigation-button a,
|
|
482
|
+
.pts-sub-navigation-item a {
|
|
483
|
+
text-decoration: none;
|
|
484
|
+
color: var(--text)
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.pts-navigation-link-expand-button {
|
|
488
|
+
border: none;
|
|
489
|
+
padding: 0;
|
|
490
|
+
cursor: pointer;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.pts-sub-navigation-container {
|
|
494
|
+
background-color: #d5b9dd;
|
|
495
|
+
border-left: var(--action) 5px solid;
|
|
496
|
+
padding-left: 3.6rem;
|
|
497
|
+
display: flex ;
|
|
498
|
+
align-items: flex-end ;
|
|
499
|
+
gap: 18px ;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.pts-sub-navigation-list {
|
|
503
|
+
display:block;
|
|
504
|
+
width: 100%;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.pts-sub-navigation-item {
|
|
508
|
+
height: 5.1rem;
|
|
509
|
+
display: flex;
|
|
510
|
+
align-items: center;
|
|
511
|
+
justify-content: flex-start;
|
|
512
|
+
border-bottom: 2px solid var(--background) ;
|
|
513
|
+
padding-left: 3rem;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
.pts-navigation-button,
|
|
518
|
+
.pts-navigation-close-container {
|
|
519
|
+
padding: 2.1rem 3.6rem;
|
|
520
|
+
border-width: 0px;
|
|
521
|
+
border-bottom: 2px solid var(--background);
|
|
522
|
+
background-color: var(--main);
|
|
523
|
+
text-align: left;
|
|
524
|
+
display: flex;
|
|
525
|
+
justify-content: space-between;
|
|
526
|
+
align-items: center;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.pts-navigation-close-button {
|
|
530
|
+
border: none;
|
|
531
|
+
color: var(--action);
|
|
532
|
+
background-color: var(--main);
|
|
533
|
+
display: flex;
|
|
534
|
+
align-items: center;
|
|
535
|
+
justify-content: flex-start;
|
|
536
|
+
margin-top: 1.5rem;
|
|
537
|
+
margin-bottom: 1.5rem;
|
|
538
|
+
cursor: pointer;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
/*******Breadcrumbs********/
|
|
542
|
+
.pts-breadcrumbs nav {
|
|
543
|
+
background-color: unset;
|
|
544
|
+
position: unset;
|
|
545
|
+
display: flex;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.pts-breadcrumbs {
|
|
549
|
+
background-color: var(--background-third);
|
|
550
|
+
height: 4rem;
|
|
551
|
+
display: flex;
|
|
552
|
+
align-items: center;
|
|
553
|
+
padding-left: 6rem;
|
|
554
|
+
padding-top: 2px;
|
|
555
|
+
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
.pts-breadcrumbs ol{
|
|
559
|
+
all: unset;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.pts-breadcrumbs li{
|
|
563
|
+
all: unset;
|
|
564
|
+
list-style: none;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
.pts-breadcrumbs a:hover {
|
|
569
|
+
color: var(--main);
|
|
570
|
+
text-decoration: underline 2px;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.pts-breadcrumbs a {
|
|
574
|
+
text-decoration: underline;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.pts-crumb-label,
|
|
578
|
+
.pts-breadcrumbs a {
|
|
579
|
+
color: var(--main);
|
|
580
|
+
position: relative;
|
|
581
|
+
line-height: 2rem;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.pts-breadcrumbs svg {
|
|
585
|
+
margin: 0 1.6rem;
|
|
586
|
+
top: 3px;
|
|
587
|
+
position: relative;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
/******SEARCH BAR*******/
|
|
592
|
+
.pts-searchBar-container {
|
|
593
|
+
height: 7rem;
|
|
594
|
+
background-color: var(--background);
|
|
595
|
+
display: flex;
|
|
596
|
+
align-items: center;
|
|
597
|
+
justify-content: center;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
.pts-searchBar-button {
|
|
601
|
+
height: 3.9rem;
|
|
602
|
+
background-color: var(--action);
|
|
603
|
+
border-radius: 8px;
|
|
604
|
+
border: var(--action) solid 1px;
|
|
605
|
+
color: var(--main);
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
.pts-searchBar-Button svg {
|
|
609
|
+
margin-right: 0.5rem;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.pts-searchBar-container input {
|
|
613
|
+
border-radius: 8px;
|
|
614
|
+
width: 65vw;
|
|
615
|
+
border: var(--action) solid 1px;
|
|
616
|
+
margin-right: -10px;
|
|
617
|
+
padding: 1rem;
|
|
618
|
+
border-top-right-radius: 0px;
|
|
619
|
+
border-bottom-right-radius: 0px;
|
|
620
|
+
}
|
|
621
|
+
|
|
370
622
|
/* ---------- TextBODY ---------- */
|
|
371
623
|
|
|
372
624
|
.pts-textBody-container p {
|
|
373
625
|
margin-bottom: 1.6rem;
|
|
374
626
|
}
|
|
375
627
|
|
|
376
|
-
.
|
|
628
|
+
.pts-standard-link a{
|
|
629
|
+
align-items: start;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.pts-standard-link-text{
|
|
633
|
+
margin-top: 2px;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.pts-standard-link-icon{
|
|
377
637
|
margin-top: 2px;
|
|
378
638
|
}
|
|
639
|
+
.pts-icon-circle svg{
|
|
640
|
+
width: 1.6rem;
|
|
641
|
+
height: 1.6rem;
|
|
642
|
+
}
|
|
379
643
|
|
|
380
644
|
.MoreInfoIcon svg {
|
|
381
645
|
width: 1.6rem;
|
|
@@ -387,7 +651,9 @@ input:focus-visible:-webkit-autofill {
|
|
|
387
651
|
margin-right: 1.6rem;
|
|
388
652
|
}
|
|
389
653
|
|
|
390
|
-
|
|
654
|
+
|
|
655
|
+
.MoreInfoIcon svg path,
|
|
656
|
+
.MoreInfoIcon {
|
|
391
657
|
fill: var(--main);
|
|
392
658
|
}
|
|
393
659
|
|
|
@@ -837,3 +1103,97 @@ input:focus-visible:-webkit-autofill {
|
|
|
837
1103
|
white-space: nowrap;
|
|
838
1104
|
border: 0;
|
|
839
1105
|
}
|
|
1106
|
+
|
|
1107
|
+
|
|
1108
|
+
|
|
1109
|
+
|
|
1110
|
+
/****New STUFF****/
|
|
1111
|
+
.pts-collapse {
|
|
1112
|
+
position: relative;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
.pts-collapse-button {
|
|
1116
|
+
background-color: var(--action);
|
|
1117
|
+
color: white;
|
|
1118
|
+
cursor: pointer;
|
|
1119
|
+
padding: 12px 16px;
|
|
1120
|
+
width: 100%;
|
|
1121
|
+
border: none;
|
|
1122
|
+
border-radius: 8px;
|
|
1123
|
+
outline: none;
|
|
1124
|
+
display: grid;
|
|
1125
|
+
text-align: left;
|
|
1126
|
+
grid-template-columns: 95% 5%;
|
|
1127
|
+
align-items: center;
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
.pts-collapse-button.open {
|
|
1131
|
+
border-radius: 8px 8px 0 0;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
.pts-collapse-title {
|
|
1135
|
+
all: unset;
|
|
1136
|
+
font-family: Arial;
|
|
1137
|
+
font-size: 16px;
|
|
1138
|
+
font-style: normal;
|
|
1139
|
+
font-weight: 400;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
.pts-collapse-body {
|
|
1143
|
+
position: relative;
|
|
1144
|
+
display: grid;
|
|
1145
|
+
grid-template-rows: 0fr;
|
|
1146
|
+
transition: grid-template-rows 0.3s ease;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
.pts-collapse-body.open {
|
|
1150
|
+
grid-template-rows: 1fr;
|
|
1151
|
+
border: 2px solid var(--background);
|
|
1152
|
+
border-top: none;
|
|
1153
|
+
border-radius:0 0 8px 8px;
|
|
1154
|
+
margin-left: 1px;
|
|
1155
|
+
margin-right: 2px;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
.pts-collapse-content {
|
|
1159
|
+
overflow: hidden;
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
|
|
1163
|
+
/******Links ********/
|
|
1164
|
+
|
|
1165
|
+
.pts-icon-circle {
|
|
1166
|
+
display: inline-flex;
|
|
1167
|
+
align-items: center;
|
|
1168
|
+
justify-content: center;
|
|
1169
|
+
min-width: 2rem;
|
|
1170
|
+
width: 2rem;
|
|
1171
|
+
height: 2rem;
|
|
1172
|
+
border-radius: 50%;
|
|
1173
|
+
border: 2px solid var(--action);
|
|
1174
|
+
background-color: var(--action);
|
|
1175
|
+
margin-right: 1.6rem;
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
.pts-icon-circle.pts-fileIcon svg{
|
|
1179
|
+
margin-left: 2px;
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
.pts-linkList-container {
|
|
1183
|
+
margin: 0;
|
|
1184
|
+
padding: 0;
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
.pts-linkList-container ul {
|
|
1188
|
+
all :unset;
|
|
1189
|
+
margin: 0;
|
|
1190
|
+
padding: 0;
|
|
1191
|
+
}
|
|
1192
|
+
.pts-linkList-container li {
|
|
1193
|
+
padding: 6px;
|
|
1194
|
+
list-style: none;
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
[hidden]{
|
|
1198
|
+
display:none;
|
|
1199
|
+
}
|