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