optimized-react-component-library-xyz123 2.12.3 → 2.12.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.
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +21 -28
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +21 -28
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/mobileView.css +2 -1
- package/src/css/styles.css +34 -11
package/package.json
CHANGED
package/src/css/mobileView.css
CHANGED
package/src/css/styles.css
CHANGED
|
@@ -64,7 +64,6 @@
|
|
|
64
64
|
border: 0;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
|
|
68
67
|
select:focus-visible,
|
|
69
68
|
button:focus-visible,
|
|
70
69
|
a:focus-visible,
|
|
@@ -387,7 +386,7 @@ input:focus-visible:-webkit-autofill {
|
|
|
387
386
|
}
|
|
388
387
|
|
|
389
388
|
.pts-navigation-link-expand-button {
|
|
390
|
-
all:unset;
|
|
389
|
+
all: unset;
|
|
391
390
|
border: none;
|
|
392
391
|
padding: 0;
|
|
393
392
|
cursor: pointer;
|
|
@@ -550,7 +549,7 @@ input:focus-visible:-webkit-autofill {
|
|
|
550
549
|
|
|
551
550
|
/* ---------- OptionTextBody ---------- */
|
|
552
551
|
|
|
553
|
-
.pts-optionTextBody-container{
|
|
552
|
+
.pts-optionTextBody-container {
|
|
554
553
|
margin-top: 1.6rem;
|
|
555
554
|
}
|
|
556
555
|
|
|
@@ -672,13 +671,12 @@ input:focus-visible:-webkit-autofill {
|
|
|
672
671
|
border-radius: 8px 8px 0 0;
|
|
673
672
|
}
|
|
674
673
|
|
|
675
|
-
.pts-collapse-open-close-icon svg{
|
|
674
|
+
.pts-collapse-open-close-icon svg {
|
|
676
675
|
width: 2.4rem;
|
|
677
676
|
height: 2.4rem;
|
|
678
677
|
position: relative;
|
|
679
678
|
top: 3px;
|
|
680
679
|
}
|
|
681
|
-
|
|
682
680
|
|
|
683
681
|
.pts-collapse-button .pts-open-close-icon svg {
|
|
684
682
|
width: 2.4rem;
|
|
@@ -752,8 +750,8 @@ input:focus-visible:-webkit-autofill {
|
|
|
752
750
|
list-style: none;
|
|
753
751
|
}
|
|
754
752
|
|
|
755
|
-
.pts-linkList-container li:last-child{
|
|
756
|
-
padding-bottom:0
|
|
753
|
+
.pts-linkList-container li:last-child {
|
|
754
|
+
padding-bottom: 0;
|
|
757
755
|
}
|
|
758
756
|
|
|
759
757
|
/* ---------- GRANSKA-Sidan ---------- */
|
|
@@ -982,18 +980,43 @@ input:focus-visible:-webkit-autofill {
|
|
|
982
980
|
line-height: 25px;
|
|
983
981
|
}
|
|
984
982
|
|
|
985
|
-
.pts-footer-linkList a
|
|
983
|
+
.pts-footer-linkList a,
|
|
984
|
+
.pts-footer-linkList button {
|
|
986
985
|
color: var(--main);
|
|
987
986
|
text-underline-offset: 3px;
|
|
988
987
|
white-space: nowrap;
|
|
989
988
|
}
|
|
990
989
|
|
|
991
|
-
.pts-footer-linkList
|
|
990
|
+
.pts-footer-linkList button {
|
|
991
|
+
background: none;
|
|
992
|
+
border: none;
|
|
993
|
+
padding: 0;
|
|
994
|
+
margin: 0;
|
|
995
|
+
font: inherit;
|
|
996
|
+
color: inherit;
|
|
997
|
+
text-align: inherit;
|
|
998
|
+
line-height: normal;
|
|
999
|
+
cursor: pointer;
|
|
1000
|
+
outline: none;
|
|
1001
|
+
white-space: nowrap;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
.pts-footer-linkList a span,
|
|
1005
|
+
.pts-footer-linkList button span {
|
|
992
1006
|
padding-left: 36px;
|
|
993
1007
|
padding-right: 36px;
|
|
994
1008
|
color: var(--main);
|
|
995
1009
|
}
|
|
996
1010
|
|
|
1011
|
+
.pts-footer-linkList button span {
|
|
1012
|
+
text-decoration: underline;
|
|
1013
|
+
text-underline-offset: 3px;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.pts-footer-linkList button:hover span {
|
|
1017
|
+
text-decoration: underline 0.2rem;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
997
1020
|
.pts-footer-container .pts-footer-linkList ul li:not(:last-child)::after {
|
|
998
1021
|
content: '';
|
|
999
1022
|
width: 1px;
|
|
@@ -1111,12 +1134,12 @@ input:focus-visible:-webkit-autofill {
|
|
|
1111
1134
|
border: 0;
|
|
1112
1135
|
}
|
|
1113
1136
|
|
|
1114
|
-
|
|
1115
1137
|
.hide-asterix .pts-root-mandatoryAsterisk {
|
|
1116
1138
|
display: none;
|
|
1117
1139
|
}
|
|
1118
1140
|
|
|
1119
|
-
[hidden]
|
|
1141
|
+
[hidden],
|
|
1142
|
+
.hidden {
|
|
1120
1143
|
display: none;
|
|
1121
1144
|
}
|
|
1122
1145
|
|