optimized-react-component-library-xyz123 2.8.22 → 2.9.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 +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +57 -20
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +57 -20
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/darkMode.css +3 -2
- package/src/css/styles.css +19 -3
package/package.json
CHANGED
package/src/css/darkMode.css
CHANGED
|
@@ -463,7 +463,8 @@
|
|
|
463
463
|
color: var(--dark-main);
|
|
464
464
|
}
|
|
465
465
|
|
|
466
|
-
.pts-open-close-icon svg path
|
|
466
|
+
.pts-open-close-icon svg path,
|
|
467
|
+
.pts-collapse-open-close-icon svg path{
|
|
467
468
|
fill: var(--dark-main);
|
|
468
469
|
}
|
|
469
470
|
|
|
@@ -516,7 +517,7 @@
|
|
|
516
517
|
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='%23B07CBF' 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='%23B07CBF' stroke-width='7.83333' stroke-linecap='round'/%3e%3c/svg%3e");
|
|
517
518
|
}
|
|
518
519
|
|
|
519
|
-
.pts-modal-overlay {
|
|
520
|
+
.pts-modal-overlay, .pts-navigation-overlay {
|
|
520
521
|
background-color: rgba(255, 255, 255, 0.5);
|
|
521
522
|
}
|
|
522
523
|
|
package/src/css/styles.css
CHANGED
|
@@ -354,7 +354,7 @@ input:focus-visible:-webkit-autofill {
|
|
|
354
354
|
transform: translateX(100%);
|
|
355
355
|
transition:
|
|
356
356
|
transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
|
|
357
|
-
opacity 1s;
|
|
357
|
+
opacity 0.1s;
|
|
358
358
|
}
|
|
359
359
|
|
|
360
360
|
.pts-navigation-menu-container.open {
|
|
@@ -387,6 +387,7 @@ input:focus-visible:-webkit-autofill {
|
|
|
387
387
|
}
|
|
388
388
|
|
|
389
389
|
.pts-navigation-link-expand-button {
|
|
390
|
+
all:unset;
|
|
390
391
|
border: none;
|
|
391
392
|
padding: 0;
|
|
392
393
|
cursor: pointer;
|
|
@@ -667,13 +668,23 @@ input:focus-visible:-webkit-autofill {
|
|
|
667
668
|
font-size: 1.6rem;
|
|
668
669
|
}
|
|
669
670
|
|
|
670
|
-
.pts-collapse-
|
|
671
|
+
.pts-collapse-open-close-icon.open {
|
|
671
672
|
border-radius: 8px 8px 0 0;
|
|
672
673
|
}
|
|
673
674
|
|
|
675
|
+
.pts-collapse-open-close-icon svg{
|
|
676
|
+
width: 2.4rem;
|
|
677
|
+
height: 2.4rem;
|
|
678
|
+
position: relative;
|
|
679
|
+
top: 3px;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
|
|
674
683
|
.pts-collapse-button .pts-open-close-icon svg {
|
|
675
684
|
width: 2.4rem;
|
|
676
685
|
height: 2.4rem;
|
|
686
|
+
position: relative;
|
|
687
|
+
top: 3px;
|
|
677
688
|
}
|
|
678
689
|
|
|
679
690
|
.pts-collapse-body {
|
|
@@ -689,6 +700,7 @@ input:focus-visible:-webkit-autofill {
|
|
|
689
700
|
border: 2px solid var(--background);
|
|
690
701
|
border-top: none;
|
|
691
702
|
border-radius: 0 0 8px 8px;
|
|
703
|
+
margin-top: -5px;
|
|
692
704
|
}
|
|
693
705
|
|
|
694
706
|
.pts-collapse-content {
|
|
@@ -736,10 +748,14 @@ input:focus-visible:-webkit-autofill {
|
|
|
736
748
|
padding: 0;
|
|
737
749
|
}
|
|
738
750
|
.pts-linkList-container li {
|
|
739
|
-
padding:
|
|
751
|
+
padding-bottom: 16px;
|
|
740
752
|
list-style: none;
|
|
741
753
|
}
|
|
742
754
|
|
|
755
|
+
.pts-linkList-container li:last-child{
|
|
756
|
+
padding-bottom:0 ;
|
|
757
|
+
}
|
|
758
|
+
|
|
743
759
|
/* ---------- GRANSKA-Sidan ---------- */
|
|
744
760
|
.pts-editPreviewLink-container {
|
|
745
761
|
display: flex;
|