urfu-ui-kit-vanilla 1.0.46 → 1.0.48

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.
Files changed (2) hide show
  1. package/package.json +2 -3
  2. package/src/main.css +83 -72
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "UrFU UI-Kit for Vanilla Web",
4
4
  "license": "UNLICENSED",
5
5
  "private": false,
6
- "version": "1.0.46",
6
+ "version": "1.0.48",
7
7
  "type": "module",
8
8
  "scripts": {
9
9
  "start": "vite",
@@ -17,8 +17,7 @@
17
17
  "vite": "^4.2.0"
18
18
  },
19
19
  "dependencies": {
20
- "air-datepicker": "^3.4.0",
21
- "chart.js": "^4.4.0"
20
+ "air-datepicker": "^3.4.0"
22
21
  },
23
22
  "files": [
24
23
  "src/main.css",
package/src/main.css CHANGED
@@ -73,13 +73,6 @@ button {
73
73
  scrollbar-width: thin;
74
74
  /*Толщина скролла thin, auto*/
75
75
  }
76
- .flex-container__2 {
77
- display: flex;
78
- column-gap: 15px;
79
- }
80
- .flex-container__2 > .flex-item {
81
- flex: 0 0 50%;
82
- }
83
76
  @font-face {
84
77
  font-family: 'Open Sans';
85
78
  font-style: normal;
@@ -467,7 +460,7 @@ button {
467
460
  .u-selectbox.u-selectbox-disabled .u-selectbox-select-icon-cross {
468
461
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.3386 0.661444C11.7039 1.02675 11.7039 1.61903 11.3386 1.98433L1.98434 11.3386C1.61904 11.7039 1.02676 11.7039 0.661455 11.3386C0.29615 10.9733 0.296149 10.381 0.661454 10.0157L10.0157 0.661444C10.381 0.296138 10.9733 0.296138 11.3386 0.661444Z' fill='%23A7A7A7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.661432 0.661444C1.02674 0.296138 1.61901 0.296138 1.98432 0.661444L11.3385 10.0157C11.7039 10.381 11.7038 10.9733 11.3385 11.3386C10.9732 11.7039 10.381 11.7039 10.0157 11.3386L0.661432 1.98433C0.296127 1.61903 0.296127 1.02675 0.661432 0.661444Z' fill='%23A7A7A7'/%3E%3C/svg%3E ");
469
462
  }
470
- .u-selectbox.u-selectbox-disabled .u-selectbox-select-open ~ .u-selectbox-options {
463
+ .u-selectbox.u-selectbox-disabled .u-selectbox-select-open ~ .u-selectbox-options-wrapper {
471
464
  display: none;
472
465
  }
473
466
  .u-selectbox-select {
@@ -583,7 +576,7 @@ button {
583
576
  .u-selectbox-select-open .u-selectbox-select-icon {
584
577
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.7071 10.3819C11.3166 10.7724 10.6834 10.7724 10.2929 10.3819L5.99999 6.08902L1.70711 10.3819C1.31658 10.7724 0.683418 10.7724 0.292894 10.3819C-0.0976305 9.99139 -0.0976315 9.35822 0.292892 8.9677L5.29288 3.9677C5.48042 3.78016 5.73477 3.67481 5.99999 3.6748C6.26521 3.6748 6.51956 3.78016 6.7071 3.9677L11.7071 8.9677C12.0976 9.35822 12.0976 9.99139 11.7071 10.3819Z' fill='%231E4391'/%3E%3C/svg%3E ");
585
578
  }
586
- .u-selectbox-select-open + .u-selectbox-options {
579
+ .u-selectbox-select-open + .u-selectbox-options-wrapper {
587
580
  display: block;
588
581
  }
589
582
  .u-selectbox-select-icon-arrow {
@@ -623,16 +616,26 @@ button {
623
616
  text-overflow: ellipsis;
624
617
  }
625
618
  .u-selectbox-options {
619
+ border-top-left-radius: 10px;
620
+ border-bottom-left-radius: 10px;
621
+ border-top-right-radius: 6px;
622
+ border-bottom-right-radius: 6px;
623
+ padding-right: 2px;
624
+ overflow-y: auto;
625
+ max-height: 195px;
626
+ background-color: #FFFFFF;
627
+ position: relative;
628
+ }
629
+ .u-selectbox-options-wrapper {
630
+ padding-right: 2px;
626
631
  display: none;
632
+ background-color: #FFFFFF;
627
633
  position: absolute;
628
- width: 100%;
629
634
  z-index: 100;
630
- border: 1px solid #748AB9;
631
635
  border-radius: 10px;
636
+ border: 1px solid #748AB9;
632
637
  margin-top: 2px;
633
- max-height: 195px;
634
- background-color: #FFFFFF;
635
- overflow-y: auto;
638
+ width: 100%;
636
639
  }
637
640
  .u-selectbox-option {
638
641
  cursor: pointer;
@@ -645,14 +648,8 @@ button {
645
648
  font-size: 14px;
646
649
  line-height: 20px;
647
650
  }
648
- .u-selectbox-option:first-child {
649
- border-top-right-radius: 10px;
650
- border-top-left-radius: 10px;
651
- }
652
- .u-selectbox-option:last-child {
651
+ .u-selectbox-option:last-child:hover {
653
652
  border-bottom: none;
654
- border-bottom-right-radius: 10px;
655
- border-bottom-left-radius: 10px;
656
653
  }
657
654
  .u-selectbox-option:hover {
658
655
  background-color: #E7F2FF;
@@ -660,13 +657,13 @@ button {
660
657
  .u-multiselectbox {
661
658
  position: relative;
662
659
  }
663
- .u-multiselectbox:hover .u-multiselectbox-select {
660
+ .u-multiselectbox:hover .u-multiselectbox-select-wrapper {
664
661
  border: 1px solid #748AB9;
665
662
  }
666
663
  .u-multiselectbox.u-multiselectbox-disabled * {
667
664
  cursor: not-allowed;
668
665
  }
669
- .u-multiselectbox.u-multiselectbox-disabled .u-multiselectbox-select {
666
+ .u-multiselectbox.u-multiselectbox-disabled .u-multiselectbox-select-wrapper {
670
667
  border: none;
671
668
  background-color: #F6F6F6;
672
669
  }
@@ -676,12 +673,21 @@ button {
676
673
  .u-multiselectbox.u-multiselectbox-disabled .u-multiselectbox-select-icon-cross {
677
674
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.3386 0.661444C11.7039 1.02675 11.7039 1.61903 11.3386 1.98433L1.98434 11.3386C1.61904 11.7039 1.02676 11.7039 0.661455 11.3386C0.29615 10.9733 0.296149 10.381 0.661454 10.0157L10.0157 0.661444C10.381 0.296138 10.9733 0.296138 11.3386 0.661444Z' fill='%23A7A7A7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.661432 0.661444C1.02674 0.296138 1.61901 0.296138 1.98432 0.661444L11.3385 10.0157C11.7039 10.381 11.7038 10.9733 11.3385 11.3386C10.9732 11.7039 10.381 11.7039 10.0157 11.3386L0.661432 1.98433C0.296127 1.61903 0.296127 1.02675 0.661432 0.661444Z' fill='%23A7A7A7'/%3E%3C/svg%3E ");
678
675
  }
679
- .u-multiselectbox.u-multiselectbox-disabled .u-multiselectbox-select-open ~ .u-multiselectbox-options {
676
+ .u-multiselectbox.u-multiselectbox-disabled .u-multiselectbox-select-open ~ .u-multiselectbox-options-wrapper {
680
677
  display: none;
681
678
  }
682
679
  .u-multiselectbox-select {
683
680
  max-height: 132px;
684
681
  overflow: auto;
682
+ line-height: 30px;
683
+ position: relative;
684
+ display: flex;
685
+ flex-wrap: wrap;
686
+ padding: 8px 75px 7px 16px;
687
+ grid-row-gap: 8px;
688
+ grid-column-gap: 4px;
689
+ }
690
+ .u-multiselectbox-select-wrapper {
685
691
  height: 48px;
686
692
  padding: 14px 16px;
687
693
  border-radius: 10px;
@@ -695,57 +701,50 @@ button {
695
701
  transition-duration: 0.15s;
696
702
  transition-timing-function: ease-in-out;
697
703
  border: 1px solid #D3D3D3;
698
- line-height: 30px;
699
- position: relative;
700
- padding: 8px 16px 7px 16px;
701
- display: flex;
702
- flex-wrap: wrap;
703
704
  min-height: 48px;
704
705
  height: 100%;
705
- grid-row-gap: 8px;
706
- grid-column-gap: 4px;
707
- padding-right: 75px;
706
+ padding: 0 2px 0 0;
708
707
  z-index: 100 !important;
709
708
  }
710
- .u-multiselectbox-select:hover,
711
- .u-multiselectbox-select.active {
709
+ .u-multiselectbox-select-wrapper:hover,
710
+ .u-multiselectbox-select-wrapper.active {
712
711
  border: 1px solid #748AB9;
713
712
  }
714
- .u-multiselectbox-select:focus {
713
+ .u-multiselectbox-select-wrapper:focus {
715
714
  outline: 0;
716
715
  border: 1px solid #748AB9;
717
716
  }
718
- .u-multiselectbox-select:disabled,
719
- .u-multiselectbox-select.disabled {
717
+ .u-multiselectbox-select-wrapper:disabled,
718
+ .u-multiselectbox-select-wrapper.disabled {
720
719
  cursor: not-allowed;
721
720
  border: none;
722
721
  background-color: #F6F6F6;
723
722
  }
724
- .u-multiselectbox-select::placeholder {
723
+ .u-multiselectbox-select-wrapper::placeholder {
725
724
  /* Chrome, Firefox, Opera, Safari 10.1+ */
726
725
  color: #A7A7A7;
727
726
  opacity: 1;
728
727
  /* Firefox */
729
728
  }
730
- .u-multiselectbox-select:-ms-input-placeholder {
729
+ .u-multiselectbox-select-wrapper:-ms-input-placeholder {
731
730
  /* Internet Explorer 10-11 */
732
731
  color: #A7A7A7;
733
732
  }
734
- .u-multiselectbox-select::placeholder {
733
+ .u-multiselectbox-select-wrapper::placeholder {
735
734
  color: #A7A7A7;
736
735
  }
737
- .u-multiselectbox-select[type="number"] {
736
+ .u-multiselectbox-select-wrapper[type="number"] {
738
737
  display: block;
739
738
  box-sizing: border-box;
740
739
  -moz-appearance: textfield;
741
740
  -webkit-appearance: textfield;
742
741
  appearance: textfield;
743
742
  }
744
- .u-multiselectbox-select[type="number"]::-webkit-outer-spin-button,
745
- .u-multiselectbox-select[type="number"]::-webkit-inner-spin-button {
743
+ .u-multiselectbox-select-wrapper[type="number"]::-webkit-outer-spin-button,
744
+ .u-multiselectbox-select-wrapper[type="number"]::-webkit-inner-spin-button {
746
745
  display: none;
747
746
  }
748
- .u-multiselectbox-select[type="search"]::-webkit-search-cancel-button {
747
+ .u-multiselectbox-select-wrapper[type="search"]::-webkit-search-cancel-button {
749
748
  transition-property: color, background-color, border-color, background-image;
750
749
  transition-duration: 0.15s;
751
750
  transition-timing-function: ease-in-out;
@@ -757,10 +756,10 @@ button {
757
756
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.3386 0.661444C11.7039 1.02675 11.7039 1.61903 11.3386 1.98433L1.98434 11.3386C1.61904 11.7039 1.02676 11.7039 0.661455 11.3386C0.29615 10.9733 0.296149 10.381 0.661454 10.0157L10.0157 0.661444C10.381 0.296138 10.9733 0.296138 11.3386 0.661444Z' fill='%23A7A7A7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.661432 0.661444C1.02674 0.296138 1.61901 0.296138 1.98432 0.661444L11.3385 10.0157C11.7039 10.381 11.7038 10.9733 11.3385 11.3386C10.9732 11.7039 10.381 11.7039 10.0157 11.3386L0.661432 1.98433C0.296127 1.61903 0.296127 1.02675 0.661432 0.661444Z' fill='%23A7A7A7'/%3E%3C/svg%3E ");
758
757
  background-repeat: no-repeat;
759
758
  }
760
- .u-multiselectbox-select[type="search"]::-webkit-search-cancel-button:hover {
759
+ .u-multiselectbox-select-wrapper[type="search"]::-webkit-search-cancel-button:hover {
761
760
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.3386 0.661444C11.7039 1.02675 11.7039 1.61903 11.3386 1.98433L1.98434 11.3386C1.61904 11.7039 1.02676 11.7039 0.661455 11.3386C0.29615 10.9733 0.296149 10.381 0.661454 10.0157L10.0157 0.661444C10.381 0.296138 10.9733 0.296138 11.3386 0.661444Z' fill='%231E4391'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.661432 0.661444C1.02674 0.296138 1.61901 0.296138 1.98432 0.661444L11.3385 10.0157C11.7039 10.381 11.7038 10.9733 11.3385 11.3386C10.9732 11.7039 10.381 11.7039 10.0157 11.3386L0.661432 1.98433C0.296127 1.61903 0.296127 1.02675 0.661432 0.661444Z' fill='%231E4391'/%3E%3C/svg%3E ");
762
761
  }
763
- .u-multiselectbox-select-required {
762
+ .u-multiselectbox-select-wrapper-required {
764
763
  height: 48px;
765
764
  padding: 14px 16px;
766
765
  border-radius: 10px;
@@ -775,25 +774,25 @@ button {
775
774
  transition-timing-function: ease-in-out;
776
775
  border: 1px solid #EF302B;
777
776
  }
778
- .u-multiselectbox-select-required:hover,
779
- .u-multiselectbox-select-required.active {
777
+ .u-multiselectbox-select-wrapper-required:hover,
778
+ .u-multiselectbox-select-wrapper-required.active {
780
779
  border: 1px solid #748AB9;
781
780
  }
782
- .u-multiselectbox-select-required:focus {
781
+ .u-multiselectbox-select-wrapper-required:focus {
783
782
  outline: 0;
784
783
  border: 1px solid #748AB9;
785
784
  }
786
- .u-multiselectbox-select-required::placeholder {
785
+ .u-multiselectbox-select-wrapper-required::placeholder {
787
786
  /* Chrome, Firefox, Opera, Safari 10.1+ */
788
787
  color: #A7A7A7;
789
788
  opacity: 1;
790
789
  /* Firefox */
791
790
  }
792
- .u-multiselectbox-select-required:-ms-input-placeholder {
791
+ .u-multiselectbox-select-wrapper-required:-ms-input-placeholder {
793
792
  /* Internet Explorer 10-11 */
794
793
  color: #A7A7A7;
795
794
  }
796
- .u-multiselectbox-select-required::-ms-input-placeholder {
795
+ .u-multiselectbox-select-wrapper-required::-ms-input-placeholder {
797
796
  /* Microsoft Edge */
798
797
  color: #A7A7A7;
799
798
  }
@@ -830,15 +829,15 @@ button {
830
829
  background-repeat: no-repeat;
831
830
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='13' viewBox='0 0 12 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L10.5833 11.5M11 1.5L1 11.5' stroke='%23748AB9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E ");
832
831
  }
833
- .u-multiselectbox-select-open {
834
- border: 1px solid #748AB9;
835
- }
836
832
  .u-multiselectbox-select-open ~ .u-multiselectbox-select-icon-arrow {
837
833
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.7071 10.3819C11.3166 10.7724 10.6834 10.7724 10.2929 10.3819L5.99999 6.08902L1.70711 10.3819C1.31658 10.7724 0.683418 10.7724 0.292894 10.3819C-0.0976305 9.99139 -0.0976315 9.35822 0.292892 8.9677L5.29288 3.9677C5.48042 3.78016 5.73477 3.67481 5.99999 3.6748C6.26521 3.6748 6.51956 3.78016 6.7071 3.9677L11.7071 8.9677C12.0976 9.35822 12.0976 9.99139 11.7071 10.3819Z' fill='%231E4391'/%3E%3C/svg%3E ");
838
834
  }
839
- .u-multiselectbox-select-open ~ .u-multiselectbox-options {
835
+ .u-multiselectbox-select-open ~ .u-multiselectbox-options-wrapper {
840
836
  display: block;
841
837
  }
838
+ .u-multiselectbox-select-open.u-multiselectbox-select-wrapper {
839
+ border: 1px solid #748AB9;
840
+ }
842
841
  .u-multiselectbox-select-icon-arrow {
843
842
  cursor: pointer;
844
843
  position: absolute;
@@ -848,7 +847,7 @@ button {
848
847
  background-repeat: no-repeat;
849
848
  width: 12px;
850
849
  height: 12px;
851
- right: 20px;
850
+ right: 22px;
852
851
  top: 18px;
853
852
  }
854
853
  .u-multiselectbox-select-icon-cross {
@@ -860,7 +859,7 @@ button {
860
859
  background-repeat: no-repeat;
861
860
  width: 12px;
862
861
  height: 12px;
863
- right: 44px;
862
+ right: 46px;
864
863
  top: 19px;
865
864
  transition-property: color, background-color, border-color, background-image;
866
865
  transition-duration: 0.15s;
@@ -878,15 +877,23 @@ button {
878
877
  }
879
878
  .u-multiselectbox-options {
880
879
  overflow-y: auto;
880
+ border-top-left-radius: 10px;
881
+ border-bottom-left-radius: 10px;
882
+ border-top-right-radius: 6px;
883
+ border-bottom-right-radius: 6px;
884
+ padding-right: 2px;
881
885
  max-height: 195px;
882
- width: 100%;
883
- border-radius: 10px;
884
- z-index: 100;
886
+ }
887
+ .u-multiselectbox-options-wrapper {
888
+ padding-right: 2px;
885
889
  display: none;
890
+ background-color: #FFFFFF;
886
891
  position: absolute;
892
+ z-index: 100;
893
+ border-radius: 10px;
887
894
  border: 1px solid #748AB9;
888
895
  margin-top: 2px;
889
- background-color: #FFFFFF;
896
+ width: 100%;
890
897
  }
891
898
  .u-multiselectbox-option {
892
899
  background-color: #FFFFFF;
@@ -928,12 +935,8 @@ button {
928
935
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='15' height='15' rx='1.5' fill='white' stroke='%23D3D3D3'/%3E%3C/svg%3E ");
929
936
  margin-right: 16px;
930
937
  }
931
- .u-multiselectbox-option:first-child {
932
- border-top-left-radius: 10px;
933
- }
934
938
  .u-multiselectbox-option:last-child {
935
939
  border-bottom: none;
936
- border-bottom-left-radius: 10px;
937
940
  }
938
941
  .u-multiselectbox-option:hover {
939
942
  background-color: #E7F2FF;
@@ -957,7 +960,7 @@ button {
957
960
  .u-multiselectbox-simple.u-multiselectbox-simple-disabled .u-multiselectbox-simple-select-icon-cross {
958
961
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.3386 0.661444C11.7039 1.02675 11.7039 1.61903 11.3386 1.98433L1.98434 11.3386C1.61904 11.7039 1.02676 11.7039 0.661455 11.3386C0.29615 10.9733 0.296149 10.381 0.661454 10.0157L10.0157 0.661444C10.381 0.296138 10.9733 0.296138 11.3386 0.661444Z' fill='%23A7A7A7'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.661432 0.661444C1.02674 0.296138 1.61901 0.296138 1.98432 0.661444L11.3385 10.0157C11.7039 10.381 11.7038 10.9733 11.3385 11.3386C10.9732 11.7039 10.381 11.7039 10.0157 11.3386L0.661432 1.98433C0.296127 1.61903 0.296127 1.02675 0.661432 0.661444Z' fill='%23A7A7A7'/%3E%3C/svg%3E ");
959
962
  }
960
- .u-multiselectbox-simple.u-multiselectbox-simple-disabled .u-multiselectbox-simple-select-open ~ .u-multiselectbox-simple-options {
963
+ .u-multiselectbox-simple.u-multiselectbox-simple-disabled .u-multiselectbox-simple-select-open ~ .u-multiselectbox-simple-options-wrapper {
961
964
  display: none;
962
965
  }
963
966
  .u-multiselectbox-simple-select {
@@ -1087,7 +1090,7 @@ button {
1087
1090
  .u-multiselectbox-simple-select-open ~ .u-multiselectbox-simple-select-icon-arrow {
1088
1091
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.7071 10.3819C11.3166 10.7724 10.6834 10.7724 10.2929 10.3819L5.99999 6.08902L1.70711 10.3819C1.31658 10.7724 0.683418 10.7724 0.292894 10.3819C-0.0976305 9.99139 -0.0976315 9.35822 0.292892 8.9677L5.29288 3.9677C5.48042 3.78016 5.73477 3.67481 5.99999 3.6748C6.26521 3.6748 6.51956 3.78016 6.7071 3.9677L11.7071 8.9677C12.0976 9.35822 12.0976 9.99139 11.7071 10.3819Z' fill='%231E4391'/%3E%3C/svg%3E ");
1089
1092
  }
1090
- .u-multiselectbox-simple-select-open ~ .u-multiselectbox-simple-options {
1093
+ .u-multiselectbox-simple-select-open ~ .u-multiselectbox-simple-options-wrapper {
1091
1094
  display: block;
1092
1095
  }
1093
1096
  .u-multiselectbox-simple-select-icon-arrow {
@@ -1123,14 +1126,22 @@ button {
1123
1126
  .u-multiselectbox-simple-options {
1124
1127
  overflow-y: auto;
1125
1128
  max-height: 195px;
1126
- width: 100%;
1127
- border-radius: 10px;
1128
- z-index: 100;
1129
+ border-top-left-radius: 10px;
1130
+ border-bottom-left-radius: 10px;
1131
+ border-top-right-radius: 6px;
1132
+ border-bottom-right-radius: 6px;
1133
+ padding-right: 2px;
1134
+ }
1135
+ .u-multiselectbox-simple-options-wrapper {
1136
+ padding-right: 2px;
1129
1137
  display: none;
1138
+ background-color: #FFFFFF;
1130
1139
  position: absolute;
1140
+ z-index: 100;
1141
+ border-radius: 10px;
1131
1142
  border: 1px solid #748AB9;
1132
1143
  margin-top: 2px;
1133
- background-color: #FFFFFF;
1144
+ width: 100%;
1134
1145
  }
1135
1146
  .u-multiselectbox-simple-option {
1136
1147
  background-color: #FFFFFF;