hoodcms 5.0.5 → 5.0.9
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/css/admin.css +1 -1
- package/dist/css/app.css +1 -1
- package/dist/css/button.css +1 -1
- package/dist/css/editor.css +1 -1
- package/dist/css/install.css +1 -1
- package/dist/css/login.css +1 -1
- package/dist/js/admin.js +8 -6
- package/dist/js/app.js +7 -6
- package/dist/js/core/Alerts.d.ts +22 -0
- package/dist/js/core/Alerts.js +151 -0
- package/dist/js/core/BaseSite.d.ts +6 -0
- package/dist/js/core/BaseSite.js +14 -0
- package/dist/js/core/ColorPicker.d.ts +5 -0
- package/dist/js/core/ColorPicker.js +71 -0
- package/dist/js/core/DataList.d.ts +35 -0
- package/dist/js/core/DataList.js +56 -0
- package/dist/js/core/Editors.d.ts +16 -0
- package/dist/js/core/Editors.js +137 -0
- package/dist/js/core/Handlers.d.ts +47 -0
- package/dist/js/core/Handlers.js +160 -0
- package/dist/js/core/HoodApi.d.ts +25 -0
- package/dist/js/core/HoodApi.js +22 -0
- package/dist/js/core/Inline.d.ts +27 -0
- package/dist/js/core/Inline.js +63 -0
- package/dist/js/core/Loader.d.ts +5 -0
- package/dist/js/core/Loader.js +13 -0
- package/dist/js/core/Media.d.ts +113 -0
- package/dist/js/core/Media.js +363 -0
- package/dist/js/core/Modal.d.ts +35 -0
- package/dist/js/core/Modal.js +69 -0
- package/dist/js/core/RandomStringGenerator.d.ts +11 -0
- package/dist/js/core/RandomStringGenerator.js +23 -0
- package/dist/js/core/Response.d.ts +20 -0
- package/dist/js/core/Response.js +13 -0
- package/dist/js/core/Uploader.d.ts +7 -0
- package/dist/js/core/Uploader.js +134 -0
- package/dist/js/core/Validator.d.ts +27 -0
- package/dist/js/core/Validator.js +80 -0
- package/dist/js/extensions/jqueryExtensions.d.ts +11 -0
- package/dist/js/extensions/jqueryExtensions.js +99 -0
- package/dist/js/extensions/numberExtensions.d.ts +8 -0
- package/dist/js/extensions/numberExtensions.js +19 -0
- package/dist/js/extensions/stringExtensions.d.ts +12 -0
- package/dist/js/extensions/stringExtensions.js +49 -0
- package/dist/js/index.d.ts +22 -0
- package/dist/js/index.js +22 -0
- package/dist/js/interfaces/KeyValue.d.ts +4 -0
- package/dist/js/interfaces/KeyValue.js +1 -0
- package/dist/js/login.js +4 -3
- package/dist/js/models/Content.d.ts +50 -0
- package/dist/js/models/Content.js +1 -0
- package/dist/js/models/Property.d.ts +9 -0
- package/dist/js/models/Property.js +2 -0
- package/dist/js/models/Users.d.ts +7 -0
- package/dist/js/models/Users.js +2 -0
- package/package.json +59 -55
- package/src/css/admin.css +580 -187
- package/src/css/admin.css.map +1 -1
- package/src/css/app.css +576 -183
- package/src/css/app.css.map +1 -1
- package/src/css/button.css +0 -3
- package/src/css/button.css.map +1 -1
- package/src/css/editor.css +576 -183
- package/src/css/editor.css.map +1 -1
- package/src/css/install.css +576 -183
- package/src/css/install.css.map +1 -1
- package/src/css/login.css +576 -183
- package/src/css/login.css.map +1 -1
- package/src/js/admin.js +717 -699
- package/src/js/admin.js.map +1 -1
- package/src/js/app.js +395 -351
- package/src/js/app.js.map +1 -1
- package/src/js/login.js +8 -7
- package/src/js/login.js.map +1 -1
- package/src/scss/admin/layout/content/footer.scss +3 -4
- package/src/scss/admin/layout/content/title.scss +3 -6
- package/src/scss/admin/layout/content.scss +3 -5
- package/src/scss/admin/media.scss +13 -22
- package/src/scss/admin.scss +2 -6
- package/src/scss/app.scss +2 -2
- package/src/scss/button.scss +1 -14
- package/src/scss/editor.scss +2 -3
- package/src/scss/install.scss +1 -1
- package/src/scss/login.scss +2 -16
- package/src/ts/admin.ts +7 -8
- package/src/ts/app.ts +0 -2
- package/src/ts/core/BaseSite.ts +21 -0
- package/src/ts/core/ColorPicker.ts +5 -1
- package/src/ts/core/Editors.ts +6 -7
- package/src/ts/core/HoodApi.ts +5 -0
- package/src/ts/core/Media.ts +4 -0
- package/src/ts/index.ts +25 -0
- package/src/ts/hood.ts +0 -5
package/src/css/editor.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/*!
|
|
3
|
-
* Bootstrap v5.
|
|
3
|
+
* Bootstrap v5.1.3 (https://getbootstrap.com/)
|
|
4
4
|
* Copyright 2011-2021 The Bootstrap Authors
|
|
5
5
|
* Copyright 2011-2021 Twitter, Inc.
|
|
6
6
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
@@ -19,6 +19,15 @@
|
|
|
19
19
|
--bs-white: #fff;
|
|
20
20
|
--bs-gray: #6c757d;
|
|
21
21
|
--bs-gray-dark: #343a40;
|
|
22
|
+
--bs-gray-100: #f8f9fa;
|
|
23
|
+
--bs-gray-200: #e9ecef;
|
|
24
|
+
--bs-gray-300: #dee2e6;
|
|
25
|
+
--bs-gray-400: #ced4da;
|
|
26
|
+
--bs-gray-500: #adb5bd;
|
|
27
|
+
--bs-gray-600: #6c757d;
|
|
28
|
+
--bs-gray-700: #495057;
|
|
29
|
+
--bs-gray-800: #343a40;
|
|
30
|
+
--bs-gray-900: #212529;
|
|
22
31
|
--bs-primary: #0d6efd;
|
|
23
32
|
--bs-secondary: #6c757d;
|
|
24
33
|
--bs-success: #198754;
|
|
@@ -27,9 +36,27 @@
|
|
|
27
36
|
--bs-danger: #dc3545;
|
|
28
37
|
--bs-light: #f8f9fa;
|
|
29
38
|
--bs-dark: #212529;
|
|
39
|
+
--bs-primary-rgb: 13, 110, 253;
|
|
40
|
+
--bs-secondary-rgb: 108, 117, 125;
|
|
41
|
+
--bs-success-rgb: 25, 135, 84;
|
|
42
|
+
--bs-info-rgb: 13, 202, 240;
|
|
43
|
+
--bs-warning-rgb: 255, 193, 7;
|
|
44
|
+
--bs-danger-rgb: 220, 53, 69;
|
|
45
|
+
--bs-light-rgb: 248, 249, 250;
|
|
46
|
+
--bs-dark-rgb: 33, 37, 41;
|
|
47
|
+
--bs-white-rgb: 255, 255, 255;
|
|
48
|
+
--bs-black-rgb: 0, 0, 0;
|
|
49
|
+
--bs-body-color-rgb: 33, 37, 41;
|
|
50
|
+
--bs-body-bg-rgb: 255, 255, 255;
|
|
30
51
|
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
31
52
|
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
32
53
|
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
|
54
|
+
--bs-body-font-family: var(--bs-font-sans-serif);
|
|
55
|
+
--bs-body-font-size: 1rem;
|
|
56
|
+
--bs-body-font-weight: 400;
|
|
57
|
+
--bs-body-line-height: 1.5;
|
|
58
|
+
--bs-body-color: #212529;
|
|
59
|
+
--bs-body-bg: #fff;
|
|
33
60
|
}
|
|
34
61
|
|
|
35
62
|
*,
|
|
@@ -46,12 +73,13 @@
|
|
|
46
73
|
|
|
47
74
|
body {
|
|
48
75
|
margin: 0;
|
|
49
|
-
font-family: var(--bs-font-
|
|
50
|
-
font-size:
|
|
51
|
-
font-weight:
|
|
52
|
-
line-height:
|
|
53
|
-
color:
|
|
54
|
-
|
|
76
|
+
font-family: var(--bs-body-font-family);
|
|
77
|
+
font-size: var(--bs-body-font-size);
|
|
78
|
+
font-weight: var(--bs-body-font-weight);
|
|
79
|
+
line-height: var(--bs-body-line-height);
|
|
80
|
+
color: var(--bs-body-color);
|
|
81
|
+
text-align: var(--bs-body-text-align);
|
|
82
|
+
background-color: var(--bs-body-bg);
|
|
55
83
|
-webkit-text-size-adjust: 100%;
|
|
56
84
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
57
85
|
}
|
|
@@ -631,16 +659,16 @@ progress {
|
|
|
631
659
|
--bs-gutter-y: 0;
|
|
632
660
|
display: flex;
|
|
633
661
|
flex-wrap: wrap;
|
|
634
|
-
margin-top: calc(var(--bs-gutter-y)
|
|
635
|
-
margin-right: calc(var(--bs-gutter-x)
|
|
636
|
-
margin-left: calc(var(--bs-gutter-x)
|
|
662
|
+
margin-top: calc(-1 * var(--bs-gutter-y));
|
|
663
|
+
margin-right: calc(-.5 * var(--bs-gutter-x));
|
|
664
|
+
margin-left: calc(-.5 * var(--bs-gutter-x));
|
|
637
665
|
}
|
|
638
666
|
.row > * {
|
|
639
667
|
flex-shrink: 0;
|
|
640
668
|
width: 100%;
|
|
641
669
|
max-width: 100%;
|
|
642
|
-
padding-right: calc(var(--bs-gutter-x)
|
|
643
|
-
padding-left: calc(var(--bs-gutter-x)
|
|
670
|
+
padding-right: calc(var(--bs-gutter-x) * .5);
|
|
671
|
+
padding-left: calc(var(--bs-gutter-x) * .5);
|
|
644
672
|
margin-top: var(--bs-gutter-y);
|
|
645
673
|
}
|
|
646
674
|
|
|
@@ -690,12 +718,12 @@ progress {
|
|
|
690
718
|
|
|
691
719
|
.col-1 {
|
|
692
720
|
flex: 0 0 auto;
|
|
693
|
-
width: 8.
|
|
721
|
+
width: 8.33333333%;
|
|
694
722
|
}
|
|
695
723
|
|
|
696
724
|
.col-2 {
|
|
697
725
|
flex: 0 0 auto;
|
|
698
|
-
width: 16.
|
|
726
|
+
width: 16.66666667%;
|
|
699
727
|
}
|
|
700
728
|
|
|
701
729
|
.col-3 {
|
|
@@ -705,12 +733,12 @@ progress {
|
|
|
705
733
|
|
|
706
734
|
.col-4 {
|
|
707
735
|
flex: 0 0 auto;
|
|
708
|
-
width: 33.
|
|
736
|
+
width: 33.33333333%;
|
|
709
737
|
}
|
|
710
738
|
|
|
711
739
|
.col-5 {
|
|
712
740
|
flex: 0 0 auto;
|
|
713
|
-
width: 41.
|
|
741
|
+
width: 41.66666667%;
|
|
714
742
|
}
|
|
715
743
|
|
|
716
744
|
.col-6 {
|
|
@@ -720,12 +748,12 @@ progress {
|
|
|
720
748
|
|
|
721
749
|
.col-7 {
|
|
722
750
|
flex: 0 0 auto;
|
|
723
|
-
width: 58.
|
|
751
|
+
width: 58.33333333%;
|
|
724
752
|
}
|
|
725
753
|
|
|
726
754
|
.col-8 {
|
|
727
755
|
flex: 0 0 auto;
|
|
728
|
-
width: 66.
|
|
756
|
+
width: 66.66666667%;
|
|
729
757
|
}
|
|
730
758
|
|
|
731
759
|
.col-9 {
|
|
@@ -735,12 +763,12 @@ progress {
|
|
|
735
763
|
|
|
736
764
|
.col-10 {
|
|
737
765
|
flex: 0 0 auto;
|
|
738
|
-
width: 83.
|
|
766
|
+
width: 83.33333333%;
|
|
739
767
|
}
|
|
740
768
|
|
|
741
769
|
.col-11 {
|
|
742
770
|
flex: 0 0 auto;
|
|
743
|
-
width: 91.
|
|
771
|
+
width: 91.66666667%;
|
|
744
772
|
}
|
|
745
773
|
|
|
746
774
|
.col-12 {
|
|
@@ -749,11 +777,11 @@ progress {
|
|
|
749
777
|
}
|
|
750
778
|
|
|
751
779
|
.offset-1 {
|
|
752
|
-
margin-left: 8.
|
|
780
|
+
margin-left: 8.33333333%;
|
|
753
781
|
}
|
|
754
782
|
|
|
755
783
|
.offset-2 {
|
|
756
|
-
margin-left: 16.
|
|
784
|
+
margin-left: 16.66666667%;
|
|
757
785
|
}
|
|
758
786
|
|
|
759
787
|
.offset-3 {
|
|
@@ -761,11 +789,11 @@ progress {
|
|
|
761
789
|
}
|
|
762
790
|
|
|
763
791
|
.offset-4 {
|
|
764
|
-
margin-left: 33.
|
|
792
|
+
margin-left: 33.33333333%;
|
|
765
793
|
}
|
|
766
794
|
|
|
767
795
|
.offset-5 {
|
|
768
|
-
margin-left: 41.
|
|
796
|
+
margin-left: 41.66666667%;
|
|
769
797
|
}
|
|
770
798
|
|
|
771
799
|
.offset-6 {
|
|
@@ -773,11 +801,11 @@ progress {
|
|
|
773
801
|
}
|
|
774
802
|
|
|
775
803
|
.offset-7 {
|
|
776
|
-
margin-left: 58.
|
|
804
|
+
margin-left: 58.33333333%;
|
|
777
805
|
}
|
|
778
806
|
|
|
779
807
|
.offset-8 {
|
|
780
|
-
margin-left: 66.
|
|
808
|
+
margin-left: 66.66666667%;
|
|
781
809
|
}
|
|
782
810
|
|
|
783
811
|
.offset-9 {
|
|
@@ -785,11 +813,11 @@ progress {
|
|
|
785
813
|
}
|
|
786
814
|
|
|
787
815
|
.offset-10 {
|
|
788
|
-
margin-left: 83.
|
|
816
|
+
margin-left: 83.33333333%;
|
|
789
817
|
}
|
|
790
818
|
|
|
791
819
|
.offset-11 {
|
|
792
|
-
margin-left: 91.
|
|
820
|
+
margin-left: 91.66666667%;
|
|
793
821
|
}
|
|
794
822
|
|
|
795
823
|
.g-0,
|
|
@@ -899,12 +927,12 @@ progress {
|
|
|
899
927
|
|
|
900
928
|
.col-sm-1 {
|
|
901
929
|
flex: 0 0 auto;
|
|
902
|
-
width: 8.
|
|
930
|
+
width: 8.33333333%;
|
|
903
931
|
}
|
|
904
932
|
|
|
905
933
|
.col-sm-2 {
|
|
906
934
|
flex: 0 0 auto;
|
|
907
|
-
width: 16.
|
|
935
|
+
width: 16.66666667%;
|
|
908
936
|
}
|
|
909
937
|
|
|
910
938
|
.col-sm-3 {
|
|
@@ -914,12 +942,12 @@ progress {
|
|
|
914
942
|
|
|
915
943
|
.col-sm-4 {
|
|
916
944
|
flex: 0 0 auto;
|
|
917
|
-
width: 33.
|
|
945
|
+
width: 33.33333333%;
|
|
918
946
|
}
|
|
919
947
|
|
|
920
948
|
.col-sm-5 {
|
|
921
949
|
flex: 0 0 auto;
|
|
922
|
-
width: 41.
|
|
950
|
+
width: 41.66666667%;
|
|
923
951
|
}
|
|
924
952
|
|
|
925
953
|
.col-sm-6 {
|
|
@@ -929,12 +957,12 @@ progress {
|
|
|
929
957
|
|
|
930
958
|
.col-sm-7 {
|
|
931
959
|
flex: 0 0 auto;
|
|
932
|
-
width: 58.
|
|
960
|
+
width: 58.33333333%;
|
|
933
961
|
}
|
|
934
962
|
|
|
935
963
|
.col-sm-8 {
|
|
936
964
|
flex: 0 0 auto;
|
|
937
|
-
width: 66.
|
|
965
|
+
width: 66.66666667%;
|
|
938
966
|
}
|
|
939
967
|
|
|
940
968
|
.col-sm-9 {
|
|
@@ -944,12 +972,12 @@ progress {
|
|
|
944
972
|
|
|
945
973
|
.col-sm-10 {
|
|
946
974
|
flex: 0 0 auto;
|
|
947
|
-
width: 83.
|
|
975
|
+
width: 83.33333333%;
|
|
948
976
|
}
|
|
949
977
|
|
|
950
978
|
.col-sm-11 {
|
|
951
979
|
flex: 0 0 auto;
|
|
952
|
-
width: 91.
|
|
980
|
+
width: 91.66666667%;
|
|
953
981
|
}
|
|
954
982
|
|
|
955
983
|
.col-sm-12 {
|
|
@@ -962,11 +990,11 @@ progress {
|
|
|
962
990
|
}
|
|
963
991
|
|
|
964
992
|
.offset-sm-1 {
|
|
965
|
-
margin-left: 8.
|
|
993
|
+
margin-left: 8.33333333%;
|
|
966
994
|
}
|
|
967
995
|
|
|
968
996
|
.offset-sm-2 {
|
|
969
|
-
margin-left: 16.
|
|
997
|
+
margin-left: 16.66666667%;
|
|
970
998
|
}
|
|
971
999
|
|
|
972
1000
|
.offset-sm-3 {
|
|
@@ -974,11 +1002,11 @@ progress {
|
|
|
974
1002
|
}
|
|
975
1003
|
|
|
976
1004
|
.offset-sm-4 {
|
|
977
|
-
margin-left: 33.
|
|
1005
|
+
margin-left: 33.33333333%;
|
|
978
1006
|
}
|
|
979
1007
|
|
|
980
1008
|
.offset-sm-5 {
|
|
981
|
-
margin-left: 41.
|
|
1009
|
+
margin-left: 41.66666667%;
|
|
982
1010
|
}
|
|
983
1011
|
|
|
984
1012
|
.offset-sm-6 {
|
|
@@ -986,11 +1014,11 @@ progress {
|
|
|
986
1014
|
}
|
|
987
1015
|
|
|
988
1016
|
.offset-sm-7 {
|
|
989
|
-
margin-left: 58.
|
|
1017
|
+
margin-left: 58.33333333%;
|
|
990
1018
|
}
|
|
991
1019
|
|
|
992
1020
|
.offset-sm-8 {
|
|
993
|
-
margin-left: 66.
|
|
1021
|
+
margin-left: 66.66666667%;
|
|
994
1022
|
}
|
|
995
1023
|
|
|
996
1024
|
.offset-sm-9 {
|
|
@@ -998,11 +1026,11 @@ progress {
|
|
|
998
1026
|
}
|
|
999
1027
|
|
|
1000
1028
|
.offset-sm-10 {
|
|
1001
|
-
margin-left: 83.
|
|
1029
|
+
margin-left: 83.33333333%;
|
|
1002
1030
|
}
|
|
1003
1031
|
|
|
1004
1032
|
.offset-sm-11 {
|
|
1005
|
-
margin-left: 91.
|
|
1033
|
+
margin-left: 91.66666667%;
|
|
1006
1034
|
}
|
|
1007
1035
|
|
|
1008
1036
|
.g-sm-0,
|
|
@@ -1112,12 +1140,12 @@ progress {
|
|
|
1112
1140
|
|
|
1113
1141
|
.col-md-1 {
|
|
1114
1142
|
flex: 0 0 auto;
|
|
1115
|
-
width: 8.
|
|
1143
|
+
width: 8.33333333%;
|
|
1116
1144
|
}
|
|
1117
1145
|
|
|
1118
1146
|
.col-md-2 {
|
|
1119
1147
|
flex: 0 0 auto;
|
|
1120
|
-
width: 16.
|
|
1148
|
+
width: 16.66666667%;
|
|
1121
1149
|
}
|
|
1122
1150
|
|
|
1123
1151
|
.col-md-3 {
|
|
@@ -1127,12 +1155,12 @@ progress {
|
|
|
1127
1155
|
|
|
1128
1156
|
.col-md-4 {
|
|
1129
1157
|
flex: 0 0 auto;
|
|
1130
|
-
width: 33.
|
|
1158
|
+
width: 33.33333333%;
|
|
1131
1159
|
}
|
|
1132
1160
|
|
|
1133
1161
|
.col-md-5 {
|
|
1134
1162
|
flex: 0 0 auto;
|
|
1135
|
-
width: 41.
|
|
1163
|
+
width: 41.66666667%;
|
|
1136
1164
|
}
|
|
1137
1165
|
|
|
1138
1166
|
.col-md-6 {
|
|
@@ -1142,12 +1170,12 @@ progress {
|
|
|
1142
1170
|
|
|
1143
1171
|
.col-md-7 {
|
|
1144
1172
|
flex: 0 0 auto;
|
|
1145
|
-
width: 58.
|
|
1173
|
+
width: 58.33333333%;
|
|
1146
1174
|
}
|
|
1147
1175
|
|
|
1148
1176
|
.col-md-8 {
|
|
1149
1177
|
flex: 0 0 auto;
|
|
1150
|
-
width: 66.
|
|
1178
|
+
width: 66.66666667%;
|
|
1151
1179
|
}
|
|
1152
1180
|
|
|
1153
1181
|
.col-md-9 {
|
|
@@ -1157,12 +1185,12 @@ progress {
|
|
|
1157
1185
|
|
|
1158
1186
|
.col-md-10 {
|
|
1159
1187
|
flex: 0 0 auto;
|
|
1160
|
-
width: 83.
|
|
1188
|
+
width: 83.33333333%;
|
|
1161
1189
|
}
|
|
1162
1190
|
|
|
1163
1191
|
.col-md-11 {
|
|
1164
1192
|
flex: 0 0 auto;
|
|
1165
|
-
width: 91.
|
|
1193
|
+
width: 91.66666667%;
|
|
1166
1194
|
}
|
|
1167
1195
|
|
|
1168
1196
|
.col-md-12 {
|
|
@@ -1175,11 +1203,11 @@ progress {
|
|
|
1175
1203
|
}
|
|
1176
1204
|
|
|
1177
1205
|
.offset-md-1 {
|
|
1178
|
-
margin-left: 8.
|
|
1206
|
+
margin-left: 8.33333333%;
|
|
1179
1207
|
}
|
|
1180
1208
|
|
|
1181
1209
|
.offset-md-2 {
|
|
1182
|
-
margin-left: 16.
|
|
1210
|
+
margin-left: 16.66666667%;
|
|
1183
1211
|
}
|
|
1184
1212
|
|
|
1185
1213
|
.offset-md-3 {
|
|
@@ -1187,11 +1215,11 @@ progress {
|
|
|
1187
1215
|
}
|
|
1188
1216
|
|
|
1189
1217
|
.offset-md-4 {
|
|
1190
|
-
margin-left: 33.
|
|
1218
|
+
margin-left: 33.33333333%;
|
|
1191
1219
|
}
|
|
1192
1220
|
|
|
1193
1221
|
.offset-md-5 {
|
|
1194
|
-
margin-left: 41.
|
|
1222
|
+
margin-left: 41.66666667%;
|
|
1195
1223
|
}
|
|
1196
1224
|
|
|
1197
1225
|
.offset-md-6 {
|
|
@@ -1199,11 +1227,11 @@ progress {
|
|
|
1199
1227
|
}
|
|
1200
1228
|
|
|
1201
1229
|
.offset-md-7 {
|
|
1202
|
-
margin-left: 58.
|
|
1230
|
+
margin-left: 58.33333333%;
|
|
1203
1231
|
}
|
|
1204
1232
|
|
|
1205
1233
|
.offset-md-8 {
|
|
1206
|
-
margin-left: 66.
|
|
1234
|
+
margin-left: 66.66666667%;
|
|
1207
1235
|
}
|
|
1208
1236
|
|
|
1209
1237
|
.offset-md-9 {
|
|
@@ -1211,11 +1239,11 @@ progress {
|
|
|
1211
1239
|
}
|
|
1212
1240
|
|
|
1213
1241
|
.offset-md-10 {
|
|
1214
|
-
margin-left: 83.
|
|
1242
|
+
margin-left: 83.33333333%;
|
|
1215
1243
|
}
|
|
1216
1244
|
|
|
1217
1245
|
.offset-md-11 {
|
|
1218
|
-
margin-left: 91.
|
|
1246
|
+
margin-left: 91.66666667%;
|
|
1219
1247
|
}
|
|
1220
1248
|
|
|
1221
1249
|
.g-md-0,
|
|
@@ -1325,12 +1353,12 @@ progress {
|
|
|
1325
1353
|
|
|
1326
1354
|
.col-lg-1 {
|
|
1327
1355
|
flex: 0 0 auto;
|
|
1328
|
-
width: 8.
|
|
1356
|
+
width: 8.33333333%;
|
|
1329
1357
|
}
|
|
1330
1358
|
|
|
1331
1359
|
.col-lg-2 {
|
|
1332
1360
|
flex: 0 0 auto;
|
|
1333
|
-
width: 16.
|
|
1361
|
+
width: 16.66666667%;
|
|
1334
1362
|
}
|
|
1335
1363
|
|
|
1336
1364
|
.col-lg-3 {
|
|
@@ -1340,12 +1368,12 @@ progress {
|
|
|
1340
1368
|
|
|
1341
1369
|
.col-lg-4 {
|
|
1342
1370
|
flex: 0 0 auto;
|
|
1343
|
-
width: 33.
|
|
1371
|
+
width: 33.33333333%;
|
|
1344
1372
|
}
|
|
1345
1373
|
|
|
1346
1374
|
.col-lg-5 {
|
|
1347
1375
|
flex: 0 0 auto;
|
|
1348
|
-
width: 41.
|
|
1376
|
+
width: 41.66666667%;
|
|
1349
1377
|
}
|
|
1350
1378
|
|
|
1351
1379
|
.col-lg-6 {
|
|
@@ -1355,12 +1383,12 @@ progress {
|
|
|
1355
1383
|
|
|
1356
1384
|
.col-lg-7 {
|
|
1357
1385
|
flex: 0 0 auto;
|
|
1358
|
-
width: 58.
|
|
1386
|
+
width: 58.33333333%;
|
|
1359
1387
|
}
|
|
1360
1388
|
|
|
1361
1389
|
.col-lg-8 {
|
|
1362
1390
|
flex: 0 0 auto;
|
|
1363
|
-
width: 66.
|
|
1391
|
+
width: 66.66666667%;
|
|
1364
1392
|
}
|
|
1365
1393
|
|
|
1366
1394
|
.col-lg-9 {
|
|
@@ -1370,12 +1398,12 @@ progress {
|
|
|
1370
1398
|
|
|
1371
1399
|
.col-lg-10 {
|
|
1372
1400
|
flex: 0 0 auto;
|
|
1373
|
-
width: 83.
|
|
1401
|
+
width: 83.33333333%;
|
|
1374
1402
|
}
|
|
1375
1403
|
|
|
1376
1404
|
.col-lg-11 {
|
|
1377
1405
|
flex: 0 0 auto;
|
|
1378
|
-
width: 91.
|
|
1406
|
+
width: 91.66666667%;
|
|
1379
1407
|
}
|
|
1380
1408
|
|
|
1381
1409
|
.col-lg-12 {
|
|
@@ -1388,11 +1416,11 @@ progress {
|
|
|
1388
1416
|
}
|
|
1389
1417
|
|
|
1390
1418
|
.offset-lg-1 {
|
|
1391
|
-
margin-left: 8.
|
|
1419
|
+
margin-left: 8.33333333%;
|
|
1392
1420
|
}
|
|
1393
1421
|
|
|
1394
1422
|
.offset-lg-2 {
|
|
1395
|
-
margin-left: 16.
|
|
1423
|
+
margin-left: 16.66666667%;
|
|
1396
1424
|
}
|
|
1397
1425
|
|
|
1398
1426
|
.offset-lg-3 {
|
|
@@ -1400,11 +1428,11 @@ progress {
|
|
|
1400
1428
|
}
|
|
1401
1429
|
|
|
1402
1430
|
.offset-lg-4 {
|
|
1403
|
-
margin-left: 33.
|
|
1431
|
+
margin-left: 33.33333333%;
|
|
1404
1432
|
}
|
|
1405
1433
|
|
|
1406
1434
|
.offset-lg-5 {
|
|
1407
|
-
margin-left: 41.
|
|
1435
|
+
margin-left: 41.66666667%;
|
|
1408
1436
|
}
|
|
1409
1437
|
|
|
1410
1438
|
.offset-lg-6 {
|
|
@@ -1412,11 +1440,11 @@ progress {
|
|
|
1412
1440
|
}
|
|
1413
1441
|
|
|
1414
1442
|
.offset-lg-7 {
|
|
1415
|
-
margin-left: 58.
|
|
1443
|
+
margin-left: 58.33333333%;
|
|
1416
1444
|
}
|
|
1417
1445
|
|
|
1418
1446
|
.offset-lg-8 {
|
|
1419
|
-
margin-left: 66.
|
|
1447
|
+
margin-left: 66.66666667%;
|
|
1420
1448
|
}
|
|
1421
1449
|
|
|
1422
1450
|
.offset-lg-9 {
|
|
@@ -1424,11 +1452,11 @@ progress {
|
|
|
1424
1452
|
}
|
|
1425
1453
|
|
|
1426
1454
|
.offset-lg-10 {
|
|
1427
|
-
margin-left: 83.
|
|
1455
|
+
margin-left: 83.33333333%;
|
|
1428
1456
|
}
|
|
1429
1457
|
|
|
1430
1458
|
.offset-lg-11 {
|
|
1431
|
-
margin-left: 91.
|
|
1459
|
+
margin-left: 91.66666667%;
|
|
1432
1460
|
}
|
|
1433
1461
|
|
|
1434
1462
|
.g-lg-0,
|
|
@@ -1538,12 +1566,12 @@ progress {
|
|
|
1538
1566
|
|
|
1539
1567
|
.col-xl-1 {
|
|
1540
1568
|
flex: 0 0 auto;
|
|
1541
|
-
width: 8.
|
|
1569
|
+
width: 8.33333333%;
|
|
1542
1570
|
}
|
|
1543
1571
|
|
|
1544
1572
|
.col-xl-2 {
|
|
1545
1573
|
flex: 0 0 auto;
|
|
1546
|
-
width: 16.
|
|
1574
|
+
width: 16.66666667%;
|
|
1547
1575
|
}
|
|
1548
1576
|
|
|
1549
1577
|
.col-xl-3 {
|
|
@@ -1553,12 +1581,12 @@ progress {
|
|
|
1553
1581
|
|
|
1554
1582
|
.col-xl-4 {
|
|
1555
1583
|
flex: 0 0 auto;
|
|
1556
|
-
width: 33.
|
|
1584
|
+
width: 33.33333333%;
|
|
1557
1585
|
}
|
|
1558
1586
|
|
|
1559
1587
|
.col-xl-5 {
|
|
1560
1588
|
flex: 0 0 auto;
|
|
1561
|
-
width: 41.
|
|
1589
|
+
width: 41.66666667%;
|
|
1562
1590
|
}
|
|
1563
1591
|
|
|
1564
1592
|
.col-xl-6 {
|
|
@@ -1568,12 +1596,12 @@ progress {
|
|
|
1568
1596
|
|
|
1569
1597
|
.col-xl-7 {
|
|
1570
1598
|
flex: 0 0 auto;
|
|
1571
|
-
width: 58.
|
|
1599
|
+
width: 58.33333333%;
|
|
1572
1600
|
}
|
|
1573
1601
|
|
|
1574
1602
|
.col-xl-8 {
|
|
1575
1603
|
flex: 0 0 auto;
|
|
1576
|
-
width: 66.
|
|
1604
|
+
width: 66.66666667%;
|
|
1577
1605
|
}
|
|
1578
1606
|
|
|
1579
1607
|
.col-xl-9 {
|
|
@@ -1583,12 +1611,12 @@ progress {
|
|
|
1583
1611
|
|
|
1584
1612
|
.col-xl-10 {
|
|
1585
1613
|
flex: 0 0 auto;
|
|
1586
|
-
width: 83.
|
|
1614
|
+
width: 83.33333333%;
|
|
1587
1615
|
}
|
|
1588
1616
|
|
|
1589
1617
|
.col-xl-11 {
|
|
1590
1618
|
flex: 0 0 auto;
|
|
1591
|
-
width: 91.
|
|
1619
|
+
width: 91.66666667%;
|
|
1592
1620
|
}
|
|
1593
1621
|
|
|
1594
1622
|
.col-xl-12 {
|
|
@@ -1601,11 +1629,11 @@ progress {
|
|
|
1601
1629
|
}
|
|
1602
1630
|
|
|
1603
1631
|
.offset-xl-1 {
|
|
1604
|
-
margin-left: 8.
|
|
1632
|
+
margin-left: 8.33333333%;
|
|
1605
1633
|
}
|
|
1606
1634
|
|
|
1607
1635
|
.offset-xl-2 {
|
|
1608
|
-
margin-left: 16.
|
|
1636
|
+
margin-left: 16.66666667%;
|
|
1609
1637
|
}
|
|
1610
1638
|
|
|
1611
1639
|
.offset-xl-3 {
|
|
@@ -1613,11 +1641,11 @@ progress {
|
|
|
1613
1641
|
}
|
|
1614
1642
|
|
|
1615
1643
|
.offset-xl-4 {
|
|
1616
|
-
margin-left: 33.
|
|
1644
|
+
margin-left: 33.33333333%;
|
|
1617
1645
|
}
|
|
1618
1646
|
|
|
1619
1647
|
.offset-xl-5 {
|
|
1620
|
-
margin-left: 41.
|
|
1648
|
+
margin-left: 41.66666667%;
|
|
1621
1649
|
}
|
|
1622
1650
|
|
|
1623
1651
|
.offset-xl-6 {
|
|
@@ -1625,11 +1653,11 @@ progress {
|
|
|
1625
1653
|
}
|
|
1626
1654
|
|
|
1627
1655
|
.offset-xl-7 {
|
|
1628
|
-
margin-left: 58.
|
|
1656
|
+
margin-left: 58.33333333%;
|
|
1629
1657
|
}
|
|
1630
1658
|
|
|
1631
1659
|
.offset-xl-8 {
|
|
1632
|
-
margin-left: 66.
|
|
1660
|
+
margin-left: 66.66666667%;
|
|
1633
1661
|
}
|
|
1634
1662
|
|
|
1635
1663
|
.offset-xl-9 {
|
|
@@ -1637,11 +1665,11 @@ progress {
|
|
|
1637
1665
|
}
|
|
1638
1666
|
|
|
1639
1667
|
.offset-xl-10 {
|
|
1640
|
-
margin-left: 83.
|
|
1668
|
+
margin-left: 83.33333333%;
|
|
1641
1669
|
}
|
|
1642
1670
|
|
|
1643
1671
|
.offset-xl-11 {
|
|
1644
|
-
margin-left: 91.
|
|
1672
|
+
margin-left: 91.66666667%;
|
|
1645
1673
|
}
|
|
1646
1674
|
|
|
1647
1675
|
.g-xl-0,
|
|
@@ -1751,12 +1779,12 @@ progress {
|
|
|
1751
1779
|
|
|
1752
1780
|
.col-xxl-1 {
|
|
1753
1781
|
flex: 0 0 auto;
|
|
1754
|
-
width: 8.
|
|
1782
|
+
width: 8.33333333%;
|
|
1755
1783
|
}
|
|
1756
1784
|
|
|
1757
1785
|
.col-xxl-2 {
|
|
1758
1786
|
flex: 0 0 auto;
|
|
1759
|
-
width: 16.
|
|
1787
|
+
width: 16.66666667%;
|
|
1760
1788
|
}
|
|
1761
1789
|
|
|
1762
1790
|
.col-xxl-3 {
|
|
@@ -1766,12 +1794,12 @@ progress {
|
|
|
1766
1794
|
|
|
1767
1795
|
.col-xxl-4 {
|
|
1768
1796
|
flex: 0 0 auto;
|
|
1769
|
-
width: 33.
|
|
1797
|
+
width: 33.33333333%;
|
|
1770
1798
|
}
|
|
1771
1799
|
|
|
1772
1800
|
.col-xxl-5 {
|
|
1773
1801
|
flex: 0 0 auto;
|
|
1774
|
-
width: 41.
|
|
1802
|
+
width: 41.66666667%;
|
|
1775
1803
|
}
|
|
1776
1804
|
|
|
1777
1805
|
.col-xxl-6 {
|
|
@@ -1781,12 +1809,12 @@ progress {
|
|
|
1781
1809
|
|
|
1782
1810
|
.col-xxl-7 {
|
|
1783
1811
|
flex: 0 0 auto;
|
|
1784
|
-
width: 58.
|
|
1812
|
+
width: 58.33333333%;
|
|
1785
1813
|
}
|
|
1786
1814
|
|
|
1787
1815
|
.col-xxl-8 {
|
|
1788
1816
|
flex: 0 0 auto;
|
|
1789
|
-
width: 66.
|
|
1817
|
+
width: 66.66666667%;
|
|
1790
1818
|
}
|
|
1791
1819
|
|
|
1792
1820
|
.col-xxl-9 {
|
|
@@ -1796,12 +1824,12 @@ progress {
|
|
|
1796
1824
|
|
|
1797
1825
|
.col-xxl-10 {
|
|
1798
1826
|
flex: 0 0 auto;
|
|
1799
|
-
width: 83.
|
|
1827
|
+
width: 83.33333333%;
|
|
1800
1828
|
}
|
|
1801
1829
|
|
|
1802
1830
|
.col-xxl-11 {
|
|
1803
1831
|
flex: 0 0 auto;
|
|
1804
|
-
width: 91.
|
|
1832
|
+
width: 91.66666667%;
|
|
1805
1833
|
}
|
|
1806
1834
|
|
|
1807
1835
|
.col-xxl-12 {
|
|
@@ -1814,11 +1842,11 @@ progress {
|
|
|
1814
1842
|
}
|
|
1815
1843
|
|
|
1816
1844
|
.offset-xxl-1 {
|
|
1817
|
-
margin-left: 8.
|
|
1845
|
+
margin-left: 8.33333333%;
|
|
1818
1846
|
}
|
|
1819
1847
|
|
|
1820
1848
|
.offset-xxl-2 {
|
|
1821
|
-
margin-left: 16.
|
|
1849
|
+
margin-left: 16.66666667%;
|
|
1822
1850
|
}
|
|
1823
1851
|
|
|
1824
1852
|
.offset-xxl-3 {
|
|
@@ -1826,11 +1854,11 @@ progress {
|
|
|
1826
1854
|
}
|
|
1827
1855
|
|
|
1828
1856
|
.offset-xxl-4 {
|
|
1829
|
-
margin-left: 33.
|
|
1857
|
+
margin-left: 33.33333333%;
|
|
1830
1858
|
}
|
|
1831
1859
|
|
|
1832
1860
|
.offset-xxl-5 {
|
|
1833
|
-
margin-left: 41.
|
|
1861
|
+
margin-left: 41.66666667%;
|
|
1834
1862
|
}
|
|
1835
1863
|
|
|
1836
1864
|
.offset-xxl-6 {
|
|
@@ -1838,11 +1866,11 @@ progress {
|
|
|
1838
1866
|
}
|
|
1839
1867
|
|
|
1840
1868
|
.offset-xxl-7 {
|
|
1841
|
-
margin-left: 58.
|
|
1869
|
+
margin-left: 58.33333333%;
|
|
1842
1870
|
}
|
|
1843
1871
|
|
|
1844
1872
|
.offset-xxl-8 {
|
|
1845
|
-
margin-left: 66.
|
|
1873
|
+
margin-left: 66.66666667%;
|
|
1846
1874
|
}
|
|
1847
1875
|
|
|
1848
1876
|
.offset-xxl-9 {
|
|
@@ -1850,11 +1878,11 @@ progress {
|
|
|
1850
1878
|
}
|
|
1851
1879
|
|
|
1852
1880
|
.offset-xxl-10 {
|
|
1853
|
-
margin-left: 83.
|
|
1881
|
+
margin-left: 83.33333333%;
|
|
1854
1882
|
}
|
|
1855
1883
|
|
|
1856
1884
|
.offset-xxl-11 {
|
|
1857
|
-
margin-left: 91.
|
|
1885
|
+
margin-left: 91.66666667%;
|
|
1858
1886
|
}
|
|
1859
1887
|
|
|
1860
1888
|
.g-xxl-0,
|
|
@@ -1919,6 +1947,7 @@ progress {
|
|
|
1919
1947
|
}
|
|
1920
1948
|
.table {
|
|
1921
1949
|
--bs-table-bg: transparent;
|
|
1950
|
+
--bs-table-accent-bg: transparent;
|
|
1922
1951
|
--bs-table-striped-color: #212529;
|
|
1923
1952
|
--bs-table-striped-bg: rgba(0, 0, 0, 0.05);
|
|
1924
1953
|
--bs-table-active-color: #212529;
|
|
@@ -1943,8 +1972,8 @@ progress {
|
|
|
1943
1972
|
.table > thead {
|
|
1944
1973
|
vertical-align: bottom;
|
|
1945
1974
|
}
|
|
1946
|
-
.table > :not(:
|
|
1947
|
-
border-
|
|
1975
|
+
.table > :not(:first-child) {
|
|
1976
|
+
border-top: 2px solid currentColor;
|
|
1948
1977
|
}
|
|
1949
1978
|
|
|
1950
1979
|
.caption-top {
|
|
@@ -1965,8 +1994,11 @@ progress {
|
|
|
1965
1994
|
.table-borderless > :not(caption) > * > * {
|
|
1966
1995
|
border-bottom-width: 0;
|
|
1967
1996
|
}
|
|
1997
|
+
.table-borderless > :not(:first-child) {
|
|
1998
|
+
border-top-width: 0;
|
|
1999
|
+
}
|
|
1968
2000
|
|
|
1969
|
-
.table-striped > tbody > tr:nth-of-type(odd) {
|
|
2001
|
+
.table-striped > tbody > tr:nth-of-type(odd) > * {
|
|
1970
2002
|
--bs-table-accent-bg: var(--bs-table-striped-bg);
|
|
1971
2003
|
color: var(--bs-table-striped-color);
|
|
1972
2004
|
}
|
|
@@ -1976,7 +2008,7 @@ progress {
|
|
|
1976
2008
|
color: var(--bs-table-active-color);
|
|
1977
2009
|
}
|
|
1978
2010
|
|
|
1979
|
-
.table-hover > tbody > tr:hover {
|
|
2011
|
+
.table-hover > tbody > tr:hover > * {
|
|
1980
2012
|
--bs-table-accent-bg: var(--bs-table-hover-bg);
|
|
1981
2013
|
color: var(--bs-table-hover-color);
|
|
1982
2014
|
}
|
|
@@ -2165,7 +2197,7 @@ progress {
|
|
|
2165
2197
|
.form-control[type=file] {
|
|
2166
2198
|
overflow: hidden;
|
|
2167
2199
|
}
|
|
2168
|
-
.form-control[type=file]:not(:disabled):not(
|
|
2200
|
+
.form-control[type=file]:not(:disabled):not([readonly]) {
|
|
2169
2201
|
cursor: pointer;
|
|
2170
2202
|
}
|
|
2171
2203
|
.form-control:focus {
|
|
@@ -2182,7 +2214,7 @@ progress {
|
|
|
2182
2214
|
color: #6c757d;
|
|
2183
2215
|
opacity: 1;
|
|
2184
2216
|
}
|
|
2185
|
-
.form-control:disabled, .form-control
|
|
2217
|
+
.form-control:disabled, .form-control[readonly] {
|
|
2186
2218
|
background-color: #e9ecef;
|
|
2187
2219
|
opacity: 1;
|
|
2188
2220
|
}
|
|
@@ -2205,7 +2237,7 @@ progress {
|
|
|
2205
2237
|
transition: none;
|
|
2206
2238
|
}
|
|
2207
2239
|
}
|
|
2208
|
-
.form-control:hover:not(:disabled):not(
|
|
2240
|
+
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
|
|
2209
2241
|
background-color: #dde0e3;
|
|
2210
2242
|
}
|
|
2211
2243
|
.form-control::-webkit-file-upload-button {
|
|
@@ -2227,7 +2259,7 @@ progress {
|
|
|
2227
2259
|
transition: none;
|
|
2228
2260
|
}
|
|
2229
2261
|
}
|
|
2230
|
-
.form-control:hover:not(:disabled):not(
|
|
2262
|
+
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
|
|
2231
2263
|
background-color: #dde0e3;
|
|
2232
2264
|
}
|
|
2233
2265
|
|
|
@@ -2292,11 +2324,11 @@ textarea.form-control-lg {
|
|
|
2292
2324
|
}
|
|
2293
2325
|
|
|
2294
2326
|
.form-control-color {
|
|
2295
|
-
|
|
2327
|
+
width: 3rem;
|
|
2296
2328
|
height: auto;
|
|
2297
2329
|
padding: 0.375rem;
|
|
2298
2330
|
}
|
|
2299
|
-
.form-control-color:not(:disabled):not(
|
|
2331
|
+
.form-control-color:not(:disabled):not([readonly]) {
|
|
2300
2332
|
cursor: pointer;
|
|
2301
2333
|
}
|
|
2302
2334
|
.form-control-color::-moz-color-swatch {
|
|
@@ -2312,6 +2344,7 @@ textarea.form-control-lg {
|
|
|
2312
2344
|
display: block;
|
|
2313
2345
|
width: 100%;
|
|
2314
2346
|
padding: 0.375rem 2.25rem 0.375rem 0.75rem;
|
|
2347
|
+
-moz-padding-start: calc(0.75rem - 3px);
|
|
2315
2348
|
font-size: 1rem;
|
|
2316
2349
|
font-weight: 400;
|
|
2317
2350
|
line-height: 1.5;
|
|
@@ -2323,8 +2356,14 @@ textarea.form-control-lg {
|
|
|
2323
2356
|
background-size: 16px 12px;
|
|
2324
2357
|
border: 1px solid #ced4da;
|
|
2325
2358
|
border-radius: 0.25rem;
|
|
2359
|
+
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
2326
2360
|
appearance: none;
|
|
2327
2361
|
}
|
|
2362
|
+
@media (prefers-reduced-motion: reduce) {
|
|
2363
|
+
.form-select {
|
|
2364
|
+
transition: none;
|
|
2365
|
+
}
|
|
2366
|
+
}
|
|
2328
2367
|
.form-select:focus {
|
|
2329
2368
|
border-color: #86b7fe;
|
|
2330
2369
|
outline: 0;
|
|
@@ -2347,6 +2386,7 @@ textarea.form-control-lg {
|
|
|
2347
2386
|
padding-bottom: 0.25rem;
|
|
2348
2387
|
padding-left: 0.5rem;
|
|
2349
2388
|
font-size: 0.875rem;
|
|
2389
|
+
border-radius: 0.2rem;
|
|
2350
2390
|
}
|
|
2351
2391
|
|
|
2352
2392
|
.form-select-lg {
|
|
@@ -2354,6 +2394,7 @@ textarea.form-control-lg {
|
|
|
2354
2394
|
padding-bottom: 0.5rem;
|
|
2355
2395
|
padding-left: 1rem;
|
|
2356
2396
|
font-size: 1.25rem;
|
|
2397
|
+
border-radius: 0.3rem;
|
|
2357
2398
|
}
|
|
2358
2399
|
|
|
2359
2400
|
.form-check {
|
|
@@ -2546,7 +2587,7 @@ textarea.form-control-lg {
|
|
|
2546
2587
|
.form-floating > .form-control,
|
|
2547
2588
|
.form-floating > .form-select {
|
|
2548
2589
|
height: calc(3.5rem + 2px);
|
|
2549
|
-
|
|
2590
|
+
line-height: 1.25;
|
|
2550
2591
|
}
|
|
2551
2592
|
.form-floating > label {
|
|
2552
2593
|
position: absolute;
|
|
@@ -2564,6 +2605,9 @@ textarea.form-control-lg {
|
|
|
2564
2605
|
transition: none;
|
|
2565
2606
|
}
|
|
2566
2607
|
}
|
|
2608
|
+
.form-floating > .form-control {
|
|
2609
|
+
padding: 1rem 0.75rem;
|
|
2610
|
+
}
|
|
2567
2611
|
.form-floating > .form-control::placeholder {
|
|
2568
2612
|
color: transparent;
|
|
2569
2613
|
}
|
|
@@ -2751,6 +2795,11 @@ textarea.form-control-lg {
|
|
|
2751
2795
|
.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
|
|
2752
2796
|
.was-validated .input-group .form-select:valid,
|
|
2753
2797
|
.input-group .form-select.is-valid {
|
|
2798
|
+
z-index: 1;
|
|
2799
|
+
}
|
|
2800
|
+
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
|
|
2801
|
+
.was-validated .input-group .form-select:valid:focus,
|
|
2802
|
+
.input-group .form-select.is-valid:focus {
|
|
2754
2803
|
z-index: 3;
|
|
2755
2804
|
}
|
|
2756
2805
|
|
|
@@ -2835,6 +2884,11 @@ textarea.form-control-lg {
|
|
|
2835
2884
|
.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
|
|
2836
2885
|
.was-validated .input-group .form-select:invalid,
|
|
2837
2886
|
.input-group .form-select.is-invalid {
|
|
2887
|
+
z-index: 2;
|
|
2888
|
+
}
|
|
2889
|
+
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
|
|
2890
|
+
.was-validated .input-group .form-select:invalid:focus,
|
|
2891
|
+
.input-group .form-select.is-invalid:focus {
|
|
2838
2892
|
z-index: 3;
|
|
2839
2893
|
}
|
|
2840
2894
|
|
|
@@ -3362,6 +3416,16 @@ textarea.form-control-lg {
|
|
|
3362
3416
|
transition: none;
|
|
3363
3417
|
}
|
|
3364
3418
|
}
|
|
3419
|
+
.collapsing.collapse-horizontal {
|
|
3420
|
+
width: 0;
|
|
3421
|
+
height: auto;
|
|
3422
|
+
transition: width 0.35s ease;
|
|
3423
|
+
}
|
|
3424
|
+
@media (prefers-reduced-motion: reduce) {
|
|
3425
|
+
.collapsing.collapse-horizontal {
|
|
3426
|
+
transition: none;
|
|
3427
|
+
}
|
|
3428
|
+
}
|
|
3365
3429
|
|
|
3366
3430
|
.dropup,
|
|
3367
3431
|
.dropend,
|
|
@@ -3413,16 +3477,16 @@ textarea.form-control-lg {
|
|
|
3413
3477
|
--bs-position: start;
|
|
3414
3478
|
}
|
|
3415
3479
|
.dropdown-menu-start[data-bs-popper] {
|
|
3416
|
-
right: auto
|
|
3417
|
-
left: 0
|
|
3480
|
+
right: auto;
|
|
3481
|
+
left: 0;
|
|
3418
3482
|
}
|
|
3419
3483
|
|
|
3420
3484
|
.dropdown-menu-end {
|
|
3421
3485
|
--bs-position: end;
|
|
3422
3486
|
}
|
|
3423
3487
|
.dropdown-menu-end[data-bs-popper] {
|
|
3424
|
-
right: 0
|
|
3425
|
-
left: auto
|
|
3488
|
+
right: 0;
|
|
3489
|
+
left: auto;
|
|
3426
3490
|
}
|
|
3427
3491
|
|
|
3428
3492
|
@media (min-width: 576px) {
|
|
@@ -3430,16 +3494,16 @@ textarea.form-control-lg {
|
|
|
3430
3494
|
--bs-position: start;
|
|
3431
3495
|
}
|
|
3432
3496
|
.dropdown-menu-sm-start[data-bs-popper] {
|
|
3433
|
-
right: auto
|
|
3434
|
-
left: 0
|
|
3497
|
+
right: auto;
|
|
3498
|
+
left: 0;
|
|
3435
3499
|
}
|
|
3436
3500
|
|
|
3437
3501
|
.dropdown-menu-sm-end {
|
|
3438
3502
|
--bs-position: end;
|
|
3439
3503
|
}
|
|
3440
3504
|
.dropdown-menu-sm-end[data-bs-popper] {
|
|
3441
|
-
right: 0
|
|
3442
|
-
left: auto
|
|
3505
|
+
right: 0;
|
|
3506
|
+
left: auto;
|
|
3443
3507
|
}
|
|
3444
3508
|
}
|
|
3445
3509
|
@media (min-width: 768px) {
|
|
@@ -3447,16 +3511,16 @@ textarea.form-control-lg {
|
|
|
3447
3511
|
--bs-position: start;
|
|
3448
3512
|
}
|
|
3449
3513
|
.dropdown-menu-md-start[data-bs-popper] {
|
|
3450
|
-
right: auto
|
|
3451
|
-
left: 0
|
|
3514
|
+
right: auto;
|
|
3515
|
+
left: 0;
|
|
3452
3516
|
}
|
|
3453
3517
|
|
|
3454
3518
|
.dropdown-menu-md-end {
|
|
3455
3519
|
--bs-position: end;
|
|
3456
3520
|
}
|
|
3457
3521
|
.dropdown-menu-md-end[data-bs-popper] {
|
|
3458
|
-
right: 0
|
|
3459
|
-
left: auto
|
|
3522
|
+
right: 0;
|
|
3523
|
+
left: auto;
|
|
3460
3524
|
}
|
|
3461
3525
|
}
|
|
3462
3526
|
@media (min-width: 992px) {
|
|
@@ -3464,16 +3528,16 @@ textarea.form-control-lg {
|
|
|
3464
3528
|
--bs-position: start;
|
|
3465
3529
|
}
|
|
3466
3530
|
.dropdown-menu-lg-start[data-bs-popper] {
|
|
3467
|
-
right: auto
|
|
3468
|
-
left: 0
|
|
3531
|
+
right: auto;
|
|
3532
|
+
left: 0;
|
|
3469
3533
|
}
|
|
3470
3534
|
|
|
3471
3535
|
.dropdown-menu-lg-end {
|
|
3472
3536
|
--bs-position: end;
|
|
3473
3537
|
}
|
|
3474
3538
|
.dropdown-menu-lg-end[data-bs-popper] {
|
|
3475
|
-
right: 0
|
|
3476
|
-
left: auto
|
|
3539
|
+
right: 0;
|
|
3540
|
+
left: auto;
|
|
3477
3541
|
}
|
|
3478
3542
|
}
|
|
3479
3543
|
@media (min-width: 1200px) {
|
|
@@ -3481,16 +3545,16 @@ textarea.form-control-lg {
|
|
|
3481
3545
|
--bs-position: start;
|
|
3482
3546
|
}
|
|
3483
3547
|
.dropdown-menu-xl-start[data-bs-popper] {
|
|
3484
|
-
right: auto
|
|
3485
|
-
left: 0
|
|
3548
|
+
right: auto;
|
|
3549
|
+
left: 0;
|
|
3486
3550
|
}
|
|
3487
3551
|
|
|
3488
3552
|
.dropdown-menu-xl-end {
|
|
3489
3553
|
--bs-position: end;
|
|
3490
3554
|
}
|
|
3491
3555
|
.dropdown-menu-xl-end[data-bs-popper] {
|
|
3492
|
-
right: 0
|
|
3493
|
-
left: auto
|
|
3556
|
+
right: 0;
|
|
3557
|
+
left: auto;
|
|
3494
3558
|
}
|
|
3495
3559
|
}
|
|
3496
3560
|
@media (min-width: 1400px) {
|
|
@@ -3498,16 +3562,16 @@ textarea.form-control-lg {
|
|
|
3498
3562
|
--bs-position: start;
|
|
3499
3563
|
}
|
|
3500
3564
|
.dropdown-menu-xxl-start[data-bs-popper] {
|
|
3501
|
-
right: auto
|
|
3502
|
-
left: 0
|
|
3565
|
+
right: auto;
|
|
3566
|
+
left: 0;
|
|
3503
3567
|
}
|
|
3504
3568
|
|
|
3505
3569
|
.dropdown-menu-xxl-end {
|
|
3506
3570
|
--bs-position: end;
|
|
3507
3571
|
}
|
|
3508
3572
|
.dropdown-menu-xxl-end[data-bs-popper] {
|
|
3509
|
-
right: 0
|
|
3510
|
-
left: auto
|
|
3573
|
+
right: 0;
|
|
3574
|
+
left: auto;
|
|
3511
3575
|
}
|
|
3512
3576
|
}
|
|
3513
3577
|
.dropup .dropdown-menu[data-bs-popper] {
|
|
@@ -3979,6 +4043,33 @@ textarea.form-control-lg {
|
|
|
3979
4043
|
.navbar-expand-sm .navbar-toggler {
|
|
3980
4044
|
display: none;
|
|
3981
4045
|
}
|
|
4046
|
+
.navbar-expand-sm .offcanvas-header {
|
|
4047
|
+
display: none;
|
|
4048
|
+
}
|
|
4049
|
+
.navbar-expand-sm .offcanvas {
|
|
4050
|
+
position: inherit;
|
|
4051
|
+
bottom: 0;
|
|
4052
|
+
z-index: 1000;
|
|
4053
|
+
flex-grow: 1;
|
|
4054
|
+
visibility: visible !important;
|
|
4055
|
+
background-color: transparent;
|
|
4056
|
+
border-right: 0;
|
|
4057
|
+
border-left: 0;
|
|
4058
|
+
transition: none;
|
|
4059
|
+
transform: none;
|
|
4060
|
+
}
|
|
4061
|
+
.navbar-expand-sm .offcanvas-top,
|
|
4062
|
+
.navbar-expand-sm .offcanvas-bottom {
|
|
4063
|
+
height: auto;
|
|
4064
|
+
border-top: 0;
|
|
4065
|
+
border-bottom: 0;
|
|
4066
|
+
}
|
|
4067
|
+
.navbar-expand-sm .offcanvas-body {
|
|
4068
|
+
display: flex;
|
|
4069
|
+
flex-grow: 0;
|
|
4070
|
+
padding: 0;
|
|
4071
|
+
overflow-y: visible;
|
|
4072
|
+
}
|
|
3982
4073
|
}
|
|
3983
4074
|
@media (min-width: 768px) {
|
|
3984
4075
|
.navbar-expand-md {
|
|
@@ -4005,6 +4096,33 @@ textarea.form-control-lg {
|
|
|
4005
4096
|
.navbar-expand-md .navbar-toggler {
|
|
4006
4097
|
display: none;
|
|
4007
4098
|
}
|
|
4099
|
+
.navbar-expand-md .offcanvas-header {
|
|
4100
|
+
display: none;
|
|
4101
|
+
}
|
|
4102
|
+
.navbar-expand-md .offcanvas {
|
|
4103
|
+
position: inherit;
|
|
4104
|
+
bottom: 0;
|
|
4105
|
+
z-index: 1000;
|
|
4106
|
+
flex-grow: 1;
|
|
4107
|
+
visibility: visible !important;
|
|
4108
|
+
background-color: transparent;
|
|
4109
|
+
border-right: 0;
|
|
4110
|
+
border-left: 0;
|
|
4111
|
+
transition: none;
|
|
4112
|
+
transform: none;
|
|
4113
|
+
}
|
|
4114
|
+
.navbar-expand-md .offcanvas-top,
|
|
4115
|
+
.navbar-expand-md .offcanvas-bottom {
|
|
4116
|
+
height: auto;
|
|
4117
|
+
border-top: 0;
|
|
4118
|
+
border-bottom: 0;
|
|
4119
|
+
}
|
|
4120
|
+
.navbar-expand-md .offcanvas-body {
|
|
4121
|
+
display: flex;
|
|
4122
|
+
flex-grow: 0;
|
|
4123
|
+
padding: 0;
|
|
4124
|
+
overflow-y: visible;
|
|
4125
|
+
}
|
|
4008
4126
|
}
|
|
4009
4127
|
@media (min-width: 992px) {
|
|
4010
4128
|
.navbar-expand-lg {
|
|
@@ -4031,6 +4149,33 @@ textarea.form-control-lg {
|
|
|
4031
4149
|
.navbar-expand-lg .navbar-toggler {
|
|
4032
4150
|
display: none;
|
|
4033
4151
|
}
|
|
4152
|
+
.navbar-expand-lg .offcanvas-header {
|
|
4153
|
+
display: none;
|
|
4154
|
+
}
|
|
4155
|
+
.navbar-expand-lg .offcanvas {
|
|
4156
|
+
position: inherit;
|
|
4157
|
+
bottom: 0;
|
|
4158
|
+
z-index: 1000;
|
|
4159
|
+
flex-grow: 1;
|
|
4160
|
+
visibility: visible !important;
|
|
4161
|
+
background-color: transparent;
|
|
4162
|
+
border-right: 0;
|
|
4163
|
+
border-left: 0;
|
|
4164
|
+
transition: none;
|
|
4165
|
+
transform: none;
|
|
4166
|
+
}
|
|
4167
|
+
.navbar-expand-lg .offcanvas-top,
|
|
4168
|
+
.navbar-expand-lg .offcanvas-bottom {
|
|
4169
|
+
height: auto;
|
|
4170
|
+
border-top: 0;
|
|
4171
|
+
border-bottom: 0;
|
|
4172
|
+
}
|
|
4173
|
+
.navbar-expand-lg .offcanvas-body {
|
|
4174
|
+
display: flex;
|
|
4175
|
+
flex-grow: 0;
|
|
4176
|
+
padding: 0;
|
|
4177
|
+
overflow-y: visible;
|
|
4178
|
+
}
|
|
4034
4179
|
}
|
|
4035
4180
|
@media (min-width: 1200px) {
|
|
4036
4181
|
.navbar-expand-xl {
|
|
@@ -4057,6 +4202,33 @@ textarea.form-control-lg {
|
|
|
4057
4202
|
.navbar-expand-xl .navbar-toggler {
|
|
4058
4203
|
display: none;
|
|
4059
4204
|
}
|
|
4205
|
+
.navbar-expand-xl .offcanvas-header {
|
|
4206
|
+
display: none;
|
|
4207
|
+
}
|
|
4208
|
+
.navbar-expand-xl .offcanvas {
|
|
4209
|
+
position: inherit;
|
|
4210
|
+
bottom: 0;
|
|
4211
|
+
z-index: 1000;
|
|
4212
|
+
flex-grow: 1;
|
|
4213
|
+
visibility: visible !important;
|
|
4214
|
+
background-color: transparent;
|
|
4215
|
+
border-right: 0;
|
|
4216
|
+
border-left: 0;
|
|
4217
|
+
transition: none;
|
|
4218
|
+
transform: none;
|
|
4219
|
+
}
|
|
4220
|
+
.navbar-expand-xl .offcanvas-top,
|
|
4221
|
+
.navbar-expand-xl .offcanvas-bottom {
|
|
4222
|
+
height: auto;
|
|
4223
|
+
border-top: 0;
|
|
4224
|
+
border-bottom: 0;
|
|
4225
|
+
}
|
|
4226
|
+
.navbar-expand-xl .offcanvas-body {
|
|
4227
|
+
display: flex;
|
|
4228
|
+
flex-grow: 0;
|
|
4229
|
+
padding: 0;
|
|
4230
|
+
overflow-y: visible;
|
|
4231
|
+
}
|
|
4060
4232
|
}
|
|
4061
4233
|
@media (min-width: 1400px) {
|
|
4062
4234
|
.navbar-expand-xxl {
|
|
@@ -4083,6 +4255,33 @@ textarea.form-control-lg {
|
|
|
4083
4255
|
.navbar-expand-xxl .navbar-toggler {
|
|
4084
4256
|
display: none;
|
|
4085
4257
|
}
|
|
4258
|
+
.navbar-expand-xxl .offcanvas-header {
|
|
4259
|
+
display: none;
|
|
4260
|
+
}
|
|
4261
|
+
.navbar-expand-xxl .offcanvas {
|
|
4262
|
+
position: inherit;
|
|
4263
|
+
bottom: 0;
|
|
4264
|
+
z-index: 1000;
|
|
4265
|
+
flex-grow: 1;
|
|
4266
|
+
visibility: visible !important;
|
|
4267
|
+
background-color: transparent;
|
|
4268
|
+
border-right: 0;
|
|
4269
|
+
border-left: 0;
|
|
4270
|
+
transition: none;
|
|
4271
|
+
transform: none;
|
|
4272
|
+
}
|
|
4273
|
+
.navbar-expand-xxl .offcanvas-top,
|
|
4274
|
+
.navbar-expand-xxl .offcanvas-bottom {
|
|
4275
|
+
height: auto;
|
|
4276
|
+
border-top: 0;
|
|
4277
|
+
border-bottom: 0;
|
|
4278
|
+
}
|
|
4279
|
+
.navbar-expand-xxl .offcanvas-body {
|
|
4280
|
+
display: flex;
|
|
4281
|
+
flex-grow: 0;
|
|
4282
|
+
padding: 0;
|
|
4283
|
+
overflow-y: visible;
|
|
4284
|
+
}
|
|
4086
4285
|
}
|
|
4087
4286
|
.navbar-expand {
|
|
4088
4287
|
flex-wrap: nowrap;
|
|
@@ -4108,6 +4307,33 @@ textarea.form-control-lg {
|
|
|
4108
4307
|
.navbar-expand .navbar-toggler {
|
|
4109
4308
|
display: none;
|
|
4110
4309
|
}
|
|
4310
|
+
.navbar-expand .offcanvas-header {
|
|
4311
|
+
display: none;
|
|
4312
|
+
}
|
|
4313
|
+
.navbar-expand .offcanvas {
|
|
4314
|
+
position: inherit;
|
|
4315
|
+
bottom: 0;
|
|
4316
|
+
z-index: 1000;
|
|
4317
|
+
flex-grow: 1;
|
|
4318
|
+
visibility: visible !important;
|
|
4319
|
+
background-color: transparent;
|
|
4320
|
+
border-right: 0;
|
|
4321
|
+
border-left: 0;
|
|
4322
|
+
transition: none;
|
|
4323
|
+
transform: none;
|
|
4324
|
+
}
|
|
4325
|
+
.navbar-expand .offcanvas-top,
|
|
4326
|
+
.navbar-expand .offcanvas-bottom {
|
|
4327
|
+
height: auto;
|
|
4328
|
+
border-top: 0;
|
|
4329
|
+
border-bottom: 0;
|
|
4330
|
+
}
|
|
4331
|
+
.navbar-expand .offcanvas-body {
|
|
4332
|
+
display: flex;
|
|
4333
|
+
flex-grow: 0;
|
|
4334
|
+
padding: 0;
|
|
4335
|
+
overflow-y: visible;
|
|
4336
|
+
}
|
|
4111
4337
|
|
|
4112
4338
|
.navbar-light .navbar-brand {
|
|
4113
4339
|
color: rgba(0, 0, 0, 0.9);
|
|
@@ -4231,9 +4457,6 @@ textarea.form-control-lg {
|
|
|
4231
4457
|
margin-bottom: 0;
|
|
4232
4458
|
}
|
|
4233
4459
|
|
|
4234
|
-
.card-link:hover {
|
|
4235
|
-
text-decoration: none;
|
|
4236
|
-
}
|
|
4237
4460
|
.card-link + .card-link {
|
|
4238
4461
|
margin-left: 1rem;
|
|
4239
4462
|
}
|
|
@@ -5099,10 +5322,10 @@ textarea.form-control-lg {
|
|
|
5099
5322
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
5100
5323
|
border-radius: 0.25rem;
|
|
5101
5324
|
}
|
|
5102
|
-
.toast
|
|
5325
|
+
.toast.showing {
|
|
5103
5326
|
opacity: 0;
|
|
5104
5327
|
}
|
|
5105
|
-
.toast.
|
|
5328
|
+
.toast:not(.show) {
|
|
5106
5329
|
display: none;
|
|
5107
5330
|
}
|
|
5108
5331
|
|
|
@@ -5136,23 +5359,16 @@ textarea.form-control-lg {
|
|
|
5136
5359
|
word-wrap: break-word;
|
|
5137
5360
|
}
|
|
5138
5361
|
|
|
5139
|
-
.modal-open {
|
|
5140
|
-
overflow: hidden;
|
|
5141
|
-
}
|
|
5142
|
-
.modal-open .modal {
|
|
5143
|
-
overflow-x: hidden;
|
|
5144
|
-
overflow-y: auto;
|
|
5145
|
-
}
|
|
5146
|
-
|
|
5147
5362
|
.modal {
|
|
5148
5363
|
position: fixed;
|
|
5149
5364
|
top: 0;
|
|
5150
5365
|
left: 0;
|
|
5151
|
-
z-index:
|
|
5366
|
+
z-index: 1055;
|
|
5152
5367
|
display: none;
|
|
5153
5368
|
width: 100%;
|
|
5154
5369
|
height: 100%;
|
|
5155
|
-
overflow: hidden;
|
|
5370
|
+
overflow-x: hidden;
|
|
5371
|
+
overflow-y: auto;
|
|
5156
5372
|
outline: 0;
|
|
5157
5373
|
}
|
|
5158
5374
|
|
|
@@ -5212,7 +5428,7 @@ textarea.form-control-lg {
|
|
|
5212
5428
|
position: fixed;
|
|
5213
5429
|
top: 0;
|
|
5214
5430
|
left: 0;
|
|
5215
|
-
z-index:
|
|
5431
|
+
z-index: 1050;
|
|
5216
5432
|
width: 100vw;
|
|
5217
5433
|
height: 100vh;
|
|
5218
5434
|
background-color: #000;
|
|
@@ -5642,7 +5858,7 @@ textarea.form-control-lg {
|
|
|
5642
5858
|
margin-bottom: 0;
|
|
5643
5859
|
font-size: 1rem;
|
|
5644
5860
|
background-color: #f0f0f0;
|
|
5645
|
-
border-bottom: 1px solid
|
|
5861
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
|
5646
5862
|
border-top-left-radius: calc(0.3rem - 1px);
|
|
5647
5863
|
border-top-right-radius: calc(0.3rem - 1px);
|
|
5648
5864
|
}
|
|
@@ -5917,7 +6133,7 @@ textarea.form-control-lg {
|
|
|
5917
6133
|
.offcanvas {
|
|
5918
6134
|
position: fixed;
|
|
5919
6135
|
bottom: 0;
|
|
5920
|
-
z-index:
|
|
6136
|
+
z-index: 1045;
|
|
5921
6137
|
display: flex;
|
|
5922
6138
|
flex-direction: column;
|
|
5923
6139
|
max-width: 100%;
|
|
@@ -5933,6 +6149,22 @@ textarea.form-control-lg {
|
|
|
5933
6149
|
}
|
|
5934
6150
|
}
|
|
5935
6151
|
|
|
6152
|
+
.offcanvas-backdrop {
|
|
6153
|
+
position: fixed;
|
|
6154
|
+
top: 0;
|
|
6155
|
+
left: 0;
|
|
6156
|
+
z-index: 1040;
|
|
6157
|
+
width: 100vw;
|
|
6158
|
+
height: 100vh;
|
|
6159
|
+
background-color: #000;
|
|
6160
|
+
}
|
|
6161
|
+
.offcanvas-backdrop.fade {
|
|
6162
|
+
opacity: 0;
|
|
6163
|
+
}
|
|
6164
|
+
.offcanvas-backdrop.show {
|
|
6165
|
+
opacity: 0.5;
|
|
6166
|
+
}
|
|
6167
|
+
|
|
5936
6168
|
.offcanvas-header {
|
|
5937
6169
|
display: flex;
|
|
5938
6170
|
align-items: center;
|
|
@@ -5941,7 +6173,9 @@ textarea.form-control-lg {
|
|
|
5941
6173
|
}
|
|
5942
6174
|
.offcanvas-header .btn-close {
|
|
5943
6175
|
padding: 0.5rem 0.5rem;
|
|
5944
|
-
margin: -0.5rem
|
|
6176
|
+
margin-top: -0.5rem;
|
|
6177
|
+
margin-right: -0.5rem;
|
|
6178
|
+
margin-bottom: -0.5rem;
|
|
5945
6179
|
}
|
|
5946
6180
|
|
|
5947
6181
|
.offcanvas-title {
|
|
@@ -5994,6 +6228,51 @@ textarea.form-control-lg {
|
|
|
5994
6228
|
transform: none;
|
|
5995
6229
|
}
|
|
5996
6230
|
|
|
6231
|
+
.placeholder {
|
|
6232
|
+
display: inline-block;
|
|
6233
|
+
min-height: 1em;
|
|
6234
|
+
vertical-align: middle;
|
|
6235
|
+
cursor: wait;
|
|
6236
|
+
background-color: currentColor;
|
|
6237
|
+
opacity: 0.5;
|
|
6238
|
+
}
|
|
6239
|
+
.placeholder.btn::before {
|
|
6240
|
+
display: inline-block;
|
|
6241
|
+
content: "";
|
|
6242
|
+
}
|
|
6243
|
+
|
|
6244
|
+
.placeholder-xs {
|
|
6245
|
+
min-height: 0.6em;
|
|
6246
|
+
}
|
|
6247
|
+
|
|
6248
|
+
.placeholder-sm {
|
|
6249
|
+
min-height: 0.8em;
|
|
6250
|
+
}
|
|
6251
|
+
|
|
6252
|
+
.placeholder-lg {
|
|
6253
|
+
min-height: 1.2em;
|
|
6254
|
+
}
|
|
6255
|
+
|
|
6256
|
+
.placeholder-glow .placeholder {
|
|
6257
|
+
animation: placeholder-glow 2s ease-in-out infinite;
|
|
6258
|
+
}
|
|
6259
|
+
|
|
6260
|
+
@keyframes placeholder-glow {
|
|
6261
|
+
50% {
|
|
6262
|
+
opacity: 0.2;
|
|
6263
|
+
}
|
|
6264
|
+
}
|
|
6265
|
+
.placeholder-wave {
|
|
6266
|
+
mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
|
|
6267
|
+
mask-size: 200% 100%;
|
|
6268
|
+
animation: placeholder-wave 2s linear infinite;
|
|
6269
|
+
}
|
|
6270
|
+
|
|
6271
|
+
@keyframes placeholder-wave {
|
|
6272
|
+
100% {
|
|
6273
|
+
mask-position: -200% 0%;
|
|
6274
|
+
}
|
|
6275
|
+
}
|
|
5997
6276
|
.clearfix::after {
|
|
5998
6277
|
display: block;
|
|
5999
6278
|
clear: both;
|
|
@@ -6146,6 +6425,20 @@ textarea.form-control-lg {
|
|
|
6146
6425
|
z-index: 1020;
|
|
6147
6426
|
}
|
|
6148
6427
|
}
|
|
6428
|
+
.hstack {
|
|
6429
|
+
display: flex;
|
|
6430
|
+
flex-direction: row;
|
|
6431
|
+
align-items: center;
|
|
6432
|
+
align-self: stretch;
|
|
6433
|
+
}
|
|
6434
|
+
|
|
6435
|
+
.vstack {
|
|
6436
|
+
display: flex;
|
|
6437
|
+
flex: 1 1 auto;
|
|
6438
|
+
flex-direction: column;
|
|
6439
|
+
align-self: stretch;
|
|
6440
|
+
}
|
|
6441
|
+
|
|
6149
6442
|
.visually-hidden,
|
|
6150
6443
|
.visually-hidden-focusable:not(:focus):not(:focus-within) {
|
|
6151
6444
|
position: absolute !important;
|
|
@@ -6175,6 +6468,15 @@ textarea.form-control-lg {
|
|
|
6175
6468
|
white-space: nowrap;
|
|
6176
6469
|
}
|
|
6177
6470
|
|
|
6471
|
+
.vr {
|
|
6472
|
+
display: inline-block;
|
|
6473
|
+
align-self: stretch;
|
|
6474
|
+
width: 1px;
|
|
6475
|
+
min-height: 1em;
|
|
6476
|
+
background-color: currentColor;
|
|
6477
|
+
opacity: 0.25;
|
|
6478
|
+
}
|
|
6479
|
+
|
|
6178
6480
|
.align-baseline {
|
|
6179
6481
|
vertical-align: baseline !important;
|
|
6180
6482
|
}
|
|
@@ -6211,6 +6513,26 @@ textarea.form-control-lg {
|
|
|
6211
6513
|
float: none !important;
|
|
6212
6514
|
}
|
|
6213
6515
|
|
|
6516
|
+
.opacity-0 {
|
|
6517
|
+
opacity: 0 !important;
|
|
6518
|
+
}
|
|
6519
|
+
|
|
6520
|
+
.opacity-25 {
|
|
6521
|
+
opacity: 0.25 !important;
|
|
6522
|
+
}
|
|
6523
|
+
|
|
6524
|
+
.opacity-50 {
|
|
6525
|
+
opacity: 0.5 !important;
|
|
6526
|
+
}
|
|
6527
|
+
|
|
6528
|
+
.opacity-75 {
|
|
6529
|
+
opacity: 0.75 !important;
|
|
6530
|
+
}
|
|
6531
|
+
|
|
6532
|
+
.opacity-100 {
|
|
6533
|
+
opacity: 1 !important;
|
|
6534
|
+
}
|
|
6535
|
+
|
|
6214
6536
|
.overflow-auto {
|
|
6215
6537
|
overflow: auto !important;
|
|
6216
6538
|
}
|
|
@@ -7233,105 +7555,176 @@ textarea.form-control-lg {
|
|
|
7233
7555
|
|
|
7234
7556
|
/* rtl:end:remove */
|
|
7235
7557
|
.text-primary {
|
|
7236
|
-
|
|
7558
|
+
--bs-text-opacity: 1;
|
|
7559
|
+
color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
|
|
7237
7560
|
}
|
|
7238
7561
|
|
|
7239
7562
|
.text-secondary {
|
|
7240
|
-
|
|
7563
|
+
--bs-text-opacity: 1;
|
|
7564
|
+
color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
|
|
7241
7565
|
}
|
|
7242
7566
|
|
|
7243
7567
|
.text-success {
|
|
7244
|
-
|
|
7568
|
+
--bs-text-opacity: 1;
|
|
7569
|
+
color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
|
|
7245
7570
|
}
|
|
7246
7571
|
|
|
7247
7572
|
.text-info {
|
|
7248
|
-
|
|
7573
|
+
--bs-text-opacity: 1;
|
|
7574
|
+
color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
|
|
7249
7575
|
}
|
|
7250
7576
|
|
|
7251
7577
|
.text-warning {
|
|
7252
|
-
|
|
7578
|
+
--bs-text-opacity: 1;
|
|
7579
|
+
color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
|
|
7253
7580
|
}
|
|
7254
7581
|
|
|
7255
7582
|
.text-danger {
|
|
7256
|
-
|
|
7583
|
+
--bs-text-opacity: 1;
|
|
7584
|
+
color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
|
|
7257
7585
|
}
|
|
7258
7586
|
|
|
7259
7587
|
.text-light {
|
|
7260
|
-
|
|
7588
|
+
--bs-text-opacity: 1;
|
|
7589
|
+
color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
|
|
7261
7590
|
}
|
|
7262
7591
|
|
|
7263
7592
|
.text-dark {
|
|
7264
|
-
|
|
7593
|
+
--bs-text-opacity: 1;
|
|
7594
|
+
color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
|
|
7595
|
+
}
|
|
7596
|
+
|
|
7597
|
+
.text-black {
|
|
7598
|
+
--bs-text-opacity: 1;
|
|
7599
|
+
color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
|
|
7265
7600
|
}
|
|
7266
7601
|
|
|
7267
7602
|
.text-white {
|
|
7268
|
-
|
|
7603
|
+
--bs-text-opacity: 1;
|
|
7604
|
+
color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
|
|
7269
7605
|
}
|
|
7270
7606
|
|
|
7271
7607
|
.text-body {
|
|
7272
|
-
|
|
7608
|
+
--bs-text-opacity: 1;
|
|
7609
|
+
color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
|
|
7273
7610
|
}
|
|
7274
7611
|
|
|
7275
7612
|
.text-muted {
|
|
7613
|
+
--bs-text-opacity: 1;
|
|
7276
7614
|
color: #6c757d !important;
|
|
7277
7615
|
}
|
|
7278
7616
|
|
|
7279
7617
|
.text-black-50 {
|
|
7618
|
+
--bs-text-opacity: 1;
|
|
7280
7619
|
color: rgba(0, 0, 0, 0.5) !important;
|
|
7281
7620
|
}
|
|
7282
7621
|
|
|
7283
7622
|
.text-white-50 {
|
|
7623
|
+
--bs-text-opacity: 1;
|
|
7284
7624
|
color: rgba(255, 255, 255, 0.5) !important;
|
|
7285
7625
|
}
|
|
7286
7626
|
|
|
7287
7627
|
.text-reset {
|
|
7628
|
+
--bs-text-opacity: 1;
|
|
7288
7629
|
color: inherit !important;
|
|
7289
7630
|
}
|
|
7290
7631
|
|
|
7632
|
+
.text-opacity-25 {
|
|
7633
|
+
--bs-text-opacity: 0.25;
|
|
7634
|
+
}
|
|
7635
|
+
|
|
7636
|
+
.text-opacity-50 {
|
|
7637
|
+
--bs-text-opacity: 0.5;
|
|
7638
|
+
}
|
|
7639
|
+
|
|
7640
|
+
.text-opacity-75 {
|
|
7641
|
+
--bs-text-opacity: 0.75;
|
|
7642
|
+
}
|
|
7643
|
+
|
|
7644
|
+
.text-opacity-100 {
|
|
7645
|
+
--bs-text-opacity: 1;
|
|
7646
|
+
}
|
|
7647
|
+
|
|
7291
7648
|
.bg-primary {
|
|
7292
|
-
|
|
7649
|
+
--bs-bg-opacity: 1;
|
|
7650
|
+
background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
|
|
7293
7651
|
}
|
|
7294
7652
|
|
|
7295
7653
|
.bg-secondary {
|
|
7296
|
-
|
|
7654
|
+
--bs-bg-opacity: 1;
|
|
7655
|
+
background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
|
|
7297
7656
|
}
|
|
7298
7657
|
|
|
7299
7658
|
.bg-success {
|
|
7300
|
-
|
|
7659
|
+
--bs-bg-opacity: 1;
|
|
7660
|
+
background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
|
|
7301
7661
|
}
|
|
7302
7662
|
|
|
7303
7663
|
.bg-info {
|
|
7304
|
-
|
|
7664
|
+
--bs-bg-opacity: 1;
|
|
7665
|
+
background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
|
|
7305
7666
|
}
|
|
7306
7667
|
|
|
7307
7668
|
.bg-warning {
|
|
7308
|
-
|
|
7669
|
+
--bs-bg-opacity: 1;
|
|
7670
|
+
background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
|
|
7309
7671
|
}
|
|
7310
7672
|
|
|
7311
7673
|
.bg-danger {
|
|
7312
|
-
|
|
7674
|
+
--bs-bg-opacity: 1;
|
|
7675
|
+
background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
|
|
7313
7676
|
}
|
|
7314
7677
|
|
|
7315
7678
|
.bg-light {
|
|
7316
|
-
|
|
7679
|
+
--bs-bg-opacity: 1;
|
|
7680
|
+
background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
|
|
7317
7681
|
}
|
|
7318
7682
|
|
|
7319
7683
|
.bg-dark {
|
|
7320
|
-
|
|
7684
|
+
--bs-bg-opacity: 1;
|
|
7685
|
+
background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
|
|
7321
7686
|
}
|
|
7322
7687
|
|
|
7323
|
-
.bg-
|
|
7324
|
-
|
|
7688
|
+
.bg-black {
|
|
7689
|
+
--bs-bg-opacity: 1;
|
|
7690
|
+
background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
|
|
7325
7691
|
}
|
|
7326
7692
|
|
|
7327
7693
|
.bg-white {
|
|
7328
|
-
|
|
7694
|
+
--bs-bg-opacity: 1;
|
|
7695
|
+
background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
|
|
7696
|
+
}
|
|
7697
|
+
|
|
7698
|
+
.bg-body {
|
|
7699
|
+
--bs-bg-opacity: 1;
|
|
7700
|
+
background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
|
|
7329
7701
|
}
|
|
7330
7702
|
|
|
7331
7703
|
.bg-transparent {
|
|
7704
|
+
--bs-bg-opacity: 1;
|
|
7332
7705
|
background-color: transparent !important;
|
|
7333
7706
|
}
|
|
7334
7707
|
|
|
7708
|
+
.bg-opacity-10 {
|
|
7709
|
+
--bs-bg-opacity: 0.1;
|
|
7710
|
+
}
|
|
7711
|
+
|
|
7712
|
+
.bg-opacity-25 {
|
|
7713
|
+
--bs-bg-opacity: 0.25;
|
|
7714
|
+
}
|
|
7715
|
+
|
|
7716
|
+
.bg-opacity-50 {
|
|
7717
|
+
--bs-bg-opacity: 0.5;
|
|
7718
|
+
}
|
|
7719
|
+
|
|
7720
|
+
.bg-opacity-75 {
|
|
7721
|
+
--bs-bg-opacity: 0.75;
|
|
7722
|
+
}
|
|
7723
|
+
|
|
7724
|
+
.bg-opacity-100 {
|
|
7725
|
+
--bs-bg-opacity: 1;
|
|
7726
|
+
}
|
|
7727
|
+
|
|
7335
7728
|
.bg-gradient {
|
|
7336
7729
|
background-image: var(--bs-gradient) !important;
|
|
7337
7730
|
}
|