ui-kit-ck-consultant 0.5.220 → 0.5.223
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 +120 -1
- package/dist/index.js +292 -200
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +292 -201
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -66,6 +66,9 @@
|
|
66
66
|
|
67
67
|
._2YluD._2vjgy {
|
68
68
|
background-color: transparent !important;
|
69
|
+
box-shadow: none !important;
|
70
|
+
padding: 0 !important;
|
71
|
+
padding-top: 64px !important;
|
69
72
|
}
|
70
73
|
|
71
74
|
._2YluD._22C7A {
|
@@ -681,6 +684,121 @@
|
|
681
684
|
color: var(--red) !important;
|
682
685
|
}
|
683
686
|
|
687
|
+
._3k6ik > span {
|
688
|
+
display: inline-block;
|
689
|
+
font-size: 14px;
|
690
|
+
font-weight: bold;
|
691
|
+
color: var(--black);
|
692
|
+
margin-bottom: 8px;
|
693
|
+
}
|
694
|
+
|
695
|
+
._3BzwZ {
|
696
|
+
display: flex;
|
697
|
+
height: 50px;
|
698
|
+
width: 100%;
|
699
|
+
border: solid 2px var(--gray);
|
700
|
+
border-radius: 15px;
|
701
|
+
color: var(--black);
|
702
|
+
font-size: 14px;
|
703
|
+
padding: 0 20px;
|
704
|
+
transition: 0.6s;
|
705
|
+
opacity: 0.5;
|
706
|
+
background-color: var(--white);
|
707
|
+
-webkit-touch-callout: none;
|
708
|
+
-webkit-user-select: none;
|
709
|
+
-moz-user-select: none;
|
710
|
+
user-select: none;
|
711
|
+
cursor: pointer;
|
712
|
+
overflow: hidden;
|
713
|
+
}
|
714
|
+
._3BzwZ::-moz-placeholder {
|
715
|
+
color: var(--gray);
|
716
|
+
}
|
717
|
+
._3BzwZ::placeholder {
|
718
|
+
color: var(--gray);
|
719
|
+
}
|
720
|
+
._3BzwZ:focus {
|
721
|
+
outline: none;
|
722
|
+
border: solid 2px #b3b3b3;
|
723
|
+
}
|
724
|
+
._3BzwZ[disabled] {
|
725
|
+
cursor: not-allowed;
|
726
|
+
background-color: #f5f5f5;
|
727
|
+
}
|
728
|
+
|
729
|
+
._3BzwZ > span {
|
730
|
+
margin: auto;
|
731
|
+
margin-left: 0;
|
732
|
+
font-size: 14px;
|
733
|
+
white-space: nowrap;
|
734
|
+
}
|
735
|
+
|
736
|
+
._3BzwZ > div {
|
737
|
+
margin: auto;
|
738
|
+
margin-right: 0;
|
739
|
+
}
|
740
|
+
|
741
|
+
._20Gvp {
|
742
|
+
margin-top: 4px;
|
743
|
+
display: block !important;
|
744
|
+
width: 100%;
|
745
|
+
text-align: right;
|
746
|
+
margin-bottom: 0;
|
747
|
+
color: var(--red) !important;
|
748
|
+
}
|
749
|
+
|
750
|
+
._oq5Pn {
|
751
|
+
position: fixed;
|
752
|
+
display: flex;
|
753
|
+
flex-direction: column;
|
754
|
+
overflow-y: auto;
|
755
|
+
width: 100%;
|
756
|
+
height: 280px;
|
757
|
+
max-height: 450px;
|
758
|
+
background-color: var(--white);
|
759
|
+
border: solid 2px var(--gray);
|
760
|
+
border-radius: 15px;
|
761
|
+
z-index: 100;
|
762
|
+
top: 90px;
|
763
|
+
-webkit-touch-callout: none;
|
764
|
+
-webkit-user-select: none;
|
765
|
+
-moz-user-select: none;
|
766
|
+
user-select: none;
|
767
|
+
}
|
768
|
+
|
769
|
+
._oq5Pn > div:not(._HjP3u) {
|
770
|
+
padding: 8px 16px;
|
771
|
+
transition: 0.3s;
|
772
|
+
cursor: pointer;
|
773
|
+
}
|
774
|
+
|
775
|
+
._oq5Pn > div:hover:not(._HjP3u) {
|
776
|
+
background-color: #eeeeee;
|
777
|
+
}
|
778
|
+
|
779
|
+
._HjP3u > span {
|
780
|
+
transition: 0.3s;
|
781
|
+
cursor: pointer;
|
782
|
+
font-weight: bold;
|
783
|
+
padding: 8px 16px;
|
784
|
+
}
|
785
|
+
|
786
|
+
._HjP3u > span:hover {
|
787
|
+
opacity: 0.8;
|
788
|
+
}
|
789
|
+
|
790
|
+
._HjP3u > span:active {
|
791
|
+
opacity: 0.6;
|
792
|
+
}
|
793
|
+
|
794
|
+
._HjP3u > span:first-child {
|
795
|
+
color: var(--red);
|
796
|
+
}
|
797
|
+
|
798
|
+
._HjP3u > span:last-child {
|
799
|
+
color: var(--primary-color);
|
800
|
+
}
|
801
|
+
|
684
802
|
._3t7tP{
|
685
803
|
display: block;
|
686
804
|
}
|
@@ -689,7 +807,7 @@
|
|
689
807
|
display: inline-block;
|
690
808
|
position: relative;
|
691
809
|
padding-left: 30px;
|
692
|
-
padding-top:
|
810
|
+
padding-top: 2px;
|
693
811
|
padding-bottom: 4px;
|
694
812
|
cursor: pointer;
|
695
813
|
font-size: 16px;
|
@@ -742,6 +860,7 @@
|
|
742
860
|
border-width: 0 3px 3px 0;
|
743
861
|
transform: rotate(45deg);
|
744
862
|
}
|
863
|
+
|
745
864
|
._3mKHO{
|
746
865
|
display: block;
|
747
866
|
}
|