@deephaven/components 0.11.6-beta.0 → 0.11.6-beta.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/AutoResizeTextarea.css.map +1 -1
- package/dist/BaseStyleSheet.css +337 -265
- package/dist/BaseStyleSheet.css.map +1 -1
- package/dist/CardFlip.css.map +1 -1
- package/dist/ComboBox.css.map +1 -1
- package/dist/DraggableItemList.css.map +1 -1
- package/dist/RadioItem.d.ts +2 -0
- package/dist/RadioItem.d.ts.map +1 -1
- package/dist/RadioItem.js +5 -2
- package/dist/RadioItem.js.map +1 -1
- package/dist/SelectValueList.css.map +1 -1
- package/dist/SocketedButton.css.map +1 -1
- package/dist/TimeSlider.css +1 -1
- package/dist/TimeSlider.css.map +1 -1
- package/dist/TimeSlider.module.css +1 -1
- package/dist/TimeSlider.module.css.map +1 -1
- package/dist/context-actions/ContextActions.css.map +1 -1
- package/dist/navigation/MenuItem.d.ts.map +1 -1
- package/dist/navigation/MenuItem.js +1 -0
- package/dist/navigation/MenuItem.js.map +1 -1
- package/dist/navigation/Page.css.map +1 -1
- package/dist/navigation/Page.d.ts.map +1 -1
- package/dist/navigation/Page.js +2 -0
- package/dist/navigation/Page.js.map +1 -1
- package/package.json +9 -9
package/dist/BaseStyleSheet.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/*!
|
|
3
|
-
* Bootstrap v4.
|
|
4
|
-
* Copyright 2011-
|
|
5
|
-
* Copyright 2011-
|
|
6
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/
|
|
3
|
+
* Bootstrap v4.6.1 (https://getbootstrap.com/)
|
|
4
|
+
* Copyright 2011-2021 The Bootstrap Authors
|
|
5
|
+
* Copyright 2011-2021 Twitter, Inc.
|
|
6
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
7
7
|
*/
|
|
8
8
|
:root {
|
|
9
9
|
--blue: #76d9e4;
|
|
@@ -169,11 +169,11 @@ a:hover {
|
|
|
169
169
|
text-decoration: underline;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
-
a:not([href]) {
|
|
172
|
+
a:not([href]):not([class]) {
|
|
173
173
|
color: inherit;
|
|
174
174
|
text-decoration: none;
|
|
175
175
|
}
|
|
176
|
-
a:not([href]):hover {
|
|
176
|
+
a:not([href]):not([class]):hover {
|
|
177
177
|
color: inherit;
|
|
178
178
|
text-decoration: none;
|
|
179
179
|
}
|
|
@@ -190,6 +190,7 @@ pre {
|
|
|
190
190
|
margin-top: 0;
|
|
191
191
|
margin-bottom: 1rem;
|
|
192
192
|
overflow: auto;
|
|
193
|
+
-ms-overflow-style: scrollbar;
|
|
193
194
|
}
|
|
194
195
|
|
|
195
196
|
figure {
|
|
@@ -220,6 +221,7 @@ caption {
|
|
|
220
221
|
|
|
221
222
|
th {
|
|
222
223
|
text-align: inherit;
|
|
224
|
+
text-align: -webkit-match-parent;
|
|
223
225
|
}
|
|
224
226
|
|
|
225
227
|
label {
|
|
@@ -231,9 +233,8 @@ button {
|
|
|
231
233
|
border-radius: 0;
|
|
232
234
|
}
|
|
233
235
|
|
|
234
|
-
button:focus {
|
|
235
|
-
outline:
|
|
236
|
-
outline: 5px auto -webkit-focus-ring-color;
|
|
236
|
+
button:focus:not(:focus-visible) {
|
|
237
|
+
outline: 0;
|
|
237
238
|
}
|
|
238
239
|
|
|
239
240
|
input,
|
|
@@ -257,6 +258,10 @@ select {
|
|
|
257
258
|
text-transform: none;
|
|
258
259
|
}
|
|
259
260
|
|
|
261
|
+
[role=button] {
|
|
262
|
+
cursor: pointer;
|
|
263
|
+
}
|
|
264
|
+
|
|
260
265
|
select {
|
|
261
266
|
word-wrap: normal;
|
|
262
267
|
}
|
|
@@ -289,13 +294,6 @@ input[type=checkbox] {
|
|
|
289
294
|
padding: 0;
|
|
290
295
|
}
|
|
291
296
|
|
|
292
|
-
input[type=date],
|
|
293
|
-
input[type=time],
|
|
294
|
-
input[type=datetime-local],
|
|
295
|
-
input[type=month] {
|
|
296
|
-
-webkit-appearance: listbox;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
297
|
textarea {
|
|
300
298
|
overflow: auto;
|
|
301
299
|
resize: vertical;
|
|
@@ -541,35 +539,12 @@ pre code {
|
|
|
541
539
|
overflow-y: scroll;
|
|
542
540
|
}
|
|
543
541
|
|
|
544
|
-
.container
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
}
|
|
551
|
-
@media (min-width: 576px) {
|
|
552
|
-
.container {
|
|
553
|
-
max-width: 540px;
|
|
554
|
-
}
|
|
555
|
-
}
|
|
556
|
-
@media (min-width: 768px) {
|
|
557
|
-
.container {
|
|
558
|
-
max-width: 720px;
|
|
559
|
-
}
|
|
560
|
-
}
|
|
561
|
-
@media (min-width: 992px) {
|
|
562
|
-
.container {
|
|
563
|
-
max-width: 960px;
|
|
564
|
-
}
|
|
565
|
-
}
|
|
566
|
-
@media (min-width: 1200px) {
|
|
567
|
-
.container {
|
|
568
|
-
max-width: 1140px;
|
|
569
|
-
}
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
.container-fluid, .container-xl, .container-lg, .container-md, .container-sm {
|
|
542
|
+
.container,
|
|
543
|
+
.container-fluid,
|
|
544
|
+
.container-xl,
|
|
545
|
+
.container-lg,
|
|
546
|
+
.container-md,
|
|
547
|
+
.container-sm {
|
|
573
548
|
width: 100%;
|
|
574
549
|
padding-right: 15px;
|
|
575
550
|
padding-left: 15px;
|
|
@@ -669,13 +644,13 @@ pre code {
|
|
|
669
644
|
}
|
|
670
645
|
|
|
671
646
|
.col-1 {
|
|
672
|
-
flex: 0 0 8.
|
|
673
|
-
max-width: 8.
|
|
647
|
+
flex: 0 0 8.33333333%;
|
|
648
|
+
max-width: 8.33333333%;
|
|
674
649
|
}
|
|
675
650
|
|
|
676
651
|
.col-2 {
|
|
677
|
-
flex: 0 0 16.
|
|
678
|
-
max-width: 16.
|
|
652
|
+
flex: 0 0 16.66666667%;
|
|
653
|
+
max-width: 16.66666667%;
|
|
679
654
|
}
|
|
680
655
|
|
|
681
656
|
.col-3 {
|
|
@@ -684,13 +659,13 @@ pre code {
|
|
|
684
659
|
}
|
|
685
660
|
|
|
686
661
|
.col-4 {
|
|
687
|
-
flex: 0 0 33.
|
|
688
|
-
max-width: 33.
|
|
662
|
+
flex: 0 0 33.33333333%;
|
|
663
|
+
max-width: 33.33333333%;
|
|
689
664
|
}
|
|
690
665
|
|
|
691
666
|
.col-5 {
|
|
692
|
-
flex: 0 0 41.
|
|
693
|
-
max-width: 41.
|
|
667
|
+
flex: 0 0 41.66666667%;
|
|
668
|
+
max-width: 41.66666667%;
|
|
694
669
|
}
|
|
695
670
|
|
|
696
671
|
.col-6 {
|
|
@@ -699,13 +674,13 @@ pre code {
|
|
|
699
674
|
}
|
|
700
675
|
|
|
701
676
|
.col-7 {
|
|
702
|
-
flex: 0 0 58.
|
|
703
|
-
max-width: 58.
|
|
677
|
+
flex: 0 0 58.33333333%;
|
|
678
|
+
max-width: 58.33333333%;
|
|
704
679
|
}
|
|
705
680
|
|
|
706
681
|
.col-8 {
|
|
707
|
-
flex: 0 0 66.
|
|
708
|
-
max-width: 66.
|
|
682
|
+
flex: 0 0 66.66666667%;
|
|
683
|
+
max-width: 66.66666667%;
|
|
709
684
|
}
|
|
710
685
|
|
|
711
686
|
.col-9 {
|
|
@@ -714,13 +689,13 @@ pre code {
|
|
|
714
689
|
}
|
|
715
690
|
|
|
716
691
|
.col-10 {
|
|
717
|
-
flex: 0 0 83.
|
|
718
|
-
max-width: 83.
|
|
692
|
+
flex: 0 0 83.33333333%;
|
|
693
|
+
max-width: 83.33333333%;
|
|
719
694
|
}
|
|
720
695
|
|
|
721
696
|
.col-11 {
|
|
722
|
-
flex: 0 0 91.
|
|
723
|
-
max-width: 91.
|
|
697
|
+
flex: 0 0 91.66666667%;
|
|
698
|
+
max-width: 91.66666667%;
|
|
724
699
|
}
|
|
725
700
|
|
|
726
701
|
.col-12 {
|
|
@@ -789,11 +764,11 @@ pre code {
|
|
|
789
764
|
}
|
|
790
765
|
|
|
791
766
|
.offset-1 {
|
|
792
|
-
margin-left: 8.
|
|
767
|
+
margin-left: 8.33333333%;
|
|
793
768
|
}
|
|
794
769
|
|
|
795
770
|
.offset-2 {
|
|
796
|
-
margin-left: 16.
|
|
771
|
+
margin-left: 16.66666667%;
|
|
797
772
|
}
|
|
798
773
|
|
|
799
774
|
.offset-3 {
|
|
@@ -801,11 +776,11 @@ pre code {
|
|
|
801
776
|
}
|
|
802
777
|
|
|
803
778
|
.offset-4 {
|
|
804
|
-
margin-left: 33.
|
|
779
|
+
margin-left: 33.33333333%;
|
|
805
780
|
}
|
|
806
781
|
|
|
807
782
|
.offset-5 {
|
|
808
|
-
margin-left: 41.
|
|
783
|
+
margin-left: 41.66666667%;
|
|
809
784
|
}
|
|
810
785
|
|
|
811
786
|
.offset-6 {
|
|
@@ -813,11 +788,11 @@ pre code {
|
|
|
813
788
|
}
|
|
814
789
|
|
|
815
790
|
.offset-7 {
|
|
816
|
-
margin-left: 58.
|
|
791
|
+
margin-left: 58.33333333%;
|
|
817
792
|
}
|
|
818
793
|
|
|
819
794
|
.offset-8 {
|
|
820
|
-
margin-left: 66.
|
|
795
|
+
margin-left: 66.66666667%;
|
|
821
796
|
}
|
|
822
797
|
|
|
823
798
|
.offset-9 {
|
|
@@ -825,11 +800,11 @@ pre code {
|
|
|
825
800
|
}
|
|
826
801
|
|
|
827
802
|
.offset-10 {
|
|
828
|
-
margin-left: 83.
|
|
803
|
+
margin-left: 83.33333333%;
|
|
829
804
|
}
|
|
830
805
|
|
|
831
806
|
.offset-11 {
|
|
832
|
-
margin-left: 91.
|
|
807
|
+
margin-left: 91.66666667%;
|
|
833
808
|
}
|
|
834
809
|
|
|
835
810
|
@media (min-width: 576px) {
|
|
@@ -876,13 +851,13 @@ pre code {
|
|
|
876
851
|
}
|
|
877
852
|
|
|
878
853
|
.col-sm-1 {
|
|
879
|
-
flex: 0 0 8.
|
|
880
|
-
max-width: 8.
|
|
854
|
+
flex: 0 0 8.33333333%;
|
|
855
|
+
max-width: 8.33333333%;
|
|
881
856
|
}
|
|
882
857
|
|
|
883
858
|
.col-sm-2 {
|
|
884
|
-
flex: 0 0 16.
|
|
885
|
-
max-width: 16.
|
|
859
|
+
flex: 0 0 16.66666667%;
|
|
860
|
+
max-width: 16.66666667%;
|
|
886
861
|
}
|
|
887
862
|
|
|
888
863
|
.col-sm-3 {
|
|
@@ -891,13 +866,13 @@ pre code {
|
|
|
891
866
|
}
|
|
892
867
|
|
|
893
868
|
.col-sm-4 {
|
|
894
|
-
flex: 0 0 33.
|
|
895
|
-
max-width: 33.
|
|
869
|
+
flex: 0 0 33.33333333%;
|
|
870
|
+
max-width: 33.33333333%;
|
|
896
871
|
}
|
|
897
872
|
|
|
898
873
|
.col-sm-5 {
|
|
899
|
-
flex: 0 0 41.
|
|
900
|
-
max-width: 41.
|
|
874
|
+
flex: 0 0 41.66666667%;
|
|
875
|
+
max-width: 41.66666667%;
|
|
901
876
|
}
|
|
902
877
|
|
|
903
878
|
.col-sm-6 {
|
|
@@ -906,13 +881,13 @@ pre code {
|
|
|
906
881
|
}
|
|
907
882
|
|
|
908
883
|
.col-sm-7 {
|
|
909
|
-
flex: 0 0 58.
|
|
910
|
-
max-width: 58.
|
|
884
|
+
flex: 0 0 58.33333333%;
|
|
885
|
+
max-width: 58.33333333%;
|
|
911
886
|
}
|
|
912
887
|
|
|
913
888
|
.col-sm-8 {
|
|
914
|
-
flex: 0 0 66.
|
|
915
|
-
max-width: 66.
|
|
889
|
+
flex: 0 0 66.66666667%;
|
|
890
|
+
max-width: 66.66666667%;
|
|
916
891
|
}
|
|
917
892
|
|
|
918
893
|
.col-sm-9 {
|
|
@@ -921,13 +896,13 @@ pre code {
|
|
|
921
896
|
}
|
|
922
897
|
|
|
923
898
|
.col-sm-10 {
|
|
924
|
-
flex: 0 0 83.
|
|
925
|
-
max-width: 83.
|
|
899
|
+
flex: 0 0 83.33333333%;
|
|
900
|
+
max-width: 83.33333333%;
|
|
926
901
|
}
|
|
927
902
|
|
|
928
903
|
.col-sm-11 {
|
|
929
|
-
flex: 0 0 91.
|
|
930
|
-
max-width: 91.
|
|
904
|
+
flex: 0 0 91.66666667%;
|
|
905
|
+
max-width: 91.66666667%;
|
|
931
906
|
}
|
|
932
907
|
|
|
933
908
|
.col-sm-12 {
|
|
@@ -1000,11 +975,11 @@ pre code {
|
|
|
1000
975
|
}
|
|
1001
976
|
|
|
1002
977
|
.offset-sm-1 {
|
|
1003
|
-
margin-left: 8.
|
|
978
|
+
margin-left: 8.33333333%;
|
|
1004
979
|
}
|
|
1005
980
|
|
|
1006
981
|
.offset-sm-2 {
|
|
1007
|
-
margin-left: 16.
|
|
982
|
+
margin-left: 16.66666667%;
|
|
1008
983
|
}
|
|
1009
984
|
|
|
1010
985
|
.offset-sm-3 {
|
|
@@ -1012,11 +987,11 @@ pre code {
|
|
|
1012
987
|
}
|
|
1013
988
|
|
|
1014
989
|
.offset-sm-4 {
|
|
1015
|
-
margin-left: 33.
|
|
990
|
+
margin-left: 33.33333333%;
|
|
1016
991
|
}
|
|
1017
992
|
|
|
1018
993
|
.offset-sm-5 {
|
|
1019
|
-
margin-left: 41.
|
|
994
|
+
margin-left: 41.66666667%;
|
|
1020
995
|
}
|
|
1021
996
|
|
|
1022
997
|
.offset-sm-6 {
|
|
@@ -1024,11 +999,11 @@ pre code {
|
|
|
1024
999
|
}
|
|
1025
1000
|
|
|
1026
1001
|
.offset-sm-7 {
|
|
1027
|
-
margin-left: 58.
|
|
1002
|
+
margin-left: 58.33333333%;
|
|
1028
1003
|
}
|
|
1029
1004
|
|
|
1030
1005
|
.offset-sm-8 {
|
|
1031
|
-
margin-left: 66.
|
|
1006
|
+
margin-left: 66.66666667%;
|
|
1032
1007
|
}
|
|
1033
1008
|
|
|
1034
1009
|
.offset-sm-9 {
|
|
@@ -1036,11 +1011,11 @@ pre code {
|
|
|
1036
1011
|
}
|
|
1037
1012
|
|
|
1038
1013
|
.offset-sm-10 {
|
|
1039
|
-
margin-left: 83.
|
|
1014
|
+
margin-left: 83.33333333%;
|
|
1040
1015
|
}
|
|
1041
1016
|
|
|
1042
1017
|
.offset-sm-11 {
|
|
1043
|
-
margin-left: 91.
|
|
1018
|
+
margin-left: 91.66666667%;
|
|
1044
1019
|
}
|
|
1045
1020
|
}
|
|
1046
1021
|
@media (min-width: 768px) {
|
|
@@ -1087,13 +1062,13 @@ pre code {
|
|
|
1087
1062
|
}
|
|
1088
1063
|
|
|
1089
1064
|
.col-md-1 {
|
|
1090
|
-
flex: 0 0 8.
|
|
1091
|
-
max-width: 8.
|
|
1065
|
+
flex: 0 0 8.33333333%;
|
|
1066
|
+
max-width: 8.33333333%;
|
|
1092
1067
|
}
|
|
1093
1068
|
|
|
1094
1069
|
.col-md-2 {
|
|
1095
|
-
flex: 0 0 16.
|
|
1096
|
-
max-width: 16.
|
|
1070
|
+
flex: 0 0 16.66666667%;
|
|
1071
|
+
max-width: 16.66666667%;
|
|
1097
1072
|
}
|
|
1098
1073
|
|
|
1099
1074
|
.col-md-3 {
|
|
@@ -1102,13 +1077,13 @@ pre code {
|
|
|
1102
1077
|
}
|
|
1103
1078
|
|
|
1104
1079
|
.col-md-4 {
|
|
1105
|
-
flex: 0 0 33.
|
|
1106
|
-
max-width: 33.
|
|
1080
|
+
flex: 0 0 33.33333333%;
|
|
1081
|
+
max-width: 33.33333333%;
|
|
1107
1082
|
}
|
|
1108
1083
|
|
|
1109
1084
|
.col-md-5 {
|
|
1110
|
-
flex: 0 0 41.
|
|
1111
|
-
max-width: 41.
|
|
1085
|
+
flex: 0 0 41.66666667%;
|
|
1086
|
+
max-width: 41.66666667%;
|
|
1112
1087
|
}
|
|
1113
1088
|
|
|
1114
1089
|
.col-md-6 {
|
|
@@ -1117,13 +1092,13 @@ pre code {
|
|
|
1117
1092
|
}
|
|
1118
1093
|
|
|
1119
1094
|
.col-md-7 {
|
|
1120
|
-
flex: 0 0 58.
|
|
1121
|
-
max-width: 58.
|
|
1095
|
+
flex: 0 0 58.33333333%;
|
|
1096
|
+
max-width: 58.33333333%;
|
|
1122
1097
|
}
|
|
1123
1098
|
|
|
1124
1099
|
.col-md-8 {
|
|
1125
|
-
flex: 0 0 66.
|
|
1126
|
-
max-width: 66.
|
|
1100
|
+
flex: 0 0 66.66666667%;
|
|
1101
|
+
max-width: 66.66666667%;
|
|
1127
1102
|
}
|
|
1128
1103
|
|
|
1129
1104
|
.col-md-9 {
|
|
@@ -1132,13 +1107,13 @@ pre code {
|
|
|
1132
1107
|
}
|
|
1133
1108
|
|
|
1134
1109
|
.col-md-10 {
|
|
1135
|
-
flex: 0 0 83.
|
|
1136
|
-
max-width: 83.
|
|
1110
|
+
flex: 0 0 83.33333333%;
|
|
1111
|
+
max-width: 83.33333333%;
|
|
1137
1112
|
}
|
|
1138
1113
|
|
|
1139
1114
|
.col-md-11 {
|
|
1140
|
-
flex: 0 0 91.
|
|
1141
|
-
max-width: 91.
|
|
1115
|
+
flex: 0 0 91.66666667%;
|
|
1116
|
+
max-width: 91.66666667%;
|
|
1142
1117
|
}
|
|
1143
1118
|
|
|
1144
1119
|
.col-md-12 {
|
|
@@ -1211,11 +1186,11 @@ pre code {
|
|
|
1211
1186
|
}
|
|
1212
1187
|
|
|
1213
1188
|
.offset-md-1 {
|
|
1214
|
-
margin-left: 8.
|
|
1189
|
+
margin-left: 8.33333333%;
|
|
1215
1190
|
}
|
|
1216
1191
|
|
|
1217
1192
|
.offset-md-2 {
|
|
1218
|
-
margin-left: 16.
|
|
1193
|
+
margin-left: 16.66666667%;
|
|
1219
1194
|
}
|
|
1220
1195
|
|
|
1221
1196
|
.offset-md-3 {
|
|
@@ -1223,11 +1198,11 @@ pre code {
|
|
|
1223
1198
|
}
|
|
1224
1199
|
|
|
1225
1200
|
.offset-md-4 {
|
|
1226
|
-
margin-left: 33.
|
|
1201
|
+
margin-left: 33.33333333%;
|
|
1227
1202
|
}
|
|
1228
1203
|
|
|
1229
1204
|
.offset-md-5 {
|
|
1230
|
-
margin-left: 41.
|
|
1205
|
+
margin-left: 41.66666667%;
|
|
1231
1206
|
}
|
|
1232
1207
|
|
|
1233
1208
|
.offset-md-6 {
|
|
@@ -1235,11 +1210,11 @@ pre code {
|
|
|
1235
1210
|
}
|
|
1236
1211
|
|
|
1237
1212
|
.offset-md-7 {
|
|
1238
|
-
margin-left: 58.
|
|
1213
|
+
margin-left: 58.33333333%;
|
|
1239
1214
|
}
|
|
1240
1215
|
|
|
1241
1216
|
.offset-md-8 {
|
|
1242
|
-
margin-left: 66.
|
|
1217
|
+
margin-left: 66.66666667%;
|
|
1243
1218
|
}
|
|
1244
1219
|
|
|
1245
1220
|
.offset-md-9 {
|
|
@@ -1247,11 +1222,11 @@ pre code {
|
|
|
1247
1222
|
}
|
|
1248
1223
|
|
|
1249
1224
|
.offset-md-10 {
|
|
1250
|
-
margin-left: 83.
|
|
1225
|
+
margin-left: 83.33333333%;
|
|
1251
1226
|
}
|
|
1252
1227
|
|
|
1253
1228
|
.offset-md-11 {
|
|
1254
|
-
margin-left: 91.
|
|
1229
|
+
margin-left: 91.66666667%;
|
|
1255
1230
|
}
|
|
1256
1231
|
}
|
|
1257
1232
|
@media (min-width: 992px) {
|
|
@@ -1298,13 +1273,13 @@ pre code {
|
|
|
1298
1273
|
}
|
|
1299
1274
|
|
|
1300
1275
|
.col-lg-1 {
|
|
1301
|
-
flex: 0 0 8.
|
|
1302
|
-
max-width: 8.
|
|
1276
|
+
flex: 0 0 8.33333333%;
|
|
1277
|
+
max-width: 8.33333333%;
|
|
1303
1278
|
}
|
|
1304
1279
|
|
|
1305
1280
|
.col-lg-2 {
|
|
1306
|
-
flex: 0 0 16.
|
|
1307
|
-
max-width: 16.
|
|
1281
|
+
flex: 0 0 16.66666667%;
|
|
1282
|
+
max-width: 16.66666667%;
|
|
1308
1283
|
}
|
|
1309
1284
|
|
|
1310
1285
|
.col-lg-3 {
|
|
@@ -1313,13 +1288,13 @@ pre code {
|
|
|
1313
1288
|
}
|
|
1314
1289
|
|
|
1315
1290
|
.col-lg-4 {
|
|
1316
|
-
flex: 0 0 33.
|
|
1317
|
-
max-width: 33.
|
|
1291
|
+
flex: 0 0 33.33333333%;
|
|
1292
|
+
max-width: 33.33333333%;
|
|
1318
1293
|
}
|
|
1319
1294
|
|
|
1320
1295
|
.col-lg-5 {
|
|
1321
|
-
flex: 0 0 41.
|
|
1322
|
-
max-width: 41.
|
|
1296
|
+
flex: 0 0 41.66666667%;
|
|
1297
|
+
max-width: 41.66666667%;
|
|
1323
1298
|
}
|
|
1324
1299
|
|
|
1325
1300
|
.col-lg-6 {
|
|
@@ -1328,13 +1303,13 @@ pre code {
|
|
|
1328
1303
|
}
|
|
1329
1304
|
|
|
1330
1305
|
.col-lg-7 {
|
|
1331
|
-
flex: 0 0 58.
|
|
1332
|
-
max-width: 58.
|
|
1306
|
+
flex: 0 0 58.33333333%;
|
|
1307
|
+
max-width: 58.33333333%;
|
|
1333
1308
|
}
|
|
1334
1309
|
|
|
1335
1310
|
.col-lg-8 {
|
|
1336
|
-
flex: 0 0 66.
|
|
1337
|
-
max-width: 66.
|
|
1311
|
+
flex: 0 0 66.66666667%;
|
|
1312
|
+
max-width: 66.66666667%;
|
|
1338
1313
|
}
|
|
1339
1314
|
|
|
1340
1315
|
.col-lg-9 {
|
|
@@ -1343,13 +1318,13 @@ pre code {
|
|
|
1343
1318
|
}
|
|
1344
1319
|
|
|
1345
1320
|
.col-lg-10 {
|
|
1346
|
-
flex: 0 0 83.
|
|
1347
|
-
max-width: 83.
|
|
1321
|
+
flex: 0 0 83.33333333%;
|
|
1322
|
+
max-width: 83.33333333%;
|
|
1348
1323
|
}
|
|
1349
1324
|
|
|
1350
1325
|
.col-lg-11 {
|
|
1351
|
-
flex: 0 0 91.
|
|
1352
|
-
max-width: 91.
|
|
1326
|
+
flex: 0 0 91.66666667%;
|
|
1327
|
+
max-width: 91.66666667%;
|
|
1353
1328
|
}
|
|
1354
1329
|
|
|
1355
1330
|
.col-lg-12 {
|
|
@@ -1422,11 +1397,11 @@ pre code {
|
|
|
1422
1397
|
}
|
|
1423
1398
|
|
|
1424
1399
|
.offset-lg-1 {
|
|
1425
|
-
margin-left: 8.
|
|
1400
|
+
margin-left: 8.33333333%;
|
|
1426
1401
|
}
|
|
1427
1402
|
|
|
1428
1403
|
.offset-lg-2 {
|
|
1429
|
-
margin-left: 16.
|
|
1404
|
+
margin-left: 16.66666667%;
|
|
1430
1405
|
}
|
|
1431
1406
|
|
|
1432
1407
|
.offset-lg-3 {
|
|
@@ -1434,11 +1409,11 @@ pre code {
|
|
|
1434
1409
|
}
|
|
1435
1410
|
|
|
1436
1411
|
.offset-lg-4 {
|
|
1437
|
-
margin-left: 33.
|
|
1412
|
+
margin-left: 33.33333333%;
|
|
1438
1413
|
}
|
|
1439
1414
|
|
|
1440
1415
|
.offset-lg-5 {
|
|
1441
|
-
margin-left: 41.
|
|
1416
|
+
margin-left: 41.66666667%;
|
|
1442
1417
|
}
|
|
1443
1418
|
|
|
1444
1419
|
.offset-lg-6 {
|
|
@@ -1446,11 +1421,11 @@ pre code {
|
|
|
1446
1421
|
}
|
|
1447
1422
|
|
|
1448
1423
|
.offset-lg-7 {
|
|
1449
|
-
margin-left: 58.
|
|
1424
|
+
margin-left: 58.33333333%;
|
|
1450
1425
|
}
|
|
1451
1426
|
|
|
1452
1427
|
.offset-lg-8 {
|
|
1453
|
-
margin-left: 66.
|
|
1428
|
+
margin-left: 66.66666667%;
|
|
1454
1429
|
}
|
|
1455
1430
|
|
|
1456
1431
|
.offset-lg-9 {
|
|
@@ -1458,11 +1433,11 @@ pre code {
|
|
|
1458
1433
|
}
|
|
1459
1434
|
|
|
1460
1435
|
.offset-lg-10 {
|
|
1461
|
-
margin-left: 83.
|
|
1436
|
+
margin-left: 83.33333333%;
|
|
1462
1437
|
}
|
|
1463
1438
|
|
|
1464
1439
|
.offset-lg-11 {
|
|
1465
|
-
margin-left: 91.
|
|
1440
|
+
margin-left: 91.66666667%;
|
|
1466
1441
|
}
|
|
1467
1442
|
}
|
|
1468
1443
|
@media (min-width: 1200px) {
|
|
@@ -1509,13 +1484,13 @@ pre code {
|
|
|
1509
1484
|
}
|
|
1510
1485
|
|
|
1511
1486
|
.col-xl-1 {
|
|
1512
|
-
flex: 0 0 8.
|
|
1513
|
-
max-width: 8.
|
|
1487
|
+
flex: 0 0 8.33333333%;
|
|
1488
|
+
max-width: 8.33333333%;
|
|
1514
1489
|
}
|
|
1515
1490
|
|
|
1516
1491
|
.col-xl-2 {
|
|
1517
|
-
flex: 0 0 16.
|
|
1518
|
-
max-width: 16.
|
|
1492
|
+
flex: 0 0 16.66666667%;
|
|
1493
|
+
max-width: 16.66666667%;
|
|
1519
1494
|
}
|
|
1520
1495
|
|
|
1521
1496
|
.col-xl-3 {
|
|
@@ -1524,13 +1499,13 @@ pre code {
|
|
|
1524
1499
|
}
|
|
1525
1500
|
|
|
1526
1501
|
.col-xl-4 {
|
|
1527
|
-
flex: 0 0 33.
|
|
1528
|
-
max-width: 33.
|
|
1502
|
+
flex: 0 0 33.33333333%;
|
|
1503
|
+
max-width: 33.33333333%;
|
|
1529
1504
|
}
|
|
1530
1505
|
|
|
1531
1506
|
.col-xl-5 {
|
|
1532
|
-
flex: 0 0 41.
|
|
1533
|
-
max-width: 41.
|
|
1507
|
+
flex: 0 0 41.66666667%;
|
|
1508
|
+
max-width: 41.66666667%;
|
|
1534
1509
|
}
|
|
1535
1510
|
|
|
1536
1511
|
.col-xl-6 {
|
|
@@ -1539,13 +1514,13 @@ pre code {
|
|
|
1539
1514
|
}
|
|
1540
1515
|
|
|
1541
1516
|
.col-xl-7 {
|
|
1542
|
-
flex: 0 0 58.
|
|
1543
|
-
max-width: 58.
|
|
1517
|
+
flex: 0 0 58.33333333%;
|
|
1518
|
+
max-width: 58.33333333%;
|
|
1544
1519
|
}
|
|
1545
1520
|
|
|
1546
1521
|
.col-xl-8 {
|
|
1547
|
-
flex: 0 0 66.
|
|
1548
|
-
max-width: 66.
|
|
1522
|
+
flex: 0 0 66.66666667%;
|
|
1523
|
+
max-width: 66.66666667%;
|
|
1549
1524
|
}
|
|
1550
1525
|
|
|
1551
1526
|
.col-xl-9 {
|
|
@@ -1554,13 +1529,13 @@ pre code {
|
|
|
1554
1529
|
}
|
|
1555
1530
|
|
|
1556
1531
|
.col-xl-10 {
|
|
1557
|
-
flex: 0 0 83.
|
|
1558
|
-
max-width: 83.
|
|
1532
|
+
flex: 0 0 83.33333333%;
|
|
1533
|
+
max-width: 83.33333333%;
|
|
1559
1534
|
}
|
|
1560
1535
|
|
|
1561
1536
|
.col-xl-11 {
|
|
1562
|
-
flex: 0 0 91.
|
|
1563
|
-
max-width: 91.
|
|
1537
|
+
flex: 0 0 91.66666667%;
|
|
1538
|
+
max-width: 91.66666667%;
|
|
1564
1539
|
}
|
|
1565
1540
|
|
|
1566
1541
|
.col-xl-12 {
|
|
@@ -1633,11 +1608,11 @@ pre code {
|
|
|
1633
1608
|
}
|
|
1634
1609
|
|
|
1635
1610
|
.offset-xl-1 {
|
|
1636
|
-
margin-left: 8.
|
|
1611
|
+
margin-left: 8.33333333%;
|
|
1637
1612
|
}
|
|
1638
1613
|
|
|
1639
1614
|
.offset-xl-2 {
|
|
1640
|
-
margin-left: 16.
|
|
1615
|
+
margin-left: 16.66666667%;
|
|
1641
1616
|
}
|
|
1642
1617
|
|
|
1643
1618
|
.offset-xl-3 {
|
|
@@ -1645,11 +1620,11 @@ pre code {
|
|
|
1645
1620
|
}
|
|
1646
1621
|
|
|
1647
1622
|
.offset-xl-4 {
|
|
1648
|
-
margin-left: 33.
|
|
1623
|
+
margin-left: 33.33333333%;
|
|
1649
1624
|
}
|
|
1650
1625
|
|
|
1651
1626
|
.offset-xl-5 {
|
|
1652
|
-
margin-left: 41.
|
|
1627
|
+
margin-left: 41.66666667%;
|
|
1653
1628
|
}
|
|
1654
1629
|
|
|
1655
1630
|
.offset-xl-6 {
|
|
@@ -1657,11 +1632,11 @@ pre code {
|
|
|
1657
1632
|
}
|
|
1658
1633
|
|
|
1659
1634
|
.offset-xl-7 {
|
|
1660
|
-
margin-left: 58.
|
|
1635
|
+
margin-left: 58.33333333%;
|
|
1661
1636
|
}
|
|
1662
1637
|
|
|
1663
1638
|
.offset-xl-8 {
|
|
1664
|
-
margin-left: 66.
|
|
1639
|
+
margin-left: 66.66666667%;
|
|
1665
1640
|
}
|
|
1666
1641
|
|
|
1667
1642
|
.offset-xl-9 {
|
|
@@ -1669,11 +1644,11 @@ pre code {
|
|
|
1669
1644
|
}
|
|
1670
1645
|
|
|
1671
1646
|
.offset-xl-10 {
|
|
1672
|
-
margin-left: 83.
|
|
1647
|
+
margin-left: 83.33333333%;
|
|
1673
1648
|
}
|
|
1674
1649
|
|
|
1675
1650
|
.offset-xl-11 {
|
|
1676
|
-
margin-left: 91.
|
|
1651
|
+
margin-left: 91.66666667%;
|
|
1677
1652
|
}
|
|
1678
1653
|
}
|
|
1679
1654
|
.table {
|
|
@@ -2151,10 +2126,6 @@ pre code {
|
|
|
2151
2126
|
background-color: transparent;
|
|
2152
2127
|
border: 0;
|
|
2153
2128
|
}
|
|
2154
|
-
.form-control:-moz-focusring {
|
|
2155
|
-
color: transparent;
|
|
2156
|
-
text-shadow: 0 0 0 #f0f0ee;
|
|
2157
|
-
}
|
|
2158
2129
|
.form-control:focus {
|
|
2159
2130
|
color: #f0f0ee;
|
|
2160
2131
|
background-color: #555356;
|
|
@@ -2171,6 +2142,17 @@ pre code {
|
|
|
2171
2142
|
opacity: 1;
|
|
2172
2143
|
}
|
|
2173
2144
|
|
|
2145
|
+
input[type=date].form-control,
|
|
2146
|
+
input[type=time].form-control,
|
|
2147
|
+
input[type=datetime-local].form-control,
|
|
2148
|
+
input[type=month].form-control {
|
|
2149
|
+
appearance: none;
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2152
|
+
select.form-control:-moz-focusring {
|
|
2153
|
+
color: transparent;
|
|
2154
|
+
text-shadow: 0 0 0 #f0f0ee;
|
|
2155
|
+
}
|
|
2174
2156
|
select.form-control:focus::-ms-value {
|
|
2175
2157
|
color: #f0f0ee;
|
|
2176
2158
|
background-color: #555356;
|
|
@@ -2309,6 +2291,7 @@ textarea.form-control {
|
|
|
2309
2291
|
.valid-tooltip {
|
|
2310
2292
|
position: absolute;
|
|
2311
2293
|
top: 100%;
|
|
2294
|
+
left: 0;
|
|
2312
2295
|
z-index: 5;
|
|
2313
2296
|
display: none;
|
|
2314
2297
|
max-width: 100%;
|
|
@@ -2320,6 +2303,9 @@ textarea.form-control {
|
|
|
2320
2303
|
background-color: rgba(158, 220, 111, 0.9);
|
|
2321
2304
|
border-radius: 4px;
|
|
2322
2305
|
}
|
|
2306
|
+
.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
|
|
2307
|
+
left: 5px;
|
|
2308
|
+
}
|
|
2323
2309
|
|
|
2324
2310
|
.was-validated :valid ~ .valid-feedback,
|
|
2325
2311
|
.was-validated :valid ~ .valid-tooltip,
|
|
@@ -2330,7 +2316,7 @@ textarea.form-control {
|
|
|
2330
2316
|
|
|
2331
2317
|
.was-validated .form-control:valid, .form-control.is-valid {
|
|
2332
2318
|
border-color: #9edc6f;
|
|
2333
|
-
padding-right: calc(1.5em + 0.75rem);
|
|
2319
|
+
padding-right: calc(1.5em + 0.75rem) !important;
|
|
2334
2320
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%239edc6f' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
|
|
2335
2321
|
background-repeat: no-repeat;
|
|
2336
2322
|
background-position: right calc(0.375em + 0.1875rem) center;
|
|
@@ -2341,6 +2327,11 @@ textarea.form-control {
|
|
|
2341
2327
|
box-shadow: 0 0 0 0.2rem rgba(158, 220, 111, 0.25);
|
|
2342
2328
|
}
|
|
2343
2329
|
|
|
2330
|
+
.was-validated select.form-control:valid, select.form-control.is-valid {
|
|
2331
|
+
padding-right: 3rem !important;
|
|
2332
|
+
background-position: right 1.5rem center;
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2344
2335
|
.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
|
|
2345
2336
|
padding-right: calc(1.5em + 0.75rem);
|
|
2346
2337
|
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
|
|
@@ -2348,8 +2339,8 @@ textarea.form-control {
|
|
|
2348
2339
|
|
|
2349
2340
|
.was-validated .custom-select:valid, .custom-select.is-valid {
|
|
2350
2341
|
border-color: #9edc6f;
|
|
2351
|
-
padding-right: calc(0.75em + 2.3125rem);
|
|
2352
|
-
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23929192' d='M4 7l-.4-.8 4-3.7h.8l4 3.7-.4.8H4zm0 2l-.4.8 4 3.7h.8l4-3.7L12 9H4z'/%3E%3C/svg%3E")
|
|
2342
|
+
padding-right: calc(0.75em + 2.3125rem) !important;
|
|
2343
|
+
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23929192' d='M4 7l-.4-.8 4-3.7h.8l4 3.7-.4.8H4zm0 2l-.4.8 4 3.7h.8l4-3.7L12 9H4z'/%3E%3C/svg%3E") right 0.75rem center/16px 16px no-repeat, #555356 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%239edc6f' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
|
|
2353
2344
|
}
|
|
2354
2345
|
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
|
|
2355
2346
|
border-color: #9edc6f;
|
|
@@ -2401,6 +2392,7 @@ textarea.form-control {
|
|
|
2401
2392
|
.invalid-tooltip {
|
|
2402
2393
|
position: absolute;
|
|
2403
2394
|
top: 100%;
|
|
2395
|
+
left: 0;
|
|
2404
2396
|
z-index: 5;
|
|
2405
2397
|
display: none;
|
|
2406
2398
|
max-width: 100%;
|
|
@@ -2412,6 +2404,9 @@ textarea.form-control {
|
|
|
2412
2404
|
background-color: rgba(249, 93, 132, 0.9);
|
|
2413
2405
|
border-radius: 4px;
|
|
2414
2406
|
}
|
|
2407
|
+
.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
|
|
2408
|
+
left: 5px;
|
|
2409
|
+
}
|
|
2415
2410
|
|
|
2416
2411
|
.was-validated :invalid ~ .invalid-feedback,
|
|
2417
2412
|
.was-validated :invalid ~ .invalid-tooltip,
|
|
@@ -2422,7 +2417,7 @@ textarea.form-control {
|
|
|
2422
2417
|
|
|
2423
2418
|
.was-validated .form-control:invalid, .form-control.is-invalid {
|
|
2424
2419
|
border-color: #f95d84;
|
|
2425
|
-
padding-right: calc(1.5em + 0.75rem);
|
|
2420
|
+
padding-right: calc(1.5em + 0.75rem) !important;
|
|
2426
2421
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg fill='none'%3E%3Cg fill='%23f95d84'%3E%3Cpath d='M3.889 3.095a6.5 6.5 0 117.222 10.81A6.5 6.5 0 013.89 3.095zm.555 9.978a5.5 5.5 0 106.111-9.145 5.5 5.5 0 00-6.11 9.145zM8 5H7v5h1V5zm0 6H7v1h1v-1z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E ");
|
|
2427
2422
|
background-repeat: no-repeat;
|
|
2428
2423
|
background-position: right calc(0.375em + 0.1875rem) center;
|
|
@@ -2433,6 +2428,11 @@ textarea.form-control {
|
|
|
2433
2428
|
box-shadow: 0 0 0 0.2rem rgba(249, 93, 132, 0.25);
|
|
2434
2429
|
}
|
|
2435
2430
|
|
|
2431
|
+
.was-validated select.form-control:invalid, select.form-control.is-invalid {
|
|
2432
|
+
padding-right: 3rem !important;
|
|
2433
|
+
background-position: right 1.5rem center;
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
2436
|
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
|
|
2437
2437
|
padding-right: calc(1.5em + 0.75rem);
|
|
2438
2438
|
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
|
|
@@ -2440,8 +2440,8 @@ textarea.form-control {
|
|
|
2440
2440
|
|
|
2441
2441
|
.was-validated .custom-select:invalid, .custom-select.is-invalid {
|
|
2442
2442
|
border-color: #f95d84;
|
|
2443
|
-
padding-right: calc(0.75em + 2.3125rem);
|
|
2444
|
-
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23929192' d='M4 7l-.4-.8 4-3.7h.8l4 3.7-.4.8H4zm0 2l-.4.8 4 3.7h.8l4-3.7L12 9H4z'/%3E%3C/svg%3E")
|
|
2443
|
+
padding-right: calc(0.75em + 2.3125rem) !important;
|
|
2444
|
+
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23929192' d='M4 7l-.4-.8 4-3.7h.8l4 3.7-.4.8H4zm0 2l-.4.8 4 3.7h.8l4-3.7L12 9H4z'/%3E%3C/svg%3E") right 0.75rem center/16px 16px no-repeat, #555356 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg fill='none'%3E%3Cg fill='%23f95d84'%3E%3Cpath d='M3.889 3.095a6.5 6.5 0 117.222 10.81A6.5 6.5 0 013.89 3.095zm.555 9.978a5.5 5.5 0 106.111-9.145 5.5 5.5 0 00-6.11 9.145zM8 5H7v5h1V5zm0 6H7v1h1v-1z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E ") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
|
|
2445
2445
|
}
|
|
2446
2446
|
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
|
|
2447
2447
|
border-color: #f95d84;
|
|
@@ -2545,7 +2545,6 @@ textarea.form-control {
|
|
|
2545
2545
|
color: #f0f0ee;
|
|
2546
2546
|
text-align: center;
|
|
2547
2547
|
vertical-align: middle;
|
|
2548
|
-
cursor: pointer;
|
|
2549
2548
|
user-select: none;
|
|
2550
2549
|
background-color: transparent;
|
|
2551
2550
|
border: 2px solid transparent;
|
|
@@ -2571,6 +2570,9 @@ textarea.form-control {
|
|
|
2571
2570
|
.btn.disabled, .btn:disabled {
|
|
2572
2571
|
opacity: 0.65;
|
|
2573
2572
|
}
|
|
2573
|
+
.btn:not(:disabled):not(.disabled) {
|
|
2574
|
+
cursor: pointer;
|
|
2575
|
+
}
|
|
2574
2576
|
a.btn.disabled,
|
|
2575
2577
|
fieldset:disabled a.btn {
|
|
2576
2578
|
pointer-events: none;
|
|
@@ -3412,7 +3414,6 @@ fieldset:disabled a.btn {
|
|
|
3412
3414
|
}
|
|
3413
3415
|
.btn-link:focus, .btn-link.focus {
|
|
3414
3416
|
text-decoration: underline;
|
|
3415
|
-
box-shadow: none;
|
|
3416
3417
|
}
|
|
3417
3418
|
.btn-link:disabled, .btn-link.disabled {
|
|
3418
3419
|
color: #555356;
|
|
@@ -3684,7 +3685,7 @@ input[type=button].btn-block {
|
|
|
3684
3685
|
background-color: #4878ea;
|
|
3685
3686
|
}
|
|
3686
3687
|
.dropdown-item.disabled, .dropdown-item:disabled {
|
|
3687
|
-
color: #
|
|
3688
|
+
color: #5b5a5c;
|
|
3688
3689
|
pointer-events: none;
|
|
3689
3690
|
background-color: transparent;
|
|
3690
3691
|
}
|
|
@@ -3824,7 +3825,8 @@ input[type=button].btn-block {
|
|
|
3824
3825
|
.input-group > .custom-select,
|
|
3825
3826
|
.input-group > .custom-file {
|
|
3826
3827
|
position: relative;
|
|
3827
|
-
flex: 1 1
|
|
3828
|
+
flex: 1 1 auto;
|
|
3829
|
+
width: 1%;
|
|
3828
3830
|
min-width: 0;
|
|
3829
3831
|
margin-bottom: 0;
|
|
3830
3832
|
}
|
|
@@ -3850,11 +3852,6 @@ input[type=button].btn-block {
|
|
|
3850
3852
|
.input-group > .custom-file .custom-file-input:focus {
|
|
3851
3853
|
z-index: 4;
|
|
3852
3854
|
}
|
|
3853
|
-
.input-group > .form-control:not(:last-child),
|
|
3854
|
-
.input-group > .custom-select:not(:last-child) {
|
|
3855
|
-
border-top-right-radius: 0;
|
|
3856
|
-
border-bottom-right-radius: 0;
|
|
3857
|
-
}
|
|
3858
3855
|
.input-group > .form-control:not(:first-child),
|
|
3859
3856
|
.input-group > .custom-select:not(:first-child) {
|
|
3860
3857
|
border-top-left-radius: 0;
|
|
@@ -3872,6 +3869,20 @@ input[type=button].btn-block {
|
|
|
3872
3869
|
border-top-left-radius: 0;
|
|
3873
3870
|
border-bottom-left-radius: 0;
|
|
3874
3871
|
}
|
|
3872
|
+
.input-group:not(.has-validation) > .form-control:not(:last-child),
|
|
3873
|
+
.input-group:not(.has-validation) > .custom-select:not(:last-child),
|
|
3874
|
+
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
|
|
3875
|
+
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
|
|
3876
|
+
border-top-right-radius: 0;
|
|
3877
|
+
border-bottom-right-radius: 0;
|
|
3878
|
+
}
|
|
3879
|
+
.input-group.has-validation > .form-control:nth-last-child(n+3),
|
|
3880
|
+
.input-group.has-validation > .custom-select:nth-last-child(n+3),
|
|
3881
|
+
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label,
|
|
3882
|
+
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after {
|
|
3883
|
+
border-top-right-radius: 0;
|
|
3884
|
+
border-bottom-right-radius: 0;
|
|
3885
|
+
}
|
|
3875
3886
|
|
|
3876
3887
|
.input-group-prepend,
|
|
3877
3888
|
.input-group-append {
|
|
@@ -3966,8 +3977,10 @@ input[type=button].btn-block {
|
|
|
3966
3977
|
|
|
3967
3978
|
.input-group > .input-group-prepend > .btn,
|
|
3968
3979
|
.input-group > .input-group-prepend > .input-group-text,
|
|
3969
|
-
.input-group > .input-group-append:not(:last-child) > .btn,
|
|
3970
|
-
.input-group > .input-group-append:not(:last-child) > .input-group-text,
|
|
3980
|
+
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
|
|
3981
|
+
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
|
|
3982
|
+
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
|
|
3983
|
+
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
|
|
3971
3984
|
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
|
3972
3985
|
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
|
|
3973
3986
|
border-top-right-radius: 0;
|
|
@@ -3986,9 +3999,11 @@ input[type=button].btn-block {
|
|
|
3986
3999
|
|
|
3987
4000
|
.custom-control {
|
|
3988
4001
|
position: relative;
|
|
4002
|
+
z-index: 1;
|
|
3989
4003
|
display: block;
|
|
3990
4004
|
min-height: 1.5rem;
|
|
3991
4005
|
padding-left: 1.5rem;
|
|
4006
|
+
color-adjust: exact;
|
|
3992
4007
|
}
|
|
3993
4008
|
|
|
3994
4009
|
.custom-control-inline {
|
|
@@ -4052,7 +4067,7 @@ input[type=button].btn-block {
|
|
|
4052
4067
|
width: 1rem;
|
|
4053
4068
|
height: 1rem;
|
|
4054
4069
|
content: "";
|
|
4055
|
-
background:
|
|
4070
|
+
background: 50%/75% 75% no-repeat;
|
|
4056
4071
|
}
|
|
4057
4072
|
|
|
4058
4073
|
.custom-checkbox .custom-control-label::before {
|
|
@@ -4126,7 +4141,7 @@ input[type=button].btn-block {
|
|
|
4126
4141
|
line-height: 1.5;
|
|
4127
4142
|
color: #f0f0ee;
|
|
4128
4143
|
vertical-align: middle;
|
|
4129
|
-
background: #555356 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23929192' d='M4 7l-.4-.8 4-3.7h.8l4 3.7-.4.8H4zm0 2l-.4.8 4 3.7h.8l4-3.7L12 9H4z'/%3E%3C/svg%3E")
|
|
4144
|
+
background: #555356 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23929192' d='M4 7l-.4-.8 4-3.7h.8l4 3.7-.4.8H4zm0 2l-.4.8 4 3.7h.8l4-3.7L12 9H4z'/%3E%3C/svg%3E") right 0.75rem center/16px 16px no-repeat;
|
|
4130
4145
|
border: 1px solid #929192;
|
|
4131
4146
|
border-radius: 4px;
|
|
4132
4147
|
appearance: none;
|
|
@@ -4187,6 +4202,7 @@ input[type=button].btn-block {
|
|
|
4187
4202
|
width: 100%;
|
|
4188
4203
|
height: calc(1.5em + 0.75rem + 2px);
|
|
4189
4204
|
margin: 0;
|
|
4205
|
+
overflow: hidden;
|
|
4190
4206
|
opacity: 0;
|
|
4191
4207
|
}
|
|
4192
4208
|
.custom-file-input:focus ~ .custom-file-label {
|
|
@@ -4211,6 +4227,7 @@ input[type=button].btn-block {
|
|
|
4211
4227
|
z-index: 1;
|
|
4212
4228
|
height: calc(1.5em + 0.75rem + 2px);
|
|
4213
4229
|
padding: 0.375rem 0.75rem;
|
|
4230
|
+
overflow: hidden;
|
|
4214
4231
|
font-weight: 400;
|
|
4215
4232
|
line-height: 1.5;
|
|
4216
4233
|
color: #f0f0ee;
|
|
@@ -4243,7 +4260,7 @@ input[type=button].btn-block {
|
|
|
4243
4260
|
appearance: none;
|
|
4244
4261
|
}
|
|
4245
4262
|
.custom-range:focus {
|
|
4246
|
-
outline:
|
|
4263
|
+
outline: 0;
|
|
4247
4264
|
}
|
|
4248
4265
|
.custom-range:focus::-webkit-slider-thumb {
|
|
4249
4266
|
box-shadow: 0 0 0 1px #1a171a, 0 0 0 0.2rem rgba(72, 120, 234, 0.35);
|
|
@@ -4401,10 +4418,8 @@ input[type=button].btn-block {
|
|
|
4401
4418
|
.nav-tabs {
|
|
4402
4419
|
border-bottom: 1px solid #c0bfbf;
|
|
4403
4420
|
}
|
|
4404
|
-
.nav-tabs .nav-item {
|
|
4405
|
-
margin-bottom: -1px;
|
|
4406
|
-
}
|
|
4407
4421
|
.nav-tabs .nav-link {
|
|
4422
|
+
margin-bottom: -1px;
|
|
4408
4423
|
border: 1px solid transparent;
|
|
4409
4424
|
border-top-left-radius: 4px;
|
|
4410
4425
|
border-top-right-radius: 4px;
|
|
@@ -4438,11 +4453,13 @@ input[type=button].btn-block {
|
|
|
4438
4453
|
background-color: #4878ea;
|
|
4439
4454
|
}
|
|
4440
4455
|
|
|
4456
|
+
.nav-fill > .nav-link,
|
|
4441
4457
|
.nav-fill .nav-item {
|
|
4442
4458
|
flex: 1 1 auto;
|
|
4443
4459
|
text-align: center;
|
|
4444
4460
|
}
|
|
4445
4461
|
|
|
4462
|
+
.nav-justified > .nav-link,
|
|
4446
4463
|
.nav-justified .nav-item {
|
|
4447
4464
|
flex-basis: 0;
|
|
4448
4465
|
flex-grow: 1;
|
|
@@ -4534,8 +4551,12 @@ input[type=button].btn-block {
|
|
|
4534
4551
|
height: 1.5em;
|
|
4535
4552
|
vertical-align: middle;
|
|
4536
4553
|
content: "";
|
|
4537
|
-
background: no-repeat
|
|
4538
|
-
|
|
4554
|
+
background: 50%/100% 100% no-repeat;
|
|
4555
|
+
}
|
|
4556
|
+
|
|
4557
|
+
.navbar-nav-scroll {
|
|
4558
|
+
max-height: 75vh;
|
|
4559
|
+
overflow-y: auto;
|
|
4539
4560
|
}
|
|
4540
4561
|
|
|
4541
4562
|
@media (max-width: 575.98px) {
|
|
@@ -4572,6 +4593,9 @@ input[type=button].btn-block {
|
|
|
4572
4593
|
.navbar-expand-sm > .container-xl {
|
|
4573
4594
|
flex-wrap: nowrap;
|
|
4574
4595
|
}
|
|
4596
|
+
.navbar-expand-sm .navbar-nav-scroll {
|
|
4597
|
+
overflow: visible;
|
|
4598
|
+
}
|
|
4575
4599
|
.navbar-expand-sm .navbar-collapse {
|
|
4576
4600
|
display: flex !important;
|
|
4577
4601
|
flex-basis: auto;
|
|
@@ -4614,6 +4638,9 @@ input[type=button].btn-block {
|
|
|
4614
4638
|
.navbar-expand-md > .container-xl {
|
|
4615
4639
|
flex-wrap: nowrap;
|
|
4616
4640
|
}
|
|
4641
|
+
.navbar-expand-md .navbar-nav-scroll {
|
|
4642
|
+
overflow: visible;
|
|
4643
|
+
}
|
|
4617
4644
|
.navbar-expand-md .navbar-collapse {
|
|
4618
4645
|
display: flex !important;
|
|
4619
4646
|
flex-basis: auto;
|
|
@@ -4656,6 +4683,9 @@ input[type=button].btn-block {
|
|
|
4656
4683
|
.navbar-expand-lg > .container-xl {
|
|
4657
4684
|
flex-wrap: nowrap;
|
|
4658
4685
|
}
|
|
4686
|
+
.navbar-expand-lg .navbar-nav-scroll {
|
|
4687
|
+
overflow: visible;
|
|
4688
|
+
}
|
|
4659
4689
|
.navbar-expand-lg .navbar-collapse {
|
|
4660
4690
|
display: flex !important;
|
|
4661
4691
|
flex-basis: auto;
|
|
@@ -4698,6 +4728,9 @@ input[type=button].btn-block {
|
|
|
4698
4728
|
.navbar-expand-xl > .container-xl {
|
|
4699
4729
|
flex-wrap: nowrap;
|
|
4700
4730
|
}
|
|
4731
|
+
.navbar-expand-xl .navbar-nav-scroll {
|
|
4732
|
+
overflow: visible;
|
|
4733
|
+
}
|
|
4701
4734
|
.navbar-expand-xl .navbar-collapse {
|
|
4702
4735
|
display: flex !important;
|
|
4703
4736
|
flex-basis: auto;
|
|
@@ -4737,6 +4770,9 @@ input[type=button].btn-block {
|
|
|
4737
4770
|
.navbar-expand > .container-xl {
|
|
4738
4771
|
flex-wrap: nowrap;
|
|
4739
4772
|
}
|
|
4773
|
+
.navbar-expand .navbar-nav-scroll {
|
|
4774
|
+
overflow: visible;
|
|
4775
|
+
}
|
|
4740
4776
|
.navbar-expand .navbar-collapse {
|
|
4741
4777
|
display: flex !important;
|
|
4742
4778
|
flex-basis: auto;
|
|
@@ -4771,7 +4807,7 @@ input[type=button].btn-block {
|
|
|
4771
4807
|
border-color: rgba(26, 23, 26, 0.1);
|
|
4772
4808
|
}
|
|
4773
4809
|
.navbar-light .navbar-toggler-icon {
|
|
4774
|
-
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba
|
|
4810
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 23, 26, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
|
|
4775
4811
|
}
|
|
4776
4812
|
.navbar-light .navbar-text {
|
|
4777
4813
|
color: rgba(26, 23, 26, 0.5);
|
|
@@ -4809,7 +4845,7 @@ input[type=button].btn-block {
|
|
|
4809
4845
|
border-color: rgba(240, 240, 238, 0.1);
|
|
4810
4846
|
}
|
|
4811
4847
|
.navbar-dark .navbar-toggler-icon {
|
|
4812
|
-
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba
|
|
4848
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240, 240, 238, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
|
|
4813
4849
|
}
|
|
4814
4850
|
.navbar-dark .navbar-text {
|
|
4815
4851
|
color: rgba(240, 240, 238, 0.5);
|
|
@@ -4836,13 +4872,23 @@ input[type=button].btn-block {
|
|
|
4836
4872
|
margin-right: 0;
|
|
4837
4873
|
margin-left: 0;
|
|
4838
4874
|
}
|
|
4839
|
-
.card > .list-group
|
|
4840
|
-
border-top
|
|
4841
|
-
border-
|
|
4875
|
+
.card > .list-group {
|
|
4876
|
+
border-top: inherit;
|
|
4877
|
+
border-bottom: inherit;
|
|
4842
4878
|
}
|
|
4843
|
-
.card > .list-group:
|
|
4844
|
-
border-
|
|
4845
|
-
border-
|
|
4879
|
+
.card > .list-group:first-child {
|
|
4880
|
+
border-top-width: 0;
|
|
4881
|
+
border-top-left-radius: 3px;
|
|
4882
|
+
border-top-right-radius: 3px;
|
|
4883
|
+
}
|
|
4884
|
+
.card > .list-group:last-child {
|
|
4885
|
+
border-bottom-width: 0;
|
|
4886
|
+
border-bottom-right-radius: 3px;
|
|
4887
|
+
border-bottom-left-radius: 3px;
|
|
4888
|
+
}
|
|
4889
|
+
.card > .card-header + .list-group,
|
|
4890
|
+
.card > .list-group + .card-footer {
|
|
4891
|
+
border-top: 0;
|
|
4846
4892
|
}
|
|
4847
4893
|
|
|
4848
4894
|
.card-body {
|
|
@@ -4880,9 +4926,6 @@ input[type=button].btn-block {
|
|
|
4880
4926
|
.card-header:first-child {
|
|
4881
4927
|
border-radius: 3px 3px 0 0;
|
|
4882
4928
|
}
|
|
4883
|
-
.card-header + .list-group .list-group-item:first-child {
|
|
4884
|
-
border-top: 0;
|
|
4885
|
-
}
|
|
4886
4929
|
|
|
4887
4930
|
.card-footer {
|
|
4888
4931
|
padding: 0.75rem 1.25rem;
|
|
@@ -4912,6 +4955,7 @@ input[type=button].btn-block {
|
|
|
4912
4955
|
bottom: 0;
|
|
4913
4956
|
left: 0;
|
|
4914
4957
|
padding: 1.25rem;
|
|
4958
|
+
border-radius: 3px;
|
|
4915
4959
|
}
|
|
4916
4960
|
|
|
4917
4961
|
.card-img,
|
|
@@ -5009,6 +5053,9 @@ input[type=button].btn-block {
|
|
|
5009
5053
|
}
|
|
5010
5054
|
}
|
|
5011
5055
|
|
|
5056
|
+
.accordion {
|
|
5057
|
+
overflow-anchor: none;
|
|
5058
|
+
}
|
|
5012
5059
|
.accordion > .card {
|
|
5013
5060
|
overflow: hidden;
|
|
5014
5061
|
}
|
|
@@ -5040,7 +5087,7 @@ input[type=button].btn-block {
|
|
|
5040
5087
|
padding-left: 0.5rem;
|
|
5041
5088
|
}
|
|
5042
5089
|
.breadcrumb-item + .breadcrumb-item::before {
|
|
5043
|
-
|
|
5090
|
+
float: left;
|
|
5044
5091
|
padding-right: 0.5rem;
|
|
5045
5092
|
color: #555356;
|
|
5046
5093
|
content: "/";
|
|
@@ -5408,6 +5455,7 @@ a.badge-foreground:focus, a.badge-foreground.focus {
|
|
|
5408
5455
|
position: absolute;
|
|
5409
5456
|
top: 0;
|
|
5410
5457
|
right: 0;
|
|
5458
|
+
z-index: 2;
|
|
5411
5459
|
padding: 0.75rem 1.25rem;
|
|
5412
5460
|
color: inherit;
|
|
5413
5461
|
}
|
|
@@ -5604,6 +5652,7 @@ a.badge-foreground:focus, a.badge-foreground.focus {
|
|
|
5604
5652
|
display: flex;
|
|
5605
5653
|
height: 1rem;
|
|
5606
5654
|
overflow: hidden;
|
|
5655
|
+
line-height: 0;
|
|
5607
5656
|
font-size: 0.75rem;
|
|
5608
5657
|
background-color: #555356;
|
|
5609
5658
|
border-radius: 1rem;
|
|
@@ -5632,7 +5681,7 @@ a.badge-foreground:focus, a.badge-foreground.focus {
|
|
|
5632
5681
|
}
|
|
5633
5682
|
|
|
5634
5683
|
.progress-bar-animated {
|
|
5635
|
-
animation: progress-bar-stripes
|
|
5684
|
+
animation: 1s linear infinite progress-bar-stripes;
|
|
5636
5685
|
}
|
|
5637
5686
|
@media (prefers-reduced-motion: reduce) {
|
|
5638
5687
|
.progress-bar-animated {
|
|
@@ -5654,6 +5703,7 @@ a.badge-foreground:focus, a.badge-foreground.focus {
|
|
|
5654
5703
|
flex-direction: column;
|
|
5655
5704
|
padding-left: 0;
|
|
5656
5705
|
margin-bottom: 0;
|
|
5706
|
+
border-radius: 4px;
|
|
5657
5707
|
}
|
|
5658
5708
|
|
|
5659
5709
|
.list-group-item-action {
|
|
@@ -5680,12 +5730,12 @@ a.badge-foreground:focus, a.badge-foreground.focus {
|
|
|
5680
5730
|
border: 1px solid rgba(26, 23, 26, 0.125);
|
|
5681
5731
|
}
|
|
5682
5732
|
.list-group-item:first-child {
|
|
5683
|
-
border-top-left-radius:
|
|
5684
|
-
border-top-right-radius:
|
|
5733
|
+
border-top-left-radius: inherit;
|
|
5734
|
+
border-top-right-radius: inherit;
|
|
5685
5735
|
}
|
|
5686
5736
|
.list-group-item:last-child {
|
|
5687
|
-
border-bottom-right-radius:
|
|
5688
|
-
border-bottom-left-radius:
|
|
5737
|
+
border-bottom-right-radius: inherit;
|
|
5738
|
+
border-bottom-left-radius: inherit;
|
|
5689
5739
|
}
|
|
5690
5740
|
.list-group-item.disabled, .list-group-item:disabled {
|
|
5691
5741
|
color: #555356;
|
|
@@ -5709,22 +5759,22 @@ a.badge-foreground:focus, a.badge-foreground.focus {
|
|
|
5709
5759
|
.list-group-horizontal {
|
|
5710
5760
|
flex-direction: row;
|
|
5711
5761
|
}
|
|
5712
|
-
.list-group-horizontal .list-group-item:first-child {
|
|
5762
|
+
.list-group-horizontal > .list-group-item:first-child {
|
|
5713
5763
|
border-bottom-left-radius: 4px;
|
|
5714
5764
|
border-top-right-radius: 0;
|
|
5715
5765
|
}
|
|
5716
|
-
.list-group-horizontal .list-group-item:last-child {
|
|
5766
|
+
.list-group-horizontal > .list-group-item:last-child {
|
|
5717
5767
|
border-top-right-radius: 4px;
|
|
5718
5768
|
border-bottom-left-radius: 0;
|
|
5719
5769
|
}
|
|
5720
|
-
.list-group-horizontal .list-group-item.active {
|
|
5770
|
+
.list-group-horizontal > .list-group-item.active {
|
|
5721
5771
|
margin-top: 0;
|
|
5722
5772
|
}
|
|
5723
|
-
.list-group-horizontal .list-group-item + .list-group-item {
|
|
5773
|
+
.list-group-horizontal > .list-group-item + .list-group-item {
|
|
5724
5774
|
border-top-width: 1px;
|
|
5725
5775
|
border-left-width: 0;
|
|
5726
5776
|
}
|
|
5727
|
-
.list-group-horizontal .list-group-item + .list-group-item.active {
|
|
5777
|
+
.list-group-horizontal > .list-group-item + .list-group-item.active {
|
|
5728
5778
|
margin-left: -1px;
|
|
5729
5779
|
border-left-width: 1px;
|
|
5730
5780
|
}
|
|
@@ -5733,22 +5783,22 @@ a.badge-foreground:focus, a.badge-foreground.focus {
|
|
|
5733
5783
|
.list-group-horizontal-sm {
|
|
5734
5784
|
flex-direction: row;
|
|
5735
5785
|
}
|
|
5736
|
-
.list-group-horizontal-sm .list-group-item:first-child {
|
|
5786
|
+
.list-group-horizontal-sm > .list-group-item:first-child {
|
|
5737
5787
|
border-bottom-left-radius: 4px;
|
|
5738
5788
|
border-top-right-radius: 0;
|
|
5739
5789
|
}
|
|
5740
|
-
.list-group-horizontal-sm .list-group-item:last-child {
|
|
5790
|
+
.list-group-horizontal-sm > .list-group-item:last-child {
|
|
5741
5791
|
border-top-right-radius: 4px;
|
|
5742
5792
|
border-bottom-left-radius: 0;
|
|
5743
5793
|
}
|
|
5744
|
-
.list-group-horizontal-sm .list-group-item.active {
|
|
5794
|
+
.list-group-horizontal-sm > .list-group-item.active {
|
|
5745
5795
|
margin-top: 0;
|
|
5746
5796
|
}
|
|
5747
|
-
.list-group-horizontal-sm .list-group-item + .list-group-item {
|
|
5797
|
+
.list-group-horizontal-sm > .list-group-item + .list-group-item {
|
|
5748
5798
|
border-top-width: 1px;
|
|
5749
5799
|
border-left-width: 0;
|
|
5750
5800
|
}
|
|
5751
|
-
.list-group-horizontal-sm .list-group-item + .list-group-item.active {
|
|
5801
|
+
.list-group-horizontal-sm > .list-group-item + .list-group-item.active {
|
|
5752
5802
|
margin-left: -1px;
|
|
5753
5803
|
border-left-width: 1px;
|
|
5754
5804
|
}
|
|
@@ -5757,22 +5807,22 @@ a.badge-foreground:focus, a.badge-foreground.focus {
|
|
|
5757
5807
|
.list-group-horizontal-md {
|
|
5758
5808
|
flex-direction: row;
|
|
5759
5809
|
}
|
|
5760
|
-
.list-group-horizontal-md .list-group-item:first-child {
|
|
5810
|
+
.list-group-horizontal-md > .list-group-item:first-child {
|
|
5761
5811
|
border-bottom-left-radius: 4px;
|
|
5762
5812
|
border-top-right-radius: 0;
|
|
5763
5813
|
}
|
|
5764
|
-
.list-group-horizontal-md .list-group-item:last-child {
|
|
5814
|
+
.list-group-horizontal-md > .list-group-item:last-child {
|
|
5765
5815
|
border-top-right-radius: 4px;
|
|
5766
5816
|
border-bottom-left-radius: 0;
|
|
5767
5817
|
}
|
|
5768
|
-
.list-group-horizontal-md .list-group-item.active {
|
|
5818
|
+
.list-group-horizontal-md > .list-group-item.active {
|
|
5769
5819
|
margin-top: 0;
|
|
5770
5820
|
}
|
|
5771
|
-
.list-group-horizontal-md .list-group-item + .list-group-item {
|
|
5821
|
+
.list-group-horizontal-md > .list-group-item + .list-group-item {
|
|
5772
5822
|
border-top-width: 1px;
|
|
5773
5823
|
border-left-width: 0;
|
|
5774
5824
|
}
|
|
5775
|
-
.list-group-horizontal-md .list-group-item + .list-group-item.active {
|
|
5825
|
+
.list-group-horizontal-md > .list-group-item + .list-group-item.active {
|
|
5776
5826
|
margin-left: -1px;
|
|
5777
5827
|
border-left-width: 1px;
|
|
5778
5828
|
}
|
|
@@ -5781,22 +5831,22 @@ a.badge-foreground:focus, a.badge-foreground.focus {
|
|
|
5781
5831
|
.list-group-horizontal-lg {
|
|
5782
5832
|
flex-direction: row;
|
|
5783
5833
|
}
|
|
5784
|
-
.list-group-horizontal-lg .list-group-item:first-child {
|
|
5834
|
+
.list-group-horizontal-lg > .list-group-item:first-child {
|
|
5785
5835
|
border-bottom-left-radius: 4px;
|
|
5786
5836
|
border-top-right-radius: 0;
|
|
5787
5837
|
}
|
|
5788
|
-
.list-group-horizontal-lg .list-group-item:last-child {
|
|
5838
|
+
.list-group-horizontal-lg > .list-group-item:last-child {
|
|
5789
5839
|
border-top-right-radius: 4px;
|
|
5790
5840
|
border-bottom-left-radius: 0;
|
|
5791
5841
|
}
|
|
5792
|
-
.list-group-horizontal-lg .list-group-item.active {
|
|
5842
|
+
.list-group-horizontal-lg > .list-group-item.active {
|
|
5793
5843
|
margin-top: 0;
|
|
5794
5844
|
}
|
|
5795
|
-
.list-group-horizontal-lg .list-group-item + .list-group-item {
|
|
5845
|
+
.list-group-horizontal-lg > .list-group-item + .list-group-item {
|
|
5796
5846
|
border-top-width: 1px;
|
|
5797
5847
|
border-left-width: 0;
|
|
5798
5848
|
}
|
|
5799
|
-
.list-group-horizontal-lg .list-group-item + .list-group-item.active {
|
|
5849
|
+
.list-group-horizontal-lg > .list-group-item + .list-group-item.active {
|
|
5800
5850
|
margin-left: -1px;
|
|
5801
5851
|
border-left-width: 1px;
|
|
5802
5852
|
}
|
|
@@ -5805,35 +5855,33 @@ a.badge-foreground:focus, a.badge-foreground.focus {
|
|
|
5805
5855
|
.list-group-horizontal-xl {
|
|
5806
5856
|
flex-direction: row;
|
|
5807
5857
|
}
|
|
5808
|
-
.list-group-horizontal-xl .list-group-item:first-child {
|
|
5858
|
+
.list-group-horizontal-xl > .list-group-item:first-child {
|
|
5809
5859
|
border-bottom-left-radius: 4px;
|
|
5810
5860
|
border-top-right-radius: 0;
|
|
5811
5861
|
}
|
|
5812
|
-
.list-group-horizontal-xl .list-group-item:last-child {
|
|
5862
|
+
.list-group-horizontal-xl > .list-group-item:last-child {
|
|
5813
5863
|
border-top-right-radius: 4px;
|
|
5814
5864
|
border-bottom-left-radius: 0;
|
|
5815
5865
|
}
|
|
5816
|
-
.list-group-horizontal-xl .list-group-item.active {
|
|
5866
|
+
.list-group-horizontal-xl > .list-group-item.active {
|
|
5817
5867
|
margin-top: 0;
|
|
5818
5868
|
}
|
|
5819
|
-
.list-group-horizontal-xl .list-group-item + .list-group-item {
|
|
5869
|
+
.list-group-horizontal-xl > .list-group-item + .list-group-item {
|
|
5820
5870
|
border-top-width: 1px;
|
|
5821
5871
|
border-left-width: 0;
|
|
5822
5872
|
}
|
|
5823
|
-
.list-group-horizontal-xl .list-group-item + .list-group-item.active {
|
|
5873
|
+
.list-group-horizontal-xl > .list-group-item + .list-group-item.active {
|
|
5824
5874
|
margin-left: -1px;
|
|
5825
5875
|
border-left-width: 1px;
|
|
5826
5876
|
}
|
|
5827
5877
|
}
|
|
5828
|
-
.list-group-flush
|
|
5829
|
-
border-right-width: 0;
|
|
5830
|
-
border-left-width: 0;
|
|
5878
|
+
.list-group-flush {
|
|
5831
5879
|
border-radius: 0;
|
|
5832
5880
|
}
|
|
5833
|
-
.list-group-flush .list-group-item
|
|
5834
|
-
border-
|
|
5881
|
+
.list-group-flush > .list-group-item {
|
|
5882
|
+
border-width: 0 0 1px;
|
|
5835
5883
|
}
|
|
5836
|
-
.list-group-flush
|
|
5884
|
+
.list-group-flush > .list-group-item:last-child {
|
|
5837
5885
|
border-bottom-width: 0;
|
|
5838
5886
|
}
|
|
5839
5887
|
|
|
@@ -6068,7 +6116,6 @@ button.close {
|
|
|
6068
6116
|
padding: 0;
|
|
6069
6117
|
background-color: transparent;
|
|
6070
6118
|
border: 0;
|
|
6071
|
-
appearance: none;
|
|
6072
6119
|
}
|
|
6073
6120
|
|
|
6074
6121
|
a.close.disabled {
|
|
@@ -6076,15 +6123,14 @@ a.close.disabled {
|
|
|
6076
6123
|
}
|
|
6077
6124
|
|
|
6078
6125
|
.toast {
|
|
6126
|
+
flex-basis: 350px;
|
|
6079
6127
|
max-width: 350px;
|
|
6080
|
-
overflow: hidden;
|
|
6081
6128
|
font-size: 0.875rem;
|
|
6082
6129
|
color: #f0f0ee;
|
|
6083
6130
|
background-color: rgba(240, 240, 238, 0.85);
|
|
6084
6131
|
background-clip: padding-box;
|
|
6085
6132
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
6086
6133
|
box-shadow: 0 0.25rem 0.75rem rgba(26, 23, 26, 0.1);
|
|
6087
|
-
backdrop-filter: blur(10px);
|
|
6088
6134
|
opacity: 0;
|
|
6089
6135
|
border-radius: 0.25rem;
|
|
6090
6136
|
}
|
|
@@ -6110,6 +6156,8 @@ a.close.disabled {
|
|
|
6110
6156
|
background-color: rgba(240, 240, 238, 0.85);
|
|
6111
6157
|
background-clip: padding-box;
|
|
6112
6158
|
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
|
6159
|
+
border-top-left-radius: calc(0.25rem - 1px);
|
|
6160
|
+
border-top-right-radius: calc(0.25rem - 1px);
|
|
6113
6161
|
}
|
|
6114
6162
|
|
|
6115
6163
|
.toast-body {
|
|
@@ -6182,6 +6230,7 @@ a.close.disabled {
|
|
|
6182
6230
|
.modal-dialog-centered::before {
|
|
6183
6231
|
display: block;
|
|
6184
6232
|
height: calc(100vh - 1rem);
|
|
6233
|
+
height: min-content;
|
|
6185
6234
|
content: "";
|
|
6186
6235
|
}
|
|
6187
6236
|
.modal-dialog-centered.modal-dialog-scrollable {
|
|
@@ -6290,6 +6339,7 @@ a.close.disabled {
|
|
|
6290
6339
|
}
|
|
6291
6340
|
.modal-dialog-centered::before {
|
|
6292
6341
|
height: calc(100vh - 3.5rem);
|
|
6342
|
+
height: min-content;
|
|
6293
6343
|
}
|
|
6294
6344
|
|
|
6295
6345
|
.modal-sm {
|
|
@@ -6636,8 +6686,11 @@ a.close.disabled {
|
|
|
6636
6686
|
align-items: center;
|
|
6637
6687
|
justify-content: center;
|
|
6638
6688
|
width: 15%;
|
|
6689
|
+
padding: 0;
|
|
6639
6690
|
color: #f0f0ee;
|
|
6640
6691
|
text-align: center;
|
|
6692
|
+
background: none;
|
|
6693
|
+
border: 0;
|
|
6641
6694
|
opacity: 0.5;
|
|
6642
6695
|
transition: opacity 0.15s ease;
|
|
6643
6696
|
}
|
|
@@ -6669,7 +6722,7 @@ a.close.disabled {
|
|
|
6669
6722
|
display: inline-block;
|
|
6670
6723
|
width: 20px;
|
|
6671
6724
|
height: 20px;
|
|
6672
|
-
background:
|
|
6725
|
+
background: 50%/100% 100% no-repeat;
|
|
6673
6726
|
}
|
|
6674
6727
|
|
|
6675
6728
|
.carousel-control-prev-icon {
|
|
@@ -6739,11 +6792,11 @@ a.close.disabled {
|
|
|
6739
6792
|
display: inline-block;
|
|
6740
6793
|
width: 2rem;
|
|
6741
6794
|
height: 2rem;
|
|
6742
|
-
vertical-align:
|
|
6795
|
+
vertical-align: -0.125em;
|
|
6743
6796
|
border: 0.25em solid currentColor;
|
|
6744
6797
|
border-right-color: transparent;
|
|
6745
6798
|
border-radius: 50%;
|
|
6746
|
-
animation:
|
|
6799
|
+
animation: 0.75s linear infinite spinner-border;
|
|
6747
6800
|
}
|
|
6748
6801
|
|
|
6749
6802
|
.spinner-border-sm {
|
|
@@ -6758,17 +6811,18 @@ a.close.disabled {
|
|
|
6758
6811
|
}
|
|
6759
6812
|
50% {
|
|
6760
6813
|
opacity: 1;
|
|
6814
|
+
transform: none;
|
|
6761
6815
|
}
|
|
6762
6816
|
}
|
|
6763
6817
|
.spinner-grow {
|
|
6764
6818
|
display: inline-block;
|
|
6765
6819
|
width: 2rem;
|
|
6766
6820
|
height: 2rem;
|
|
6767
|
-
vertical-align:
|
|
6821
|
+
vertical-align: -0.125em;
|
|
6768
6822
|
background-color: currentColor;
|
|
6769
6823
|
border-radius: 50%;
|
|
6770
6824
|
opacity: 0;
|
|
6771
|
-
animation:
|
|
6825
|
+
animation: 0.75s linear infinite spinner-grow;
|
|
6772
6826
|
}
|
|
6773
6827
|
|
|
6774
6828
|
.spinner-grow-sm {
|
|
@@ -6776,6 +6830,12 @@ a.close.disabled {
|
|
|
6776
6830
|
height: 1rem;
|
|
6777
6831
|
}
|
|
6778
6832
|
|
|
6833
|
+
@media (prefers-reduced-motion: reduce) {
|
|
6834
|
+
.spinner-border,
|
|
6835
|
+
.spinner-grow {
|
|
6836
|
+
animation-duration: 1.5s;
|
|
6837
|
+
}
|
|
6838
|
+
}
|
|
6779
6839
|
.align-baseline {
|
|
6780
6840
|
vertical-align: baseline !important;
|
|
6781
6841
|
}
|
|
@@ -7359,7 +7419,7 @@ button.bg-foreground:focus {
|
|
|
7359
7419
|
}
|
|
7360
7420
|
|
|
7361
7421
|
.embed-responsive-21by9::before {
|
|
7362
|
-
padding-top: 42.
|
|
7422
|
+
padding-top: 42.85714286%;
|
|
7363
7423
|
}
|
|
7364
7424
|
|
|
7365
7425
|
.embed-responsive-16by9::before {
|
|
@@ -7375,7 +7435,7 @@ button.bg-foreground:focus {
|
|
|
7375
7435
|
}
|
|
7376
7436
|
|
|
7377
7437
|
.embed-responsive-21by9::before {
|
|
7378
|
-
padding-top: 42.
|
|
7438
|
+
padding-top: 42.85714286%;
|
|
7379
7439
|
}
|
|
7380
7440
|
|
|
7381
7441
|
.embed-responsive-16by9::before {
|
|
@@ -8138,6 +8198,18 @@ button.bg-foreground:focus {
|
|
|
8138
8198
|
float: none !important;
|
|
8139
8199
|
}
|
|
8140
8200
|
}
|
|
8201
|
+
.user-select-all {
|
|
8202
|
+
user-select: all !important;
|
|
8203
|
+
}
|
|
8204
|
+
|
|
8205
|
+
.user-select-auto {
|
|
8206
|
+
user-select: auto !important;
|
|
8207
|
+
}
|
|
8208
|
+
|
|
8209
|
+
.user-select-none {
|
|
8210
|
+
user-select: none !important;
|
|
8211
|
+
}
|
|
8212
|
+
|
|
8141
8213
|
.overflow-auto {
|
|
8142
8214
|
overflow: auto !important;
|
|
8143
8215
|
}
|
|
@@ -8291,18 +8363,6 @@ button.bg-foreground:focus {
|
|
|
8291
8363
|
height: 100vh !important;
|
|
8292
8364
|
}
|
|
8293
8365
|
|
|
8294
|
-
.stretched-link::after {
|
|
8295
|
-
position: absolute;
|
|
8296
|
-
top: 0;
|
|
8297
|
-
right: 0;
|
|
8298
|
-
bottom: 0;
|
|
8299
|
-
left: 0;
|
|
8300
|
-
z-index: 1;
|
|
8301
|
-
pointer-events: auto;
|
|
8302
|
-
content: "";
|
|
8303
|
-
background-color: rgba(0, 0, 0, 0);
|
|
8304
|
-
}
|
|
8305
|
-
|
|
8306
8366
|
.m-0 {
|
|
8307
8367
|
margin: 0 !important;
|
|
8308
8368
|
}
|
|
@@ -10467,6 +10527,18 @@ button.bg-foreground:focus {
|
|
|
10467
10527
|
margin-left: auto !important;
|
|
10468
10528
|
}
|
|
10469
10529
|
}
|
|
10530
|
+
.stretched-link::after {
|
|
10531
|
+
position: absolute;
|
|
10532
|
+
top: 0;
|
|
10533
|
+
right: 0;
|
|
10534
|
+
bottom: 0;
|
|
10535
|
+
left: 0;
|
|
10536
|
+
z-index: 1;
|
|
10537
|
+
pointer-events: auto;
|
|
10538
|
+
content: "";
|
|
10539
|
+
background-color: rgba(0, 0, 0, 0);
|
|
10540
|
+
}
|
|
10541
|
+
|
|
10470
10542
|
.text-monospace {
|
|
10471
10543
|
font-family: "Fira Mono", menlo, monaco, consolas, "Liberation Mono", "Courier New", monospace !important;
|
|
10472
10544
|
}
|
|
@@ -10743,7 +10815,7 @@ a.text-foreground:hover, a.text-foreground:focus {
|
|
|
10743
10815
|
|
|
10744
10816
|
.text-break {
|
|
10745
10817
|
word-break: break-word !important;
|
|
10746
|
-
|
|
10818
|
+
word-wrap: break-word !important;
|
|
10747
10819
|
}
|
|
10748
10820
|
|
|
10749
10821
|
.text-reset {
|