hoodcms 5.0.4 → 5.0.8
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 -0
- package/dist/css/login.css +1 -1
- package/dist/js/admin.js +8 -6
- package/dist/js/app.js +13 -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 +8 -3
- package/src/css/admin.css +647 -1269
- package/src/css/admin.css.map +1 -1
- package/src/css/app.css +643 -1265
- 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 +11471 -0
- package/src/css/install.css.map +1 -0
- package/src/css/login.css +640 -1263
- 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 +30463 -348
- 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/button.scss +1 -14
- package/src/scss/editor.scss +2 -3
- 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/core/alerts.ts +1 -1
- package/src/ts/index.ts +25 -0
- package/src/ts/hood.ts +0 -5
package/src/css/admin.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
@import url("https://cdn.jsdelivr.net/npm/chart.js@2.9.2/dist/Chart.min.css");
|
|
3
3
|
/*!
|
|
4
|
-
* Bootstrap v5.
|
|
4
|
+
* Bootstrap v5.1.3 (https://getbootstrap.com/)
|
|
5
5
|
* Copyright 2011-2021 The Bootstrap Authors
|
|
6
6
|
* Copyright 2011-2021 Twitter, Inc.
|
|
7
7
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
@@ -20,6 +20,15 @@
|
|
|
20
20
|
--bs-white: #fff;
|
|
21
21
|
--bs-gray: #6c757d;
|
|
22
22
|
--bs-gray-dark: #343a40;
|
|
23
|
+
--bs-gray-100: #f8f9fa;
|
|
24
|
+
--bs-gray-200: #e9ecef;
|
|
25
|
+
--bs-gray-300: #dee2e6;
|
|
26
|
+
--bs-gray-400: #ced4da;
|
|
27
|
+
--bs-gray-500: #adb5bd;
|
|
28
|
+
--bs-gray-600: #6c757d;
|
|
29
|
+
--bs-gray-700: #495057;
|
|
30
|
+
--bs-gray-800: #343a40;
|
|
31
|
+
--bs-gray-900: #212529;
|
|
23
32
|
--bs-primary: #000;
|
|
24
33
|
--bs-secondary: #6c757d;
|
|
25
34
|
--bs-success: #198754;
|
|
@@ -28,9 +37,27 @@
|
|
|
28
37
|
--bs-danger: #dc3545;
|
|
29
38
|
--bs-light: #f8f9fa;
|
|
30
39
|
--bs-dark: #212529;
|
|
40
|
+
--bs-primary-rgb: 0, 0, 0;
|
|
41
|
+
--bs-secondary-rgb: 108, 117, 125;
|
|
42
|
+
--bs-success-rgb: 25, 135, 84;
|
|
43
|
+
--bs-info-rgb: 13, 202, 240;
|
|
44
|
+
--bs-warning-rgb: 255, 193, 7;
|
|
45
|
+
--bs-danger-rgb: 220, 53, 69;
|
|
46
|
+
--bs-light-rgb: 248, 249, 250;
|
|
47
|
+
--bs-dark-rgb: 33, 37, 41;
|
|
48
|
+
--bs-white-rgb: 255, 255, 255;
|
|
49
|
+
--bs-black-rgb: 0, 0, 0;
|
|
50
|
+
--bs-body-color-rgb: 23, 24, 24;
|
|
51
|
+
--bs-body-bg-rgb: 249, 251, 253;
|
|
31
52
|
--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";
|
|
32
53
|
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
33
54
|
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
|
55
|
+
--bs-body-font-family: var(--bs-font-sans-serif);
|
|
56
|
+
--bs-body-font-size: 0.9rem;
|
|
57
|
+
--bs-body-font-weight: 400;
|
|
58
|
+
--bs-body-line-height: 1.5;
|
|
59
|
+
--bs-body-color: #171818;
|
|
60
|
+
--bs-body-bg: #f9fbfd;
|
|
34
61
|
}
|
|
35
62
|
|
|
36
63
|
*,
|
|
@@ -47,12 +74,13 @@
|
|
|
47
74
|
|
|
48
75
|
body {
|
|
49
76
|
margin: 0;
|
|
50
|
-
font-family: var(--bs-font-
|
|
51
|
-
font-size:
|
|
52
|
-
font-weight:
|
|
53
|
-
line-height:
|
|
54
|
-
color:
|
|
55
|
-
|
|
77
|
+
font-family: var(--bs-body-font-family);
|
|
78
|
+
font-size: var(--bs-body-font-size);
|
|
79
|
+
font-weight: var(--bs-body-font-weight);
|
|
80
|
+
line-height: var(--bs-body-line-height);
|
|
81
|
+
color: var(--bs-body-color);
|
|
82
|
+
text-align: var(--bs-body-text-align);
|
|
83
|
+
background-color: var(--bs-body-bg);
|
|
56
84
|
-webkit-text-size-adjust: 100%;
|
|
57
85
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
58
86
|
}
|
|
@@ -632,16 +660,16 @@ progress {
|
|
|
632
660
|
--bs-gutter-y: 0;
|
|
633
661
|
display: flex;
|
|
634
662
|
flex-wrap: wrap;
|
|
635
|
-
margin-top: calc(var(--bs-gutter-y)
|
|
636
|
-
margin-right: calc(var(--bs-gutter-x)
|
|
637
|
-
margin-left: calc(var(--bs-gutter-x)
|
|
663
|
+
margin-top: calc(-1 * var(--bs-gutter-y));
|
|
664
|
+
margin-right: calc(-.5 * var(--bs-gutter-x));
|
|
665
|
+
margin-left: calc(-.5 * var(--bs-gutter-x));
|
|
638
666
|
}
|
|
639
667
|
.row > * {
|
|
640
668
|
flex-shrink: 0;
|
|
641
669
|
width: 100%;
|
|
642
670
|
max-width: 100%;
|
|
643
|
-
padding-right: calc(var(--bs-gutter-x)
|
|
644
|
-
padding-left: calc(var(--bs-gutter-x)
|
|
671
|
+
padding-right: calc(var(--bs-gutter-x) * .5);
|
|
672
|
+
padding-left: calc(var(--bs-gutter-x) * .5);
|
|
645
673
|
margin-top: var(--bs-gutter-y);
|
|
646
674
|
}
|
|
647
675
|
|
|
@@ -691,12 +719,12 @@ progress {
|
|
|
691
719
|
|
|
692
720
|
.col-1 {
|
|
693
721
|
flex: 0 0 auto;
|
|
694
|
-
width: 8.
|
|
722
|
+
width: 8.33333333%;
|
|
695
723
|
}
|
|
696
724
|
|
|
697
725
|
.col-2 {
|
|
698
726
|
flex: 0 0 auto;
|
|
699
|
-
width: 16.
|
|
727
|
+
width: 16.66666667%;
|
|
700
728
|
}
|
|
701
729
|
|
|
702
730
|
.col-3 {
|
|
@@ -706,12 +734,12 @@ progress {
|
|
|
706
734
|
|
|
707
735
|
.col-4 {
|
|
708
736
|
flex: 0 0 auto;
|
|
709
|
-
width: 33.
|
|
737
|
+
width: 33.33333333%;
|
|
710
738
|
}
|
|
711
739
|
|
|
712
740
|
.col-5 {
|
|
713
741
|
flex: 0 0 auto;
|
|
714
|
-
width: 41.
|
|
742
|
+
width: 41.66666667%;
|
|
715
743
|
}
|
|
716
744
|
|
|
717
745
|
.col-6 {
|
|
@@ -721,12 +749,12 @@ progress {
|
|
|
721
749
|
|
|
722
750
|
.col-7 {
|
|
723
751
|
flex: 0 0 auto;
|
|
724
|
-
width: 58.
|
|
752
|
+
width: 58.33333333%;
|
|
725
753
|
}
|
|
726
754
|
|
|
727
755
|
.col-8 {
|
|
728
756
|
flex: 0 0 auto;
|
|
729
|
-
width: 66.
|
|
757
|
+
width: 66.66666667%;
|
|
730
758
|
}
|
|
731
759
|
|
|
732
760
|
.col-9 {
|
|
@@ -736,12 +764,12 @@ progress {
|
|
|
736
764
|
|
|
737
765
|
.col-10 {
|
|
738
766
|
flex: 0 0 auto;
|
|
739
|
-
width: 83.
|
|
767
|
+
width: 83.33333333%;
|
|
740
768
|
}
|
|
741
769
|
|
|
742
770
|
.col-11 {
|
|
743
771
|
flex: 0 0 auto;
|
|
744
|
-
width: 91.
|
|
772
|
+
width: 91.66666667%;
|
|
745
773
|
}
|
|
746
774
|
|
|
747
775
|
.col-12 {
|
|
@@ -750,11 +778,11 @@ progress {
|
|
|
750
778
|
}
|
|
751
779
|
|
|
752
780
|
.offset-1 {
|
|
753
|
-
margin-left: 8.
|
|
781
|
+
margin-left: 8.33333333%;
|
|
754
782
|
}
|
|
755
783
|
|
|
756
784
|
.offset-2 {
|
|
757
|
-
margin-left: 16.
|
|
785
|
+
margin-left: 16.66666667%;
|
|
758
786
|
}
|
|
759
787
|
|
|
760
788
|
.offset-3 {
|
|
@@ -762,11 +790,11 @@ progress {
|
|
|
762
790
|
}
|
|
763
791
|
|
|
764
792
|
.offset-4 {
|
|
765
|
-
margin-left: 33.
|
|
793
|
+
margin-left: 33.33333333%;
|
|
766
794
|
}
|
|
767
795
|
|
|
768
796
|
.offset-5 {
|
|
769
|
-
margin-left: 41.
|
|
797
|
+
margin-left: 41.66666667%;
|
|
770
798
|
}
|
|
771
799
|
|
|
772
800
|
.offset-6 {
|
|
@@ -774,11 +802,11 @@ progress {
|
|
|
774
802
|
}
|
|
775
803
|
|
|
776
804
|
.offset-7 {
|
|
777
|
-
margin-left: 58.
|
|
805
|
+
margin-left: 58.33333333%;
|
|
778
806
|
}
|
|
779
807
|
|
|
780
808
|
.offset-8 {
|
|
781
|
-
margin-left: 66.
|
|
809
|
+
margin-left: 66.66666667%;
|
|
782
810
|
}
|
|
783
811
|
|
|
784
812
|
.offset-9 {
|
|
@@ -786,11 +814,11 @@ progress {
|
|
|
786
814
|
}
|
|
787
815
|
|
|
788
816
|
.offset-10 {
|
|
789
|
-
margin-left: 83.
|
|
817
|
+
margin-left: 83.33333333%;
|
|
790
818
|
}
|
|
791
819
|
|
|
792
820
|
.offset-11 {
|
|
793
|
-
margin-left: 91.
|
|
821
|
+
margin-left: 91.66666667%;
|
|
794
822
|
}
|
|
795
823
|
|
|
796
824
|
.g-0,
|
|
@@ -900,12 +928,12 @@ progress {
|
|
|
900
928
|
|
|
901
929
|
.col-sm-1 {
|
|
902
930
|
flex: 0 0 auto;
|
|
903
|
-
width: 8.
|
|
931
|
+
width: 8.33333333%;
|
|
904
932
|
}
|
|
905
933
|
|
|
906
934
|
.col-sm-2 {
|
|
907
935
|
flex: 0 0 auto;
|
|
908
|
-
width: 16.
|
|
936
|
+
width: 16.66666667%;
|
|
909
937
|
}
|
|
910
938
|
|
|
911
939
|
.col-sm-3 {
|
|
@@ -915,12 +943,12 @@ progress {
|
|
|
915
943
|
|
|
916
944
|
.col-sm-4 {
|
|
917
945
|
flex: 0 0 auto;
|
|
918
|
-
width: 33.
|
|
946
|
+
width: 33.33333333%;
|
|
919
947
|
}
|
|
920
948
|
|
|
921
949
|
.col-sm-5 {
|
|
922
950
|
flex: 0 0 auto;
|
|
923
|
-
width: 41.
|
|
951
|
+
width: 41.66666667%;
|
|
924
952
|
}
|
|
925
953
|
|
|
926
954
|
.col-sm-6 {
|
|
@@ -930,12 +958,12 @@ progress {
|
|
|
930
958
|
|
|
931
959
|
.col-sm-7 {
|
|
932
960
|
flex: 0 0 auto;
|
|
933
|
-
width: 58.
|
|
961
|
+
width: 58.33333333%;
|
|
934
962
|
}
|
|
935
963
|
|
|
936
964
|
.col-sm-8 {
|
|
937
965
|
flex: 0 0 auto;
|
|
938
|
-
width: 66.
|
|
966
|
+
width: 66.66666667%;
|
|
939
967
|
}
|
|
940
968
|
|
|
941
969
|
.col-sm-9 {
|
|
@@ -945,12 +973,12 @@ progress {
|
|
|
945
973
|
|
|
946
974
|
.col-sm-10 {
|
|
947
975
|
flex: 0 0 auto;
|
|
948
|
-
width: 83.
|
|
976
|
+
width: 83.33333333%;
|
|
949
977
|
}
|
|
950
978
|
|
|
951
979
|
.col-sm-11 {
|
|
952
980
|
flex: 0 0 auto;
|
|
953
|
-
width: 91.
|
|
981
|
+
width: 91.66666667%;
|
|
954
982
|
}
|
|
955
983
|
|
|
956
984
|
.col-sm-12 {
|
|
@@ -963,11 +991,11 @@ progress {
|
|
|
963
991
|
}
|
|
964
992
|
|
|
965
993
|
.offset-sm-1 {
|
|
966
|
-
margin-left: 8.
|
|
994
|
+
margin-left: 8.33333333%;
|
|
967
995
|
}
|
|
968
996
|
|
|
969
997
|
.offset-sm-2 {
|
|
970
|
-
margin-left: 16.
|
|
998
|
+
margin-left: 16.66666667%;
|
|
971
999
|
}
|
|
972
1000
|
|
|
973
1001
|
.offset-sm-3 {
|
|
@@ -975,11 +1003,11 @@ progress {
|
|
|
975
1003
|
}
|
|
976
1004
|
|
|
977
1005
|
.offset-sm-4 {
|
|
978
|
-
margin-left: 33.
|
|
1006
|
+
margin-left: 33.33333333%;
|
|
979
1007
|
}
|
|
980
1008
|
|
|
981
1009
|
.offset-sm-5 {
|
|
982
|
-
margin-left: 41.
|
|
1010
|
+
margin-left: 41.66666667%;
|
|
983
1011
|
}
|
|
984
1012
|
|
|
985
1013
|
.offset-sm-6 {
|
|
@@ -987,11 +1015,11 @@ progress {
|
|
|
987
1015
|
}
|
|
988
1016
|
|
|
989
1017
|
.offset-sm-7 {
|
|
990
|
-
margin-left: 58.
|
|
1018
|
+
margin-left: 58.33333333%;
|
|
991
1019
|
}
|
|
992
1020
|
|
|
993
1021
|
.offset-sm-8 {
|
|
994
|
-
margin-left: 66.
|
|
1022
|
+
margin-left: 66.66666667%;
|
|
995
1023
|
}
|
|
996
1024
|
|
|
997
1025
|
.offset-sm-9 {
|
|
@@ -999,11 +1027,11 @@ progress {
|
|
|
999
1027
|
}
|
|
1000
1028
|
|
|
1001
1029
|
.offset-sm-10 {
|
|
1002
|
-
margin-left: 83.
|
|
1030
|
+
margin-left: 83.33333333%;
|
|
1003
1031
|
}
|
|
1004
1032
|
|
|
1005
1033
|
.offset-sm-11 {
|
|
1006
|
-
margin-left: 91.
|
|
1034
|
+
margin-left: 91.66666667%;
|
|
1007
1035
|
}
|
|
1008
1036
|
|
|
1009
1037
|
.g-sm-0,
|
|
@@ -1113,12 +1141,12 @@ progress {
|
|
|
1113
1141
|
|
|
1114
1142
|
.col-md-1 {
|
|
1115
1143
|
flex: 0 0 auto;
|
|
1116
|
-
width: 8.
|
|
1144
|
+
width: 8.33333333%;
|
|
1117
1145
|
}
|
|
1118
1146
|
|
|
1119
1147
|
.col-md-2 {
|
|
1120
1148
|
flex: 0 0 auto;
|
|
1121
|
-
width: 16.
|
|
1149
|
+
width: 16.66666667%;
|
|
1122
1150
|
}
|
|
1123
1151
|
|
|
1124
1152
|
.col-md-3 {
|
|
@@ -1128,12 +1156,12 @@ progress {
|
|
|
1128
1156
|
|
|
1129
1157
|
.col-md-4 {
|
|
1130
1158
|
flex: 0 0 auto;
|
|
1131
|
-
width: 33.
|
|
1159
|
+
width: 33.33333333%;
|
|
1132
1160
|
}
|
|
1133
1161
|
|
|
1134
1162
|
.col-md-5 {
|
|
1135
1163
|
flex: 0 0 auto;
|
|
1136
|
-
width: 41.
|
|
1164
|
+
width: 41.66666667%;
|
|
1137
1165
|
}
|
|
1138
1166
|
|
|
1139
1167
|
.col-md-6 {
|
|
@@ -1143,12 +1171,12 @@ progress {
|
|
|
1143
1171
|
|
|
1144
1172
|
.col-md-7 {
|
|
1145
1173
|
flex: 0 0 auto;
|
|
1146
|
-
width: 58.
|
|
1174
|
+
width: 58.33333333%;
|
|
1147
1175
|
}
|
|
1148
1176
|
|
|
1149
1177
|
.col-md-8 {
|
|
1150
1178
|
flex: 0 0 auto;
|
|
1151
|
-
width: 66.
|
|
1179
|
+
width: 66.66666667%;
|
|
1152
1180
|
}
|
|
1153
1181
|
|
|
1154
1182
|
.col-md-9 {
|
|
@@ -1158,12 +1186,12 @@ progress {
|
|
|
1158
1186
|
|
|
1159
1187
|
.col-md-10 {
|
|
1160
1188
|
flex: 0 0 auto;
|
|
1161
|
-
width: 83.
|
|
1189
|
+
width: 83.33333333%;
|
|
1162
1190
|
}
|
|
1163
1191
|
|
|
1164
1192
|
.col-md-11 {
|
|
1165
1193
|
flex: 0 0 auto;
|
|
1166
|
-
width: 91.
|
|
1194
|
+
width: 91.66666667%;
|
|
1167
1195
|
}
|
|
1168
1196
|
|
|
1169
1197
|
.col-md-12 {
|
|
@@ -1176,11 +1204,11 @@ progress {
|
|
|
1176
1204
|
}
|
|
1177
1205
|
|
|
1178
1206
|
.offset-md-1 {
|
|
1179
|
-
margin-left: 8.
|
|
1207
|
+
margin-left: 8.33333333%;
|
|
1180
1208
|
}
|
|
1181
1209
|
|
|
1182
1210
|
.offset-md-2 {
|
|
1183
|
-
margin-left: 16.
|
|
1211
|
+
margin-left: 16.66666667%;
|
|
1184
1212
|
}
|
|
1185
1213
|
|
|
1186
1214
|
.offset-md-3 {
|
|
@@ -1188,11 +1216,11 @@ progress {
|
|
|
1188
1216
|
}
|
|
1189
1217
|
|
|
1190
1218
|
.offset-md-4 {
|
|
1191
|
-
margin-left: 33.
|
|
1219
|
+
margin-left: 33.33333333%;
|
|
1192
1220
|
}
|
|
1193
1221
|
|
|
1194
1222
|
.offset-md-5 {
|
|
1195
|
-
margin-left: 41.
|
|
1223
|
+
margin-left: 41.66666667%;
|
|
1196
1224
|
}
|
|
1197
1225
|
|
|
1198
1226
|
.offset-md-6 {
|
|
@@ -1200,11 +1228,11 @@ progress {
|
|
|
1200
1228
|
}
|
|
1201
1229
|
|
|
1202
1230
|
.offset-md-7 {
|
|
1203
|
-
margin-left: 58.
|
|
1231
|
+
margin-left: 58.33333333%;
|
|
1204
1232
|
}
|
|
1205
1233
|
|
|
1206
1234
|
.offset-md-8 {
|
|
1207
|
-
margin-left: 66.
|
|
1235
|
+
margin-left: 66.66666667%;
|
|
1208
1236
|
}
|
|
1209
1237
|
|
|
1210
1238
|
.offset-md-9 {
|
|
@@ -1212,11 +1240,11 @@ progress {
|
|
|
1212
1240
|
}
|
|
1213
1241
|
|
|
1214
1242
|
.offset-md-10 {
|
|
1215
|
-
margin-left: 83.
|
|
1243
|
+
margin-left: 83.33333333%;
|
|
1216
1244
|
}
|
|
1217
1245
|
|
|
1218
1246
|
.offset-md-11 {
|
|
1219
|
-
margin-left: 91.
|
|
1247
|
+
margin-left: 91.66666667%;
|
|
1220
1248
|
}
|
|
1221
1249
|
|
|
1222
1250
|
.g-md-0,
|
|
@@ -1326,12 +1354,12 @@ progress {
|
|
|
1326
1354
|
|
|
1327
1355
|
.col-lg-1 {
|
|
1328
1356
|
flex: 0 0 auto;
|
|
1329
|
-
width: 8.
|
|
1357
|
+
width: 8.33333333%;
|
|
1330
1358
|
}
|
|
1331
1359
|
|
|
1332
1360
|
.col-lg-2 {
|
|
1333
1361
|
flex: 0 0 auto;
|
|
1334
|
-
width: 16.
|
|
1362
|
+
width: 16.66666667%;
|
|
1335
1363
|
}
|
|
1336
1364
|
|
|
1337
1365
|
.col-lg-3 {
|
|
@@ -1341,12 +1369,12 @@ progress {
|
|
|
1341
1369
|
|
|
1342
1370
|
.col-lg-4 {
|
|
1343
1371
|
flex: 0 0 auto;
|
|
1344
|
-
width: 33.
|
|
1372
|
+
width: 33.33333333%;
|
|
1345
1373
|
}
|
|
1346
1374
|
|
|
1347
1375
|
.col-lg-5 {
|
|
1348
1376
|
flex: 0 0 auto;
|
|
1349
|
-
width: 41.
|
|
1377
|
+
width: 41.66666667%;
|
|
1350
1378
|
}
|
|
1351
1379
|
|
|
1352
1380
|
.col-lg-6 {
|
|
@@ -1356,12 +1384,12 @@ progress {
|
|
|
1356
1384
|
|
|
1357
1385
|
.col-lg-7 {
|
|
1358
1386
|
flex: 0 0 auto;
|
|
1359
|
-
width: 58.
|
|
1387
|
+
width: 58.33333333%;
|
|
1360
1388
|
}
|
|
1361
1389
|
|
|
1362
1390
|
.col-lg-8 {
|
|
1363
1391
|
flex: 0 0 auto;
|
|
1364
|
-
width: 66.
|
|
1392
|
+
width: 66.66666667%;
|
|
1365
1393
|
}
|
|
1366
1394
|
|
|
1367
1395
|
.col-lg-9 {
|
|
@@ -1371,12 +1399,12 @@ progress {
|
|
|
1371
1399
|
|
|
1372
1400
|
.col-lg-10 {
|
|
1373
1401
|
flex: 0 0 auto;
|
|
1374
|
-
width: 83.
|
|
1402
|
+
width: 83.33333333%;
|
|
1375
1403
|
}
|
|
1376
1404
|
|
|
1377
1405
|
.col-lg-11 {
|
|
1378
1406
|
flex: 0 0 auto;
|
|
1379
|
-
width: 91.
|
|
1407
|
+
width: 91.66666667%;
|
|
1380
1408
|
}
|
|
1381
1409
|
|
|
1382
1410
|
.col-lg-12 {
|
|
@@ -1389,11 +1417,11 @@ progress {
|
|
|
1389
1417
|
}
|
|
1390
1418
|
|
|
1391
1419
|
.offset-lg-1 {
|
|
1392
|
-
margin-left: 8.
|
|
1420
|
+
margin-left: 8.33333333%;
|
|
1393
1421
|
}
|
|
1394
1422
|
|
|
1395
1423
|
.offset-lg-2 {
|
|
1396
|
-
margin-left: 16.
|
|
1424
|
+
margin-left: 16.66666667%;
|
|
1397
1425
|
}
|
|
1398
1426
|
|
|
1399
1427
|
.offset-lg-3 {
|
|
@@ -1401,11 +1429,11 @@ progress {
|
|
|
1401
1429
|
}
|
|
1402
1430
|
|
|
1403
1431
|
.offset-lg-4 {
|
|
1404
|
-
margin-left: 33.
|
|
1432
|
+
margin-left: 33.33333333%;
|
|
1405
1433
|
}
|
|
1406
1434
|
|
|
1407
1435
|
.offset-lg-5 {
|
|
1408
|
-
margin-left: 41.
|
|
1436
|
+
margin-left: 41.66666667%;
|
|
1409
1437
|
}
|
|
1410
1438
|
|
|
1411
1439
|
.offset-lg-6 {
|
|
@@ -1413,11 +1441,11 @@ progress {
|
|
|
1413
1441
|
}
|
|
1414
1442
|
|
|
1415
1443
|
.offset-lg-7 {
|
|
1416
|
-
margin-left: 58.
|
|
1444
|
+
margin-left: 58.33333333%;
|
|
1417
1445
|
}
|
|
1418
1446
|
|
|
1419
1447
|
.offset-lg-8 {
|
|
1420
|
-
margin-left: 66.
|
|
1448
|
+
margin-left: 66.66666667%;
|
|
1421
1449
|
}
|
|
1422
1450
|
|
|
1423
1451
|
.offset-lg-9 {
|
|
@@ -1425,11 +1453,11 @@ progress {
|
|
|
1425
1453
|
}
|
|
1426
1454
|
|
|
1427
1455
|
.offset-lg-10 {
|
|
1428
|
-
margin-left: 83.
|
|
1456
|
+
margin-left: 83.33333333%;
|
|
1429
1457
|
}
|
|
1430
1458
|
|
|
1431
1459
|
.offset-lg-11 {
|
|
1432
|
-
margin-left: 91.
|
|
1460
|
+
margin-left: 91.66666667%;
|
|
1433
1461
|
}
|
|
1434
1462
|
|
|
1435
1463
|
.g-lg-0,
|
|
@@ -1539,12 +1567,12 @@ progress {
|
|
|
1539
1567
|
|
|
1540
1568
|
.col-xl-1 {
|
|
1541
1569
|
flex: 0 0 auto;
|
|
1542
|
-
width: 8.
|
|
1570
|
+
width: 8.33333333%;
|
|
1543
1571
|
}
|
|
1544
1572
|
|
|
1545
1573
|
.col-xl-2 {
|
|
1546
1574
|
flex: 0 0 auto;
|
|
1547
|
-
width: 16.
|
|
1575
|
+
width: 16.66666667%;
|
|
1548
1576
|
}
|
|
1549
1577
|
|
|
1550
1578
|
.col-xl-3 {
|
|
@@ -1554,12 +1582,12 @@ progress {
|
|
|
1554
1582
|
|
|
1555
1583
|
.col-xl-4 {
|
|
1556
1584
|
flex: 0 0 auto;
|
|
1557
|
-
width: 33.
|
|
1585
|
+
width: 33.33333333%;
|
|
1558
1586
|
}
|
|
1559
1587
|
|
|
1560
1588
|
.col-xl-5 {
|
|
1561
1589
|
flex: 0 0 auto;
|
|
1562
|
-
width: 41.
|
|
1590
|
+
width: 41.66666667%;
|
|
1563
1591
|
}
|
|
1564
1592
|
|
|
1565
1593
|
.col-xl-6 {
|
|
@@ -1569,12 +1597,12 @@ progress {
|
|
|
1569
1597
|
|
|
1570
1598
|
.col-xl-7 {
|
|
1571
1599
|
flex: 0 0 auto;
|
|
1572
|
-
width: 58.
|
|
1600
|
+
width: 58.33333333%;
|
|
1573
1601
|
}
|
|
1574
1602
|
|
|
1575
1603
|
.col-xl-8 {
|
|
1576
1604
|
flex: 0 0 auto;
|
|
1577
|
-
width: 66.
|
|
1605
|
+
width: 66.66666667%;
|
|
1578
1606
|
}
|
|
1579
1607
|
|
|
1580
1608
|
.col-xl-9 {
|
|
@@ -1584,12 +1612,12 @@ progress {
|
|
|
1584
1612
|
|
|
1585
1613
|
.col-xl-10 {
|
|
1586
1614
|
flex: 0 0 auto;
|
|
1587
|
-
width: 83.
|
|
1615
|
+
width: 83.33333333%;
|
|
1588
1616
|
}
|
|
1589
1617
|
|
|
1590
1618
|
.col-xl-11 {
|
|
1591
1619
|
flex: 0 0 auto;
|
|
1592
|
-
width: 91.
|
|
1620
|
+
width: 91.66666667%;
|
|
1593
1621
|
}
|
|
1594
1622
|
|
|
1595
1623
|
.col-xl-12 {
|
|
@@ -1602,11 +1630,11 @@ progress {
|
|
|
1602
1630
|
}
|
|
1603
1631
|
|
|
1604
1632
|
.offset-xl-1 {
|
|
1605
|
-
margin-left: 8.
|
|
1633
|
+
margin-left: 8.33333333%;
|
|
1606
1634
|
}
|
|
1607
1635
|
|
|
1608
1636
|
.offset-xl-2 {
|
|
1609
|
-
margin-left: 16.
|
|
1637
|
+
margin-left: 16.66666667%;
|
|
1610
1638
|
}
|
|
1611
1639
|
|
|
1612
1640
|
.offset-xl-3 {
|
|
@@ -1614,11 +1642,11 @@ progress {
|
|
|
1614
1642
|
}
|
|
1615
1643
|
|
|
1616
1644
|
.offset-xl-4 {
|
|
1617
|
-
margin-left: 33.
|
|
1645
|
+
margin-left: 33.33333333%;
|
|
1618
1646
|
}
|
|
1619
1647
|
|
|
1620
1648
|
.offset-xl-5 {
|
|
1621
|
-
margin-left: 41.
|
|
1649
|
+
margin-left: 41.66666667%;
|
|
1622
1650
|
}
|
|
1623
1651
|
|
|
1624
1652
|
.offset-xl-6 {
|
|
@@ -1626,11 +1654,11 @@ progress {
|
|
|
1626
1654
|
}
|
|
1627
1655
|
|
|
1628
1656
|
.offset-xl-7 {
|
|
1629
|
-
margin-left: 58.
|
|
1657
|
+
margin-left: 58.33333333%;
|
|
1630
1658
|
}
|
|
1631
1659
|
|
|
1632
1660
|
.offset-xl-8 {
|
|
1633
|
-
margin-left: 66.
|
|
1661
|
+
margin-left: 66.66666667%;
|
|
1634
1662
|
}
|
|
1635
1663
|
|
|
1636
1664
|
.offset-xl-9 {
|
|
@@ -1638,11 +1666,11 @@ progress {
|
|
|
1638
1666
|
}
|
|
1639
1667
|
|
|
1640
1668
|
.offset-xl-10 {
|
|
1641
|
-
margin-left: 83.
|
|
1669
|
+
margin-left: 83.33333333%;
|
|
1642
1670
|
}
|
|
1643
1671
|
|
|
1644
1672
|
.offset-xl-11 {
|
|
1645
|
-
margin-left: 91.
|
|
1673
|
+
margin-left: 91.66666667%;
|
|
1646
1674
|
}
|
|
1647
1675
|
|
|
1648
1676
|
.g-xl-0,
|
|
@@ -1752,12 +1780,12 @@ progress {
|
|
|
1752
1780
|
|
|
1753
1781
|
.col-xxl-1 {
|
|
1754
1782
|
flex: 0 0 auto;
|
|
1755
|
-
width: 8.
|
|
1783
|
+
width: 8.33333333%;
|
|
1756
1784
|
}
|
|
1757
1785
|
|
|
1758
1786
|
.col-xxl-2 {
|
|
1759
1787
|
flex: 0 0 auto;
|
|
1760
|
-
width: 16.
|
|
1788
|
+
width: 16.66666667%;
|
|
1761
1789
|
}
|
|
1762
1790
|
|
|
1763
1791
|
.col-xxl-3 {
|
|
@@ -1767,12 +1795,12 @@ progress {
|
|
|
1767
1795
|
|
|
1768
1796
|
.col-xxl-4 {
|
|
1769
1797
|
flex: 0 0 auto;
|
|
1770
|
-
width: 33.
|
|
1798
|
+
width: 33.33333333%;
|
|
1771
1799
|
}
|
|
1772
1800
|
|
|
1773
1801
|
.col-xxl-5 {
|
|
1774
1802
|
flex: 0 0 auto;
|
|
1775
|
-
width: 41.
|
|
1803
|
+
width: 41.66666667%;
|
|
1776
1804
|
}
|
|
1777
1805
|
|
|
1778
1806
|
.col-xxl-6 {
|
|
@@ -1782,12 +1810,12 @@ progress {
|
|
|
1782
1810
|
|
|
1783
1811
|
.col-xxl-7 {
|
|
1784
1812
|
flex: 0 0 auto;
|
|
1785
|
-
width: 58.
|
|
1813
|
+
width: 58.33333333%;
|
|
1786
1814
|
}
|
|
1787
1815
|
|
|
1788
1816
|
.col-xxl-8 {
|
|
1789
1817
|
flex: 0 0 auto;
|
|
1790
|
-
width: 66.
|
|
1818
|
+
width: 66.66666667%;
|
|
1791
1819
|
}
|
|
1792
1820
|
|
|
1793
1821
|
.col-xxl-9 {
|
|
@@ -1797,12 +1825,12 @@ progress {
|
|
|
1797
1825
|
|
|
1798
1826
|
.col-xxl-10 {
|
|
1799
1827
|
flex: 0 0 auto;
|
|
1800
|
-
width: 83.
|
|
1828
|
+
width: 83.33333333%;
|
|
1801
1829
|
}
|
|
1802
1830
|
|
|
1803
1831
|
.col-xxl-11 {
|
|
1804
1832
|
flex: 0 0 auto;
|
|
1805
|
-
width: 91.
|
|
1833
|
+
width: 91.66666667%;
|
|
1806
1834
|
}
|
|
1807
1835
|
|
|
1808
1836
|
.col-xxl-12 {
|
|
@@ -1815,11 +1843,11 @@ progress {
|
|
|
1815
1843
|
}
|
|
1816
1844
|
|
|
1817
1845
|
.offset-xxl-1 {
|
|
1818
|
-
margin-left: 8.
|
|
1846
|
+
margin-left: 8.33333333%;
|
|
1819
1847
|
}
|
|
1820
1848
|
|
|
1821
1849
|
.offset-xxl-2 {
|
|
1822
|
-
margin-left: 16.
|
|
1850
|
+
margin-left: 16.66666667%;
|
|
1823
1851
|
}
|
|
1824
1852
|
|
|
1825
1853
|
.offset-xxl-3 {
|
|
@@ -1827,11 +1855,11 @@ progress {
|
|
|
1827
1855
|
}
|
|
1828
1856
|
|
|
1829
1857
|
.offset-xxl-4 {
|
|
1830
|
-
margin-left: 33.
|
|
1858
|
+
margin-left: 33.33333333%;
|
|
1831
1859
|
}
|
|
1832
1860
|
|
|
1833
1861
|
.offset-xxl-5 {
|
|
1834
|
-
margin-left: 41.
|
|
1862
|
+
margin-left: 41.66666667%;
|
|
1835
1863
|
}
|
|
1836
1864
|
|
|
1837
1865
|
.offset-xxl-6 {
|
|
@@ -1839,11 +1867,11 @@ progress {
|
|
|
1839
1867
|
}
|
|
1840
1868
|
|
|
1841
1869
|
.offset-xxl-7 {
|
|
1842
|
-
margin-left: 58.
|
|
1870
|
+
margin-left: 58.33333333%;
|
|
1843
1871
|
}
|
|
1844
1872
|
|
|
1845
1873
|
.offset-xxl-8 {
|
|
1846
|
-
margin-left: 66.
|
|
1874
|
+
margin-left: 66.66666667%;
|
|
1847
1875
|
}
|
|
1848
1876
|
|
|
1849
1877
|
.offset-xxl-9 {
|
|
@@ -1851,11 +1879,11 @@ progress {
|
|
|
1851
1879
|
}
|
|
1852
1880
|
|
|
1853
1881
|
.offset-xxl-10 {
|
|
1854
|
-
margin-left: 83.
|
|
1882
|
+
margin-left: 83.33333333%;
|
|
1855
1883
|
}
|
|
1856
1884
|
|
|
1857
1885
|
.offset-xxl-11 {
|
|
1858
|
-
margin-left: 91.
|
|
1886
|
+
margin-left: 91.66666667%;
|
|
1859
1887
|
}
|
|
1860
1888
|
|
|
1861
1889
|
.g-xxl-0,
|
|
@@ -1920,6 +1948,7 @@ progress {
|
|
|
1920
1948
|
}
|
|
1921
1949
|
.table {
|
|
1922
1950
|
--bs-table-bg: transparent;
|
|
1951
|
+
--bs-table-accent-bg: transparent;
|
|
1923
1952
|
--bs-table-striped-color: #171818;
|
|
1924
1953
|
--bs-table-striped-bg: rgba(0, 0, 0, 0.05);
|
|
1925
1954
|
--bs-table-active-color: #171818;
|
|
@@ -1944,8 +1973,8 @@ progress {
|
|
|
1944
1973
|
.table > thead {
|
|
1945
1974
|
vertical-align: bottom;
|
|
1946
1975
|
}
|
|
1947
|
-
.table > :not(:
|
|
1948
|
-
border-
|
|
1976
|
+
.table > :not(:first-child) {
|
|
1977
|
+
border-top: 2px solid currentColor;
|
|
1949
1978
|
}
|
|
1950
1979
|
|
|
1951
1980
|
.caption-top {
|
|
@@ -1966,8 +1995,11 @@ progress {
|
|
|
1966
1995
|
.table-borderless > :not(caption) > * > * {
|
|
1967
1996
|
border-bottom-width: 0;
|
|
1968
1997
|
}
|
|
1998
|
+
.table-borderless > :not(:first-child) {
|
|
1999
|
+
border-top-width: 0;
|
|
2000
|
+
}
|
|
1969
2001
|
|
|
1970
|
-
.table-striped > tbody > tr:nth-of-type(odd) {
|
|
2002
|
+
.table-striped > tbody > tr:nth-of-type(odd) > * {
|
|
1971
2003
|
--bs-table-accent-bg: var(--bs-table-striped-bg);
|
|
1972
2004
|
color: var(--bs-table-striped-color);
|
|
1973
2005
|
}
|
|
@@ -1977,7 +2009,7 @@ progress {
|
|
|
1977
2009
|
color: var(--bs-table-active-color);
|
|
1978
2010
|
}
|
|
1979
2011
|
|
|
1980
|
-
.table-hover > tbody > tr:hover {
|
|
2012
|
+
.table-hover > tbody > tr:hover > * {
|
|
1981
2013
|
--bs-table-accent-bg: var(--bs-table-hover-bg);
|
|
1982
2014
|
color: var(--bs-table-hover-color);
|
|
1983
2015
|
}
|
|
@@ -2151,7 +2183,7 @@ progress {
|
|
|
2151
2183
|
font-weight: 400;
|
|
2152
2184
|
line-height: 1.5;
|
|
2153
2185
|
color: #171818;
|
|
2154
|
-
background-color: #
|
|
2186
|
+
background-color: #f9fbfd;
|
|
2155
2187
|
background-clip: padding-box;
|
|
2156
2188
|
border: 1px solid #ced4da;
|
|
2157
2189
|
appearance: none;
|
|
@@ -2166,12 +2198,12 @@ progress {
|
|
|
2166
2198
|
.form-control[type=file] {
|
|
2167
2199
|
overflow: hidden;
|
|
2168
2200
|
}
|
|
2169
|
-
.form-control[type=file]:not(:disabled):not(
|
|
2201
|
+
.form-control[type=file]:not(:disabled):not([readonly]) {
|
|
2170
2202
|
cursor: pointer;
|
|
2171
2203
|
}
|
|
2172
2204
|
.form-control:focus {
|
|
2173
2205
|
color: #171818;
|
|
2174
|
-
background-color: #
|
|
2206
|
+
background-color: #f9fbfd;
|
|
2175
2207
|
border-color: gray;
|
|
2176
2208
|
outline: 0;
|
|
2177
2209
|
box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
|
|
@@ -2183,7 +2215,7 @@ progress {
|
|
|
2183
2215
|
color: #6c757d;
|
|
2184
2216
|
opacity: 1;
|
|
2185
2217
|
}
|
|
2186
|
-
.form-control:disabled, .form-control
|
|
2218
|
+
.form-control:disabled, .form-control[readonly] {
|
|
2187
2219
|
background-color: #e9ecef;
|
|
2188
2220
|
opacity: 1;
|
|
2189
2221
|
}
|
|
@@ -2206,7 +2238,7 @@ progress {
|
|
|
2206
2238
|
transition: none;
|
|
2207
2239
|
}
|
|
2208
2240
|
}
|
|
2209
|
-
.form-control:hover:not(:disabled):not(
|
|
2241
|
+
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
|
|
2210
2242
|
background-color: #dde0e3;
|
|
2211
2243
|
}
|
|
2212
2244
|
.form-control::-webkit-file-upload-button {
|
|
@@ -2228,7 +2260,7 @@ progress {
|
|
|
2228
2260
|
transition: none;
|
|
2229
2261
|
}
|
|
2230
2262
|
}
|
|
2231
|
-
.form-control:hover:not(:disabled):not(
|
|
2263
|
+
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
|
|
2232
2264
|
background-color: #dde0e3;
|
|
2233
2265
|
}
|
|
2234
2266
|
|
|
@@ -2293,11 +2325,11 @@ textarea.form-control-lg {
|
|
|
2293
2325
|
}
|
|
2294
2326
|
|
|
2295
2327
|
.form-control-color {
|
|
2296
|
-
|
|
2328
|
+
width: 3rem;
|
|
2297
2329
|
height: auto;
|
|
2298
2330
|
padding: 0.75rem;
|
|
2299
2331
|
}
|
|
2300
|
-
.form-control-color:not(:disabled):not(
|
|
2332
|
+
.form-control-color:not(:disabled):not([readonly]) {
|
|
2301
2333
|
cursor: pointer;
|
|
2302
2334
|
}
|
|
2303
2335
|
.form-control-color::-moz-color-swatch {
|
|
@@ -2313,19 +2345,26 @@ textarea.form-control-lg {
|
|
|
2313
2345
|
display: block;
|
|
2314
2346
|
width: 100%;
|
|
2315
2347
|
padding: 0.75rem 2.25rem 0.75rem 0.75rem;
|
|
2348
|
+
-moz-padding-start: calc(0.75rem - 3px);
|
|
2316
2349
|
font-size: 0.9rem;
|
|
2317
2350
|
font-weight: 400;
|
|
2318
2351
|
line-height: 1.5;
|
|
2319
2352
|
color: #171818;
|
|
2320
|
-
background-color: #
|
|
2353
|
+
background-color: #f9fbfd;
|
|
2321
2354
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
|
|
2322
2355
|
background-repeat: no-repeat;
|
|
2323
2356
|
background-position: right 0.75rem center;
|
|
2324
2357
|
background-size: 16px 12px;
|
|
2325
2358
|
border: 1px solid #ced4da;
|
|
2326
2359
|
border-radius: 0.25rem;
|
|
2360
|
+
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
2327
2361
|
appearance: none;
|
|
2328
2362
|
}
|
|
2363
|
+
@media (prefers-reduced-motion: reduce) {
|
|
2364
|
+
.form-select {
|
|
2365
|
+
transition: none;
|
|
2366
|
+
}
|
|
2367
|
+
}
|
|
2329
2368
|
.form-select:focus {
|
|
2330
2369
|
border-color: gray;
|
|
2331
2370
|
outline: 0;
|
|
@@ -2348,6 +2387,7 @@ textarea.form-control-lg {
|
|
|
2348
2387
|
padding-bottom: 0.25rem;
|
|
2349
2388
|
padding-left: 0.5rem;
|
|
2350
2389
|
font-size: 0.7875rem;
|
|
2390
|
+
border-radius: 0.2rem;
|
|
2351
2391
|
}
|
|
2352
2392
|
|
|
2353
2393
|
.form-select-lg {
|
|
@@ -2355,6 +2395,7 @@ textarea.form-control-lg {
|
|
|
2355
2395
|
padding-bottom: 0.5rem;
|
|
2356
2396
|
padding-left: 1rem;
|
|
2357
2397
|
font-size: 1.125rem;
|
|
2398
|
+
border-radius: 0.3rem;
|
|
2358
2399
|
}
|
|
2359
2400
|
|
|
2360
2401
|
.form-check {
|
|
@@ -2373,7 +2414,7 @@ textarea.form-control-lg {
|
|
|
2373
2414
|
height: 1em;
|
|
2374
2415
|
margin-top: 0.25em;
|
|
2375
2416
|
vertical-align: top;
|
|
2376
|
-
background-color: #
|
|
2417
|
+
background-color: #f9fbfd;
|
|
2377
2418
|
background-repeat: no-repeat;
|
|
2378
2419
|
background-position: center;
|
|
2379
2420
|
background-size: contain;
|
|
@@ -2547,7 +2588,7 @@ textarea.form-control-lg {
|
|
|
2547
2588
|
.form-floating > .form-control,
|
|
2548
2589
|
.form-floating > .form-select {
|
|
2549
2590
|
height: calc(3.5rem + 2px);
|
|
2550
|
-
|
|
2591
|
+
line-height: 1.25;
|
|
2551
2592
|
}
|
|
2552
2593
|
.form-floating > label {
|
|
2553
2594
|
position: absolute;
|
|
@@ -2565,6 +2606,9 @@ textarea.form-control-lg {
|
|
|
2565
2606
|
transition: none;
|
|
2566
2607
|
}
|
|
2567
2608
|
}
|
|
2609
|
+
.form-floating > .form-control {
|
|
2610
|
+
padding: 1rem 0.75rem;
|
|
2611
|
+
}
|
|
2568
2612
|
.form-floating > .form-control::placeholder {
|
|
2569
2613
|
color: transparent;
|
|
2570
2614
|
}
|
|
@@ -2752,6 +2796,11 @@ textarea.form-control-lg {
|
|
|
2752
2796
|
.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
|
|
2753
2797
|
.was-validated .input-group .form-select:valid,
|
|
2754
2798
|
.input-group .form-select.is-valid {
|
|
2799
|
+
z-index: 1;
|
|
2800
|
+
}
|
|
2801
|
+
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
|
|
2802
|
+
.was-validated .input-group .form-select:valid:focus,
|
|
2803
|
+
.input-group .form-select.is-valid:focus {
|
|
2755
2804
|
z-index: 3;
|
|
2756
2805
|
}
|
|
2757
2806
|
|
|
@@ -2836,6 +2885,11 @@ textarea.form-control-lg {
|
|
|
2836
2885
|
.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
|
|
2837
2886
|
.was-validated .input-group .form-select:invalid,
|
|
2838
2887
|
.input-group .form-select.is-invalid {
|
|
2888
|
+
z-index: 2;
|
|
2889
|
+
}
|
|
2890
|
+
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
|
|
2891
|
+
.was-validated .input-group .form-select:invalid:focus,
|
|
2892
|
+
.input-group .form-select.is-invalid:focus {
|
|
2839
2893
|
z-index: 3;
|
|
2840
2894
|
}
|
|
2841
2895
|
|
|
@@ -3363,6 +3417,16 @@ textarea.form-control-lg {
|
|
|
3363
3417
|
transition: none;
|
|
3364
3418
|
}
|
|
3365
3419
|
}
|
|
3420
|
+
.collapsing.collapse-horizontal {
|
|
3421
|
+
width: 0;
|
|
3422
|
+
height: auto;
|
|
3423
|
+
transition: width 0.35s ease;
|
|
3424
|
+
}
|
|
3425
|
+
@media (prefers-reduced-motion: reduce) {
|
|
3426
|
+
.collapsing.collapse-horizontal {
|
|
3427
|
+
transition: none;
|
|
3428
|
+
}
|
|
3429
|
+
}
|
|
3366
3430
|
|
|
3367
3431
|
.dropup,
|
|
3368
3432
|
.dropend,
|
|
@@ -3414,16 +3478,16 @@ textarea.form-control-lg {
|
|
|
3414
3478
|
--bs-position: start;
|
|
3415
3479
|
}
|
|
3416
3480
|
.dropdown-menu-start[data-bs-popper] {
|
|
3417
|
-
right: auto
|
|
3418
|
-
left: 0
|
|
3481
|
+
right: auto;
|
|
3482
|
+
left: 0;
|
|
3419
3483
|
}
|
|
3420
3484
|
|
|
3421
3485
|
.dropdown-menu-end {
|
|
3422
3486
|
--bs-position: end;
|
|
3423
3487
|
}
|
|
3424
3488
|
.dropdown-menu-end[data-bs-popper] {
|
|
3425
|
-
right: 0
|
|
3426
|
-
left: auto
|
|
3489
|
+
right: 0;
|
|
3490
|
+
left: auto;
|
|
3427
3491
|
}
|
|
3428
3492
|
|
|
3429
3493
|
@media (min-width: 576px) {
|
|
@@ -3431,16 +3495,16 @@ textarea.form-control-lg {
|
|
|
3431
3495
|
--bs-position: start;
|
|
3432
3496
|
}
|
|
3433
3497
|
.dropdown-menu-sm-start[data-bs-popper] {
|
|
3434
|
-
right: auto
|
|
3435
|
-
left: 0
|
|
3498
|
+
right: auto;
|
|
3499
|
+
left: 0;
|
|
3436
3500
|
}
|
|
3437
3501
|
|
|
3438
3502
|
.dropdown-menu-sm-end {
|
|
3439
3503
|
--bs-position: end;
|
|
3440
3504
|
}
|
|
3441
3505
|
.dropdown-menu-sm-end[data-bs-popper] {
|
|
3442
|
-
right: 0
|
|
3443
|
-
left: auto
|
|
3506
|
+
right: 0;
|
|
3507
|
+
left: auto;
|
|
3444
3508
|
}
|
|
3445
3509
|
}
|
|
3446
3510
|
@media (min-width: 768px) {
|
|
@@ -3448,16 +3512,16 @@ textarea.form-control-lg {
|
|
|
3448
3512
|
--bs-position: start;
|
|
3449
3513
|
}
|
|
3450
3514
|
.dropdown-menu-md-start[data-bs-popper] {
|
|
3451
|
-
right: auto
|
|
3452
|
-
left: 0
|
|
3515
|
+
right: auto;
|
|
3516
|
+
left: 0;
|
|
3453
3517
|
}
|
|
3454
3518
|
|
|
3455
3519
|
.dropdown-menu-md-end {
|
|
3456
3520
|
--bs-position: end;
|
|
3457
3521
|
}
|
|
3458
3522
|
.dropdown-menu-md-end[data-bs-popper] {
|
|
3459
|
-
right: 0
|
|
3460
|
-
left: auto
|
|
3523
|
+
right: 0;
|
|
3524
|
+
left: auto;
|
|
3461
3525
|
}
|
|
3462
3526
|
}
|
|
3463
3527
|
@media (min-width: 992px) {
|
|
@@ -3465,16 +3529,16 @@ textarea.form-control-lg {
|
|
|
3465
3529
|
--bs-position: start;
|
|
3466
3530
|
}
|
|
3467
3531
|
.dropdown-menu-lg-start[data-bs-popper] {
|
|
3468
|
-
right: auto
|
|
3469
|
-
left: 0
|
|
3532
|
+
right: auto;
|
|
3533
|
+
left: 0;
|
|
3470
3534
|
}
|
|
3471
3535
|
|
|
3472
3536
|
.dropdown-menu-lg-end {
|
|
3473
3537
|
--bs-position: end;
|
|
3474
3538
|
}
|
|
3475
3539
|
.dropdown-menu-lg-end[data-bs-popper] {
|
|
3476
|
-
right: 0
|
|
3477
|
-
left: auto
|
|
3540
|
+
right: 0;
|
|
3541
|
+
left: auto;
|
|
3478
3542
|
}
|
|
3479
3543
|
}
|
|
3480
3544
|
@media (min-width: 1200px) {
|
|
@@ -3482,16 +3546,16 @@ textarea.form-control-lg {
|
|
|
3482
3546
|
--bs-position: start;
|
|
3483
3547
|
}
|
|
3484
3548
|
.dropdown-menu-xl-start[data-bs-popper] {
|
|
3485
|
-
right: auto
|
|
3486
|
-
left: 0
|
|
3549
|
+
right: auto;
|
|
3550
|
+
left: 0;
|
|
3487
3551
|
}
|
|
3488
3552
|
|
|
3489
3553
|
.dropdown-menu-xl-end {
|
|
3490
3554
|
--bs-position: end;
|
|
3491
3555
|
}
|
|
3492
3556
|
.dropdown-menu-xl-end[data-bs-popper] {
|
|
3493
|
-
right: 0
|
|
3494
|
-
left: auto
|
|
3557
|
+
right: 0;
|
|
3558
|
+
left: auto;
|
|
3495
3559
|
}
|
|
3496
3560
|
}
|
|
3497
3561
|
@media (min-width: 1400px) {
|
|
@@ -3499,16 +3563,16 @@ textarea.form-control-lg {
|
|
|
3499
3563
|
--bs-position: start;
|
|
3500
3564
|
}
|
|
3501
3565
|
.dropdown-menu-xxl-start[data-bs-popper] {
|
|
3502
|
-
right: auto
|
|
3503
|
-
left: 0
|
|
3566
|
+
right: auto;
|
|
3567
|
+
left: 0;
|
|
3504
3568
|
}
|
|
3505
3569
|
|
|
3506
3570
|
.dropdown-menu-xxl-end {
|
|
3507
3571
|
--bs-position: end;
|
|
3508
3572
|
}
|
|
3509
3573
|
.dropdown-menu-xxl-end[data-bs-popper] {
|
|
3510
|
-
right: 0
|
|
3511
|
-
left: auto
|
|
3574
|
+
right: 0;
|
|
3575
|
+
left: auto;
|
|
3512
3576
|
}
|
|
3513
3577
|
}
|
|
3514
3578
|
.dropup .dropdown-menu[data-bs-popper] {
|
|
@@ -3980,6 +4044,33 @@ textarea.form-control-lg {
|
|
|
3980
4044
|
.navbar-expand-sm .navbar-toggler {
|
|
3981
4045
|
display: none;
|
|
3982
4046
|
}
|
|
4047
|
+
.navbar-expand-sm .offcanvas-header {
|
|
4048
|
+
display: none;
|
|
4049
|
+
}
|
|
4050
|
+
.navbar-expand-sm .offcanvas {
|
|
4051
|
+
position: inherit;
|
|
4052
|
+
bottom: 0;
|
|
4053
|
+
z-index: 1000;
|
|
4054
|
+
flex-grow: 1;
|
|
4055
|
+
visibility: visible !important;
|
|
4056
|
+
background-color: transparent;
|
|
4057
|
+
border-right: 0;
|
|
4058
|
+
border-left: 0;
|
|
4059
|
+
transition: none;
|
|
4060
|
+
transform: none;
|
|
4061
|
+
}
|
|
4062
|
+
.navbar-expand-sm .offcanvas-top,
|
|
4063
|
+
.navbar-expand-sm .offcanvas-bottom {
|
|
4064
|
+
height: auto;
|
|
4065
|
+
border-top: 0;
|
|
4066
|
+
border-bottom: 0;
|
|
4067
|
+
}
|
|
4068
|
+
.navbar-expand-sm .offcanvas-body {
|
|
4069
|
+
display: flex;
|
|
4070
|
+
flex-grow: 0;
|
|
4071
|
+
padding: 0;
|
|
4072
|
+
overflow-y: visible;
|
|
4073
|
+
}
|
|
3983
4074
|
}
|
|
3984
4075
|
@media (min-width: 768px) {
|
|
3985
4076
|
.navbar-expand-md {
|
|
@@ -4006,6 +4097,33 @@ textarea.form-control-lg {
|
|
|
4006
4097
|
.navbar-expand-md .navbar-toggler {
|
|
4007
4098
|
display: none;
|
|
4008
4099
|
}
|
|
4100
|
+
.navbar-expand-md .offcanvas-header {
|
|
4101
|
+
display: none;
|
|
4102
|
+
}
|
|
4103
|
+
.navbar-expand-md .offcanvas {
|
|
4104
|
+
position: inherit;
|
|
4105
|
+
bottom: 0;
|
|
4106
|
+
z-index: 1000;
|
|
4107
|
+
flex-grow: 1;
|
|
4108
|
+
visibility: visible !important;
|
|
4109
|
+
background-color: transparent;
|
|
4110
|
+
border-right: 0;
|
|
4111
|
+
border-left: 0;
|
|
4112
|
+
transition: none;
|
|
4113
|
+
transform: none;
|
|
4114
|
+
}
|
|
4115
|
+
.navbar-expand-md .offcanvas-top,
|
|
4116
|
+
.navbar-expand-md .offcanvas-bottom {
|
|
4117
|
+
height: auto;
|
|
4118
|
+
border-top: 0;
|
|
4119
|
+
border-bottom: 0;
|
|
4120
|
+
}
|
|
4121
|
+
.navbar-expand-md .offcanvas-body {
|
|
4122
|
+
display: flex;
|
|
4123
|
+
flex-grow: 0;
|
|
4124
|
+
padding: 0;
|
|
4125
|
+
overflow-y: visible;
|
|
4126
|
+
}
|
|
4009
4127
|
}
|
|
4010
4128
|
@media (min-width: 992px) {
|
|
4011
4129
|
.navbar-expand-lg {
|
|
@@ -4032,6 +4150,33 @@ textarea.form-control-lg {
|
|
|
4032
4150
|
.navbar-expand-lg .navbar-toggler {
|
|
4033
4151
|
display: none;
|
|
4034
4152
|
}
|
|
4153
|
+
.navbar-expand-lg .offcanvas-header {
|
|
4154
|
+
display: none;
|
|
4155
|
+
}
|
|
4156
|
+
.navbar-expand-lg .offcanvas {
|
|
4157
|
+
position: inherit;
|
|
4158
|
+
bottom: 0;
|
|
4159
|
+
z-index: 1000;
|
|
4160
|
+
flex-grow: 1;
|
|
4161
|
+
visibility: visible !important;
|
|
4162
|
+
background-color: transparent;
|
|
4163
|
+
border-right: 0;
|
|
4164
|
+
border-left: 0;
|
|
4165
|
+
transition: none;
|
|
4166
|
+
transform: none;
|
|
4167
|
+
}
|
|
4168
|
+
.navbar-expand-lg .offcanvas-top,
|
|
4169
|
+
.navbar-expand-lg .offcanvas-bottom {
|
|
4170
|
+
height: auto;
|
|
4171
|
+
border-top: 0;
|
|
4172
|
+
border-bottom: 0;
|
|
4173
|
+
}
|
|
4174
|
+
.navbar-expand-lg .offcanvas-body {
|
|
4175
|
+
display: flex;
|
|
4176
|
+
flex-grow: 0;
|
|
4177
|
+
padding: 0;
|
|
4178
|
+
overflow-y: visible;
|
|
4179
|
+
}
|
|
4035
4180
|
}
|
|
4036
4181
|
@media (min-width: 1200px) {
|
|
4037
4182
|
.navbar-expand-xl {
|
|
@@ -4058,6 +4203,33 @@ textarea.form-control-lg {
|
|
|
4058
4203
|
.navbar-expand-xl .navbar-toggler {
|
|
4059
4204
|
display: none;
|
|
4060
4205
|
}
|
|
4206
|
+
.navbar-expand-xl .offcanvas-header {
|
|
4207
|
+
display: none;
|
|
4208
|
+
}
|
|
4209
|
+
.navbar-expand-xl .offcanvas {
|
|
4210
|
+
position: inherit;
|
|
4211
|
+
bottom: 0;
|
|
4212
|
+
z-index: 1000;
|
|
4213
|
+
flex-grow: 1;
|
|
4214
|
+
visibility: visible !important;
|
|
4215
|
+
background-color: transparent;
|
|
4216
|
+
border-right: 0;
|
|
4217
|
+
border-left: 0;
|
|
4218
|
+
transition: none;
|
|
4219
|
+
transform: none;
|
|
4220
|
+
}
|
|
4221
|
+
.navbar-expand-xl .offcanvas-top,
|
|
4222
|
+
.navbar-expand-xl .offcanvas-bottom {
|
|
4223
|
+
height: auto;
|
|
4224
|
+
border-top: 0;
|
|
4225
|
+
border-bottom: 0;
|
|
4226
|
+
}
|
|
4227
|
+
.navbar-expand-xl .offcanvas-body {
|
|
4228
|
+
display: flex;
|
|
4229
|
+
flex-grow: 0;
|
|
4230
|
+
padding: 0;
|
|
4231
|
+
overflow-y: visible;
|
|
4232
|
+
}
|
|
4061
4233
|
}
|
|
4062
4234
|
@media (min-width: 1400px) {
|
|
4063
4235
|
.navbar-expand-xxl {
|
|
@@ -4084,6 +4256,33 @@ textarea.form-control-lg {
|
|
|
4084
4256
|
.navbar-expand-xxl .navbar-toggler {
|
|
4085
4257
|
display: none;
|
|
4086
4258
|
}
|
|
4259
|
+
.navbar-expand-xxl .offcanvas-header {
|
|
4260
|
+
display: none;
|
|
4261
|
+
}
|
|
4262
|
+
.navbar-expand-xxl .offcanvas {
|
|
4263
|
+
position: inherit;
|
|
4264
|
+
bottom: 0;
|
|
4265
|
+
z-index: 1000;
|
|
4266
|
+
flex-grow: 1;
|
|
4267
|
+
visibility: visible !important;
|
|
4268
|
+
background-color: transparent;
|
|
4269
|
+
border-right: 0;
|
|
4270
|
+
border-left: 0;
|
|
4271
|
+
transition: none;
|
|
4272
|
+
transform: none;
|
|
4273
|
+
}
|
|
4274
|
+
.navbar-expand-xxl .offcanvas-top,
|
|
4275
|
+
.navbar-expand-xxl .offcanvas-bottom {
|
|
4276
|
+
height: auto;
|
|
4277
|
+
border-top: 0;
|
|
4278
|
+
border-bottom: 0;
|
|
4279
|
+
}
|
|
4280
|
+
.navbar-expand-xxl .offcanvas-body {
|
|
4281
|
+
display: flex;
|
|
4282
|
+
flex-grow: 0;
|
|
4283
|
+
padding: 0;
|
|
4284
|
+
overflow-y: visible;
|
|
4285
|
+
}
|
|
4087
4286
|
}
|
|
4088
4287
|
.navbar-expand {
|
|
4089
4288
|
flex-wrap: nowrap;
|
|
@@ -4109,6 +4308,33 @@ textarea.form-control-lg {
|
|
|
4109
4308
|
.navbar-expand .navbar-toggler {
|
|
4110
4309
|
display: none;
|
|
4111
4310
|
}
|
|
4311
|
+
.navbar-expand .offcanvas-header {
|
|
4312
|
+
display: none;
|
|
4313
|
+
}
|
|
4314
|
+
.navbar-expand .offcanvas {
|
|
4315
|
+
position: inherit;
|
|
4316
|
+
bottom: 0;
|
|
4317
|
+
z-index: 1000;
|
|
4318
|
+
flex-grow: 1;
|
|
4319
|
+
visibility: visible !important;
|
|
4320
|
+
background-color: transparent;
|
|
4321
|
+
border-right: 0;
|
|
4322
|
+
border-left: 0;
|
|
4323
|
+
transition: none;
|
|
4324
|
+
transform: none;
|
|
4325
|
+
}
|
|
4326
|
+
.navbar-expand .offcanvas-top,
|
|
4327
|
+
.navbar-expand .offcanvas-bottom {
|
|
4328
|
+
height: auto;
|
|
4329
|
+
border-top: 0;
|
|
4330
|
+
border-bottom: 0;
|
|
4331
|
+
}
|
|
4332
|
+
.navbar-expand .offcanvas-body {
|
|
4333
|
+
display: flex;
|
|
4334
|
+
flex-grow: 0;
|
|
4335
|
+
padding: 0;
|
|
4336
|
+
overflow-y: visible;
|
|
4337
|
+
}
|
|
4112
4338
|
|
|
4113
4339
|
.navbar-light .navbar-brand {
|
|
4114
4340
|
color: rgba(0, 0, 0, 0.9);
|
|
@@ -4232,9 +4458,6 @@ textarea.form-control-lg {
|
|
|
4232
4458
|
margin-bottom: 0;
|
|
4233
4459
|
}
|
|
4234
4460
|
|
|
4235
|
-
.card-link:hover {
|
|
4236
|
-
text-decoration: none;
|
|
4237
|
-
}
|
|
4238
4461
|
.card-link + .card-link {
|
|
4239
4462
|
margin-left: 1rem;
|
|
4240
4463
|
}
|
|
@@ -5104,10 +5327,10 @@ textarea.form-control-lg {
|
|
|
5104
5327
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
5105
5328
|
border-radius: 0.25rem;
|
|
5106
5329
|
}
|
|
5107
|
-
.toast
|
|
5330
|
+
.toast.showing {
|
|
5108
5331
|
opacity: 0;
|
|
5109
5332
|
}
|
|
5110
|
-
.toast.
|
|
5333
|
+
.toast:not(.show) {
|
|
5111
5334
|
display: none;
|
|
5112
5335
|
}
|
|
5113
5336
|
|
|
@@ -5141,23 +5364,16 @@ textarea.form-control-lg {
|
|
|
5141
5364
|
word-wrap: break-word;
|
|
5142
5365
|
}
|
|
5143
5366
|
|
|
5144
|
-
.modal-open {
|
|
5145
|
-
overflow: hidden;
|
|
5146
|
-
}
|
|
5147
|
-
.modal-open .modal {
|
|
5148
|
-
overflow-x: hidden;
|
|
5149
|
-
overflow-y: auto;
|
|
5150
|
-
}
|
|
5151
|
-
|
|
5152
5367
|
.modal {
|
|
5153
5368
|
position: fixed;
|
|
5154
5369
|
top: 0;
|
|
5155
5370
|
left: 0;
|
|
5156
|
-
z-index:
|
|
5371
|
+
z-index: 1055;
|
|
5157
5372
|
display: none;
|
|
5158
5373
|
width: 100%;
|
|
5159
5374
|
height: 100%;
|
|
5160
|
-
overflow: hidden;
|
|
5375
|
+
overflow-x: hidden;
|
|
5376
|
+
overflow-y: auto;
|
|
5161
5377
|
outline: 0;
|
|
5162
5378
|
}
|
|
5163
5379
|
|
|
@@ -5217,7 +5433,7 @@ textarea.form-control-lg {
|
|
|
5217
5433
|
position: fixed;
|
|
5218
5434
|
top: 0;
|
|
5219
5435
|
left: 0;
|
|
5220
|
-
z-index:
|
|
5436
|
+
z-index: 1050;
|
|
5221
5437
|
width: 100vw;
|
|
5222
5438
|
height: 100vh;
|
|
5223
5439
|
background-color: #000;
|
|
@@ -5647,7 +5863,7 @@ textarea.form-control-lg {
|
|
|
5647
5863
|
margin-bottom: 0;
|
|
5648
5864
|
font-size: 0.9rem;
|
|
5649
5865
|
background-color: #f0f0f0;
|
|
5650
|
-
border-bottom: 1px solid
|
|
5866
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
|
5651
5867
|
border-top-left-radius: calc(0.3rem - 1px);
|
|
5652
5868
|
border-top-right-radius: calc(0.3rem - 1px);
|
|
5653
5869
|
}
|
|
@@ -5922,7 +6138,7 @@ textarea.form-control-lg {
|
|
|
5922
6138
|
.offcanvas {
|
|
5923
6139
|
position: fixed;
|
|
5924
6140
|
bottom: 0;
|
|
5925
|
-
z-index:
|
|
6141
|
+
z-index: 1045;
|
|
5926
6142
|
display: flex;
|
|
5927
6143
|
flex-direction: column;
|
|
5928
6144
|
max-width: 100%;
|
|
@@ -5938,6 +6154,22 @@ textarea.form-control-lg {
|
|
|
5938
6154
|
}
|
|
5939
6155
|
}
|
|
5940
6156
|
|
|
6157
|
+
.offcanvas-backdrop {
|
|
6158
|
+
position: fixed;
|
|
6159
|
+
top: 0;
|
|
6160
|
+
left: 0;
|
|
6161
|
+
z-index: 1040;
|
|
6162
|
+
width: 100vw;
|
|
6163
|
+
height: 100vh;
|
|
6164
|
+
background-color: #000;
|
|
6165
|
+
}
|
|
6166
|
+
.offcanvas-backdrop.fade {
|
|
6167
|
+
opacity: 0;
|
|
6168
|
+
}
|
|
6169
|
+
.offcanvas-backdrop.show {
|
|
6170
|
+
opacity: 0.5;
|
|
6171
|
+
}
|
|
6172
|
+
|
|
5941
6173
|
.offcanvas-header {
|
|
5942
6174
|
display: flex;
|
|
5943
6175
|
align-items: center;
|
|
@@ -5946,7 +6178,9 @@ textarea.form-control-lg {
|
|
|
5946
6178
|
}
|
|
5947
6179
|
.offcanvas-header .btn-close {
|
|
5948
6180
|
padding: 0.5rem 0.5rem;
|
|
5949
|
-
margin: -0.5rem
|
|
6181
|
+
margin-top: -0.5rem;
|
|
6182
|
+
margin-right: -0.5rem;
|
|
6183
|
+
margin-bottom: -0.5rem;
|
|
5950
6184
|
}
|
|
5951
6185
|
|
|
5952
6186
|
.offcanvas-title {
|
|
@@ -5999,6 +6233,51 @@ textarea.form-control-lg {
|
|
|
5999
6233
|
transform: none;
|
|
6000
6234
|
}
|
|
6001
6235
|
|
|
6236
|
+
.placeholder {
|
|
6237
|
+
display: inline-block;
|
|
6238
|
+
min-height: 1em;
|
|
6239
|
+
vertical-align: middle;
|
|
6240
|
+
cursor: wait;
|
|
6241
|
+
background-color: currentColor;
|
|
6242
|
+
opacity: 0.5;
|
|
6243
|
+
}
|
|
6244
|
+
.placeholder.btn::before {
|
|
6245
|
+
display: inline-block;
|
|
6246
|
+
content: "";
|
|
6247
|
+
}
|
|
6248
|
+
|
|
6249
|
+
.placeholder-xs {
|
|
6250
|
+
min-height: 0.6em;
|
|
6251
|
+
}
|
|
6252
|
+
|
|
6253
|
+
.placeholder-sm {
|
|
6254
|
+
min-height: 0.8em;
|
|
6255
|
+
}
|
|
6256
|
+
|
|
6257
|
+
.placeholder-lg {
|
|
6258
|
+
min-height: 1.2em;
|
|
6259
|
+
}
|
|
6260
|
+
|
|
6261
|
+
.placeholder-glow .placeholder {
|
|
6262
|
+
animation: placeholder-glow 2s ease-in-out infinite;
|
|
6263
|
+
}
|
|
6264
|
+
|
|
6265
|
+
@keyframes placeholder-glow {
|
|
6266
|
+
50% {
|
|
6267
|
+
opacity: 0.2;
|
|
6268
|
+
}
|
|
6269
|
+
}
|
|
6270
|
+
.placeholder-wave {
|
|
6271
|
+
mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
|
|
6272
|
+
mask-size: 200% 100%;
|
|
6273
|
+
animation: placeholder-wave 2s linear infinite;
|
|
6274
|
+
}
|
|
6275
|
+
|
|
6276
|
+
@keyframes placeholder-wave {
|
|
6277
|
+
100% {
|
|
6278
|
+
mask-position: -200% 0%;
|
|
6279
|
+
}
|
|
6280
|
+
}
|
|
6002
6281
|
.clearfix::after {
|
|
6003
6282
|
display: block;
|
|
6004
6283
|
clear: both;
|
|
@@ -6151,6 +6430,20 @@ textarea.form-control-lg {
|
|
|
6151
6430
|
z-index: 1020;
|
|
6152
6431
|
}
|
|
6153
6432
|
}
|
|
6433
|
+
.hstack {
|
|
6434
|
+
display: flex;
|
|
6435
|
+
flex-direction: row;
|
|
6436
|
+
align-items: center;
|
|
6437
|
+
align-self: stretch;
|
|
6438
|
+
}
|
|
6439
|
+
|
|
6440
|
+
.vstack {
|
|
6441
|
+
display: flex;
|
|
6442
|
+
flex: 1 1 auto;
|
|
6443
|
+
flex-direction: column;
|
|
6444
|
+
align-self: stretch;
|
|
6445
|
+
}
|
|
6446
|
+
|
|
6154
6447
|
.visually-hidden,
|
|
6155
6448
|
.visually-hidden-focusable:not(:focus):not(:focus-within) {
|
|
6156
6449
|
position: absolute !important;
|
|
@@ -6180,6 +6473,15 @@ textarea.form-control-lg {
|
|
|
6180
6473
|
white-space: nowrap;
|
|
6181
6474
|
}
|
|
6182
6475
|
|
|
6476
|
+
.vr {
|
|
6477
|
+
display: inline-block;
|
|
6478
|
+
align-self: stretch;
|
|
6479
|
+
width: 1px;
|
|
6480
|
+
min-height: 1em;
|
|
6481
|
+
background-color: currentColor;
|
|
6482
|
+
opacity: 0.25;
|
|
6483
|
+
}
|
|
6484
|
+
|
|
6183
6485
|
.align-baseline {
|
|
6184
6486
|
vertical-align: baseline !important;
|
|
6185
6487
|
}
|
|
@@ -6216,6 +6518,26 @@ textarea.form-control-lg {
|
|
|
6216
6518
|
float: none !important;
|
|
6217
6519
|
}
|
|
6218
6520
|
|
|
6521
|
+
.opacity-0 {
|
|
6522
|
+
opacity: 0 !important;
|
|
6523
|
+
}
|
|
6524
|
+
|
|
6525
|
+
.opacity-25 {
|
|
6526
|
+
opacity: 0.25 !important;
|
|
6527
|
+
}
|
|
6528
|
+
|
|
6529
|
+
.opacity-50 {
|
|
6530
|
+
opacity: 0.5 !important;
|
|
6531
|
+
}
|
|
6532
|
+
|
|
6533
|
+
.opacity-75 {
|
|
6534
|
+
opacity: 0.75 !important;
|
|
6535
|
+
}
|
|
6536
|
+
|
|
6537
|
+
.opacity-100 {
|
|
6538
|
+
opacity: 1 !important;
|
|
6539
|
+
}
|
|
6540
|
+
|
|
6219
6541
|
.overflow-auto {
|
|
6220
6542
|
overflow: auto !important;
|
|
6221
6543
|
}
|
|
@@ -7238,105 +7560,176 @@ textarea.form-control-lg {
|
|
|
7238
7560
|
|
|
7239
7561
|
/* rtl:end:remove */
|
|
7240
7562
|
.text-primary {
|
|
7241
|
-
|
|
7563
|
+
--bs-text-opacity: 1;
|
|
7564
|
+
color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
|
|
7242
7565
|
}
|
|
7243
7566
|
|
|
7244
7567
|
.text-secondary {
|
|
7245
|
-
|
|
7568
|
+
--bs-text-opacity: 1;
|
|
7569
|
+
color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
|
|
7246
7570
|
}
|
|
7247
7571
|
|
|
7248
7572
|
.text-success {
|
|
7249
|
-
|
|
7573
|
+
--bs-text-opacity: 1;
|
|
7574
|
+
color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
|
|
7250
7575
|
}
|
|
7251
7576
|
|
|
7252
7577
|
.text-info {
|
|
7253
|
-
|
|
7578
|
+
--bs-text-opacity: 1;
|
|
7579
|
+
color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
|
|
7254
7580
|
}
|
|
7255
7581
|
|
|
7256
7582
|
.text-warning {
|
|
7257
|
-
|
|
7583
|
+
--bs-text-opacity: 1;
|
|
7584
|
+
color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
|
|
7258
7585
|
}
|
|
7259
7586
|
|
|
7260
7587
|
.text-danger {
|
|
7261
|
-
|
|
7588
|
+
--bs-text-opacity: 1;
|
|
7589
|
+
color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
|
|
7262
7590
|
}
|
|
7263
7591
|
|
|
7264
7592
|
.text-light {
|
|
7265
|
-
|
|
7593
|
+
--bs-text-opacity: 1;
|
|
7594
|
+
color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
|
|
7266
7595
|
}
|
|
7267
7596
|
|
|
7268
7597
|
.text-dark {
|
|
7269
|
-
|
|
7598
|
+
--bs-text-opacity: 1;
|
|
7599
|
+
color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
|
|
7600
|
+
}
|
|
7601
|
+
|
|
7602
|
+
.text-black {
|
|
7603
|
+
--bs-text-opacity: 1;
|
|
7604
|
+
color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
|
|
7270
7605
|
}
|
|
7271
7606
|
|
|
7272
7607
|
.text-white {
|
|
7273
|
-
|
|
7608
|
+
--bs-text-opacity: 1;
|
|
7609
|
+
color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
|
|
7274
7610
|
}
|
|
7275
7611
|
|
|
7276
7612
|
.text-body {
|
|
7277
|
-
|
|
7613
|
+
--bs-text-opacity: 1;
|
|
7614
|
+
color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
|
|
7278
7615
|
}
|
|
7279
7616
|
|
|
7280
7617
|
.text-muted {
|
|
7618
|
+
--bs-text-opacity: 1;
|
|
7281
7619
|
color: #6c757d !important;
|
|
7282
7620
|
}
|
|
7283
7621
|
|
|
7284
7622
|
.text-black-50 {
|
|
7623
|
+
--bs-text-opacity: 1;
|
|
7285
7624
|
color: rgba(0, 0, 0, 0.5) !important;
|
|
7286
7625
|
}
|
|
7287
7626
|
|
|
7288
7627
|
.text-white-50 {
|
|
7628
|
+
--bs-text-opacity: 1;
|
|
7289
7629
|
color: rgba(255, 255, 255, 0.5) !important;
|
|
7290
7630
|
}
|
|
7291
7631
|
|
|
7292
7632
|
.text-reset {
|
|
7633
|
+
--bs-text-opacity: 1;
|
|
7293
7634
|
color: inherit !important;
|
|
7294
7635
|
}
|
|
7295
7636
|
|
|
7637
|
+
.text-opacity-25 {
|
|
7638
|
+
--bs-text-opacity: 0.25;
|
|
7639
|
+
}
|
|
7640
|
+
|
|
7641
|
+
.text-opacity-50 {
|
|
7642
|
+
--bs-text-opacity: 0.5;
|
|
7643
|
+
}
|
|
7644
|
+
|
|
7645
|
+
.text-opacity-75 {
|
|
7646
|
+
--bs-text-opacity: 0.75;
|
|
7647
|
+
}
|
|
7648
|
+
|
|
7649
|
+
.text-opacity-100 {
|
|
7650
|
+
--bs-text-opacity: 1;
|
|
7651
|
+
}
|
|
7652
|
+
|
|
7296
7653
|
.bg-primary {
|
|
7297
|
-
|
|
7654
|
+
--bs-bg-opacity: 1;
|
|
7655
|
+
background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
|
|
7298
7656
|
}
|
|
7299
7657
|
|
|
7300
7658
|
.bg-secondary {
|
|
7301
|
-
|
|
7659
|
+
--bs-bg-opacity: 1;
|
|
7660
|
+
background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
|
|
7302
7661
|
}
|
|
7303
7662
|
|
|
7304
7663
|
.bg-success {
|
|
7305
|
-
|
|
7664
|
+
--bs-bg-opacity: 1;
|
|
7665
|
+
background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
|
|
7306
7666
|
}
|
|
7307
7667
|
|
|
7308
7668
|
.bg-info {
|
|
7309
|
-
|
|
7669
|
+
--bs-bg-opacity: 1;
|
|
7670
|
+
background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
|
|
7310
7671
|
}
|
|
7311
7672
|
|
|
7312
7673
|
.bg-warning {
|
|
7313
|
-
|
|
7674
|
+
--bs-bg-opacity: 1;
|
|
7675
|
+
background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
|
|
7314
7676
|
}
|
|
7315
7677
|
|
|
7316
7678
|
.bg-danger {
|
|
7317
|
-
|
|
7679
|
+
--bs-bg-opacity: 1;
|
|
7680
|
+
background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
|
|
7318
7681
|
}
|
|
7319
7682
|
|
|
7320
7683
|
.bg-light {
|
|
7321
|
-
|
|
7684
|
+
--bs-bg-opacity: 1;
|
|
7685
|
+
background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
|
|
7322
7686
|
}
|
|
7323
7687
|
|
|
7324
7688
|
.bg-dark {
|
|
7325
|
-
|
|
7689
|
+
--bs-bg-opacity: 1;
|
|
7690
|
+
background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
|
|
7326
7691
|
}
|
|
7327
7692
|
|
|
7328
|
-
.bg-
|
|
7329
|
-
|
|
7693
|
+
.bg-black {
|
|
7694
|
+
--bs-bg-opacity: 1;
|
|
7695
|
+
background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
|
|
7330
7696
|
}
|
|
7331
7697
|
|
|
7332
7698
|
.bg-white {
|
|
7333
|
-
|
|
7699
|
+
--bs-bg-opacity: 1;
|
|
7700
|
+
background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
|
|
7701
|
+
}
|
|
7702
|
+
|
|
7703
|
+
.bg-body {
|
|
7704
|
+
--bs-bg-opacity: 1;
|
|
7705
|
+
background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
|
|
7334
7706
|
}
|
|
7335
7707
|
|
|
7336
7708
|
.bg-transparent {
|
|
7709
|
+
--bs-bg-opacity: 1;
|
|
7337
7710
|
background-color: transparent !important;
|
|
7338
7711
|
}
|
|
7339
7712
|
|
|
7713
|
+
.bg-opacity-10 {
|
|
7714
|
+
--bs-bg-opacity: 0.1;
|
|
7715
|
+
}
|
|
7716
|
+
|
|
7717
|
+
.bg-opacity-25 {
|
|
7718
|
+
--bs-bg-opacity: 0.25;
|
|
7719
|
+
}
|
|
7720
|
+
|
|
7721
|
+
.bg-opacity-50 {
|
|
7722
|
+
--bs-bg-opacity: 0.5;
|
|
7723
|
+
}
|
|
7724
|
+
|
|
7725
|
+
.bg-opacity-75 {
|
|
7726
|
+
--bs-bg-opacity: 0.75;
|
|
7727
|
+
}
|
|
7728
|
+
|
|
7729
|
+
.bg-opacity-100 {
|
|
7730
|
+
--bs-bg-opacity: 1;
|
|
7731
|
+
}
|
|
7732
|
+
|
|
7340
7733
|
.bg-gradient {
|
|
7341
7734
|
background-image: var(--bs-gradient) !important;
|
|
7342
7735
|
}
|
|
@@ -10936,1116 +11329,101 @@ a.full-box-link {
|
|
|
10936
11329
|
cursor: pointer;
|
|
10937
11330
|
}
|
|
10938
11331
|
|
|
10939
|
-
.
|
|
10940
|
-
|
|
10941
|
-
|
|
10942
|
-
|
|
10943
|
-
grid-template-columns: 1fr 99fr 1fr;
|
|
10944
|
-
padding: 1em;
|
|
10945
|
-
overflow-y: hidden;
|
|
10946
|
-
background: #fff;
|
|
10947
|
-
box-shadow: 0 0 0.625em #d9d9d9;
|
|
10948
|
-
pointer-events: all;
|
|
11332
|
+
.alerts .alert {
|
|
11333
|
+
margin-bottom: 0;
|
|
11334
|
+
border-radius: 0;
|
|
11335
|
+
border: 0;
|
|
10949
11336
|
}
|
|
10950
|
-
|
|
10951
|
-
|
|
11337
|
+
|
|
11338
|
+
.alert.callout {
|
|
11339
|
+
padding: 20px;
|
|
11340
|
+
margin: 20px 0;
|
|
11341
|
+
border: 1px solid #e9ecef;
|
|
11342
|
+
border-left-width: 5px;
|
|
11343
|
+
border-radius: 3px;
|
|
11344
|
+
background-color: #fff;
|
|
11345
|
+
margin-top: 0px;
|
|
10952
11346
|
}
|
|
10953
|
-
.
|
|
10954
|
-
margin:
|
|
10955
|
-
|
|
10956
|
-
font-size: 1em;
|
|
10957
|
-
text-align: initial;
|
|
11347
|
+
.alert.callout h4, .alert.callout .h4 {
|
|
11348
|
+
margin-top: 0;
|
|
11349
|
+
margin-bottom: 5px;
|
|
10958
11350
|
}
|
|
10959
|
-
.
|
|
10960
|
-
|
|
11351
|
+
.alert.callout p:last-child {
|
|
11352
|
+
margin-bottom: 0;
|
|
10961
11353
|
}
|
|
10962
|
-
.
|
|
10963
|
-
|
|
10964
|
-
margin: 0.5em;
|
|
10965
|
-
font-size: 1em;
|
|
10966
|
-
}
|
|
10967
|
-
.swal2-popup.swal2-toast .swal2-validation-message {
|
|
10968
|
-
font-size: 1em;
|
|
10969
|
-
}
|
|
10970
|
-
.swal2-popup.swal2-toast .swal2-footer {
|
|
10971
|
-
margin: 0.5em 0 0;
|
|
10972
|
-
padding: 0.5em 0 0;
|
|
10973
|
-
font-size: 0.8em;
|
|
10974
|
-
}
|
|
10975
|
-
.swal2-popup.swal2-toast .swal2-close {
|
|
10976
|
-
grid-column: 3/3;
|
|
10977
|
-
grid-row: 1/99;
|
|
10978
|
-
align-self: center;
|
|
10979
|
-
width: 0.8em;
|
|
10980
|
-
height: 0.8em;
|
|
10981
|
-
margin: 0;
|
|
10982
|
-
font-size: 2em;
|
|
10983
|
-
}
|
|
10984
|
-
.swal2-popup.swal2-toast .swal2-html-container {
|
|
10985
|
-
margin: 1em;
|
|
10986
|
-
padding: 0;
|
|
10987
|
-
font-size: 1em;
|
|
10988
|
-
text-align: initial;
|
|
10989
|
-
}
|
|
10990
|
-
.swal2-popup.swal2-toast .swal2-html-container:empty {
|
|
10991
|
-
padding: 0;
|
|
10992
|
-
}
|
|
10993
|
-
.swal2-popup.swal2-toast .swal2-loader {
|
|
10994
|
-
grid-column: 1;
|
|
10995
|
-
grid-row: 1/99;
|
|
10996
|
-
align-self: center;
|
|
10997
|
-
width: 2em;
|
|
10998
|
-
height: 2em;
|
|
10999
|
-
margin: 0.25em;
|
|
11000
|
-
}
|
|
11001
|
-
.swal2-popup.swal2-toast .swal2-icon {
|
|
11002
|
-
grid-column: 1;
|
|
11003
|
-
grid-row: 1/99;
|
|
11004
|
-
align-self: center;
|
|
11005
|
-
width: 2em;
|
|
11006
|
-
min-width: 2em;
|
|
11007
|
-
height: 2em;
|
|
11008
|
-
margin: 0 0.5em 0 0;
|
|
11009
|
-
}
|
|
11010
|
-
.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
|
|
11011
|
-
display: flex;
|
|
11012
|
-
align-items: center;
|
|
11013
|
-
font-size: 1.8em;
|
|
11014
|
-
font-weight: bold;
|
|
11015
|
-
}
|
|
11016
|
-
.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
|
|
11017
|
-
width: 2em;
|
|
11018
|
-
height: 2em;
|
|
11019
|
-
}
|
|
11020
|
-
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
|
|
11021
|
-
top: 0.875em;
|
|
11022
|
-
width: 1.375em;
|
|
11023
|
-
}
|
|
11024
|
-
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
|
|
11025
|
-
left: 0.3125em;
|
|
11026
|
-
}
|
|
11027
|
-
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
|
|
11028
|
-
right: 0.3125em;
|
|
11029
|
-
}
|
|
11030
|
-
.swal2-popup.swal2-toast .swal2-actions {
|
|
11031
|
-
justify-content: flex-start;
|
|
11032
|
-
height: auto;
|
|
11033
|
-
margin: 0;
|
|
11034
|
-
margin-top: 0.3125em;
|
|
11035
|
-
padding: 0;
|
|
11036
|
-
}
|
|
11037
|
-
.swal2-popup.swal2-toast .swal2-styled {
|
|
11038
|
-
margin: 0.25em 0.5em;
|
|
11039
|
-
padding: 0.4em 0.6em;
|
|
11040
|
-
font-size: 1em;
|
|
11041
|
-
}
|
|
11042
|
-
.swal2-popup.swal2-toast .swal2-styled:focus {
|
|
11043
|
-
box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(100, 150, 200, 0.5);
|
|
11044
|
-
}
|
|
11045
|
-
.swal2-popup.swal2-toast .swal2-success {
|
|
11046
|
-
border-color: #198754;
|
|
11047
|
-
}
|
|
11048
|
-
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
|
|
11049
|
-
position: absolute;
|
|
11050
|
-
width: 1.6em;
|
|
11051
|
-
height: 3em;
|
|
11052
|
-
transform: rotate(45deg);
|
|
11053
|
-
border-radius: 50%;
|
|
11054
|
-
}
|
|
11055
|
-
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
|
|
11056
|
-
top: -0.8em;
|
|
11057
|
-
left: -0.5em;
|
|
11058
|
-
transform: rotate(-45deg);
|
|
11059
|
-
transform-origin: 2em 2em;
|
|
11060
|
-
border-radius: 4em 0 0 4em;
|
|
11061
|
-
}
|
|
11062
|
-
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
|
|
11063
|
-
top: -0.25em;
|
|
11064
|
-
left: 0.9375em;
|
|
11065
|
-
transform-origin: 0 1.5em;
|
|
11066
|
-
border-radius: 0 4em 4em 0;
|
|
11067
|
-
}
|
|
11068
|
-
.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
|
|
11069
|
-
width: 2em;
|
|
11070
|
-
height: 2em;
|
|
11071
|
-
}
|
|
11072
|
-
.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
|
|
11073
|
-
top: 0;
|
|
11074
|
-
left: 0.4375em;
|
|
11075
|
-
width: 0.4375em;
|
|
11076
|
-
height: 2.6875em;
|
|
11077
|
-
}
|
|
11078
|
-
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
|
|
11079
|
-
height: 0.3125em;
|
|
11080
|
-
}
|
|
11081
|
-
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
|
|
11082
|
-
top: 1.125em;
|
|
11083
|
-
left: 0.1875em;
|
|
11084
|
-
width: 0.75em;
|
|
11085
|
-
}
|
|
11086
|
-
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
|
|
11087
|
-
top: 0.9375em;
|
|
11088
|
-
right: 0.1875em;
|
|
11089
|
-
width: 1.375em;
|
|
11090
|
-
}
|
|
11091
|
-
.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
|
|
11092
|
-
animation: swal2-toast-animate-success-line-tip 0.75s;
|
|
11093
|
-
}
|
|
11094
|
-
.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
|
|
11095
|
-
animation: swal2-toast-animate-success-line-long 0.75s;
|
|
11096
|
-
}
|
|
11097
|
-
.swal2-popup.swal2-toast.swal2-show {
|
|
11098
|
-
animation: swal2-toast-show 0.5s;
|
|
11099
|
-
}
|
|
11100
|
-
.swal2-popup.swal2-toast.swal2-hide {
|
|
11101
|
-
animation: swal2-toast-hide 0.1s forwards;
|
|
11102
|
-
}
|
|
11103
|
-
|
|
11104
|
-
.swal2-container {
|
|
11105
|
-
display: grid;
|
|
11106
|
-
position: fixed;
|
|
11107
|
-
z-index: 1060;
|
|
11108
|
-
top: 0;
|
|
11109
|
-
right: 0;
|
|
11110
|
-
bottom: 0;
|
|
11111
|
-
left: 0;
|
|
11112
|
-
box-sizing: border-box;
|
|
11113
|
-
grid-template-areas: "top-start top top-end" "center-start center center-end" "bottom-start bottom-center bottom-end" "gap gap gap";
|
|
11114
|
-
grid-template-rows: auto auto auto 0.625em;
|
|
11115
|
-
height: 100%;
|
|
11116
|
-
padding: 0.625em 0.625em 0;
|
|
11117
|
-
overflow-x: hidden;
|
|
11118
|
-
transition: background-color 0.1s;
|
|
11119
|
-
-webkit-overflow-scrolling: touch;
|
|
11120
|
-
}
|
|
11121
|
-
.swal2-container::after {
|
|
11122
|
-
content: "";
|
|
11123
|
-
grid-column: 1/4;
|
|
11124
|
-
grid-row: 4;
|
|
11125
|
-
height: 0.625em;
|
|
11126
|
-
}
|
|
11127
|
-
.swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
|
|
11128
|
-
background: rgba(0, 0, 0, 0.4);
|
|
11129
|
-
}
|
|
11130
|
-
.swal2-container.swal2-backdrop-hide {
|
|
11131
|
-
background: transparent !important;
|
|
11132
|
-
}
|
|
11133
|
-
.swal2-container.swal2-top-start, .swal2-container.swal2-center-start, .swal2-container.swal2-bottom-start {
|
|
11134
|
-
grid-template-columns: minmax(0, 1fr) auto auto;
|
|
11135
|
-
}
|
|
11136
|
-
.swal2-container.swal2-top, .swal2-container.swal2-center, .swal2-container.swal2-bottom {
|
|
11137
|
-
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
11138
|
-
}
|
|
11139
|
-
.swal2-container.swal2-top-end, .swal2-container.swal2-center-end, .swal2-container.swal2-bottom-end {
|
|
11140
|
-
grid-template-columns: auto auto minmax(0, 1fr);
|
|
11141
|
-
}
|
|
11142
|
-
.swal2-container.swal2-top-start > .swal2-popup {
|
|
11143
|
-
align-self: start;
|
|
11144
|
-
}
|
|
11145
|
-
.swal2-container.swal2-top > .swal2-popup {
|
|
11146
|
-
grid-column: 2;
|
|
11147
|
-
align-self: start;
|
|
11148
|
-
justify-self: center;
|
|
11149
|
-
}
|
|
11150
|
-
.swal2-container.swal2-top-end > .swal2-popup, .swal2-container.swal2-top-right > .swal2-popup {
|
|
11151
|
-
grid-column: 3;
|
|
11152
|
-
align-self: start;
|
|
11153
|
-
justify-self: end;
|
|
11154
|
-
}
|
|
11155
|
-
.swal2-container.swal2-center-start > .swal2-popup, .swal2-container.swal2-center-left > .swal2-popup {
|
|
11156
|
-
grid-row: 2;
|
|
11157
|
-
align-self: center;
|
|
11158
|
-
}
|
|
11159
|
-
.swal2-container.swal2-center > .swal2-popup {
|
|
11160
|
-
grid-column: 2;
|
|
11161
|
-
grid-row: 2;
|
|
11162
|
-
align-self: center;
|
|
11163
|
-
justify-self: center;
|
|
11164
|
-
}
|
|
11165
|
-
.swal2-container.swal2-center-end > .swal2-popup, .swal2-container.swal2-center-right > .swal2-popup {
|
|
11166
|
-
grid-column: 3;
|
|
11167
|
-
grid-row: 2;
|
|
11168
|
-
align-self: center;
|
|
11169
|
-
justify-self: end;
|
|
11170
|
-
}
|
|
11171
|
-
.swal2-container.swal2-bottom-start > .swal2-popup, .swal2-container.swal2-bottom-left > .swal2-popup {
|
|
11172
|
-
grid-column: 1;
|
|
11173
|
-
grid-row: 3;
|
|
11174
|
-
align-self: end;
|
|
11175
|
-
}
|
|
11176
|
-
.swal2-container.swal2-bottom > .swal2-popup {
|
|
11177
|
-
grid-column: 2;
|
|
11178
|
-
grid-row: 3;
|
|
11179
|
-
justify-self: center;
|
|
11180
|
-
align-self: end;
|
|
11181
|
-
}
|
|
11182
|
-
.swal2-container.swal2-bottom-end > .swal2-popup, .swal2-container.swal2-bottom-right > .swal2-popup {
|
|
11183
|
-
grid-column: 3;
|
|
11184
|
-
grid-row: 3;
|
|
11185
|
-
align-self: end;
|
|
11186
|
-
justify-self: end;
|
|
11187
|
-
}
|
|
11188
|
-
.swal2-container.swal2-grow-row > .swal2-popup, .swal2-container.swal2-grow-fullscreen > .swal2-popup {
|
|
11189
|
-
grid-column: 1/4;
|
|
11190
|
-
width: 100%;
|
|
11191
|
-
}
|
|
11192
|
-
.swal2-container.swal2-grow-column > .swal2-popup, .swal2-container.swal2-grow-fullscreen > .swal2-popup {
|
|
11193
|
-
grid-row: 1/4;
|
|
11194
|
-
align-self: stretch;
|
|
11195
|
-
}
|
|
11196
|
-
.swal2-container.swal2-no-transition {
|
|
11197
|
-
transition: none !important;
|
|
11198
|
-
}
|
|
11199
|
-
|
|
11200
|
-
.swal2-popup {
|
|
11201
|
-
display: none;
|
|
11202
|
-
position: relative;
|
|
11203
|
-
box-sizing: border-box;
|
|
11204
|
-
width: 32em;
|
|
11205
|
-
max-width: 100%;
|
|
11206
|
-
padding: 0 0 1.25em;
|
|
11207
|
-
border: none;
|
|
11208
|
-
border-radius: 5px;
|
|
11209
|
-
background: #fff;
|
|
11210
|
-
font-family: inherit;
|
|
11211
|
-
font-size: 1rem;
|
|
11212
|
-
}
|
|
11213
|
-
.swal2-popup:focus {
|
|
11214
|
-
outline: none;
|
|
11215
|
-
}
|
|
11216
|
-
.swal2-popup.swal2-loading {
|
|
11217
|
-
overflow-y: hidden;
|
|
11218
|
-
}
|
|
11219
|
-
|
|
11220
|
-
.swal2-title {
|
|
11221
|
-
position: relative;
|
|
11222
|
-
max-width: 100%;
|
|
11223
|
-
margin: 0;
|
|
11224
|
-
padding: 0.8em 1em 0;
|
|
11225
|
-
color: #595959;
|
|
11226
|
-
font-size: 1.875em;
|
|
11227
|
-
font-weight: 600;
|
|
11228
|
-
text-align: center;
|
|
11229
|
-
text-transform: none;
|
|
11230
|
-
word-wrap: break-word;
|
|
11231
|
-
}
|
|
11232
|
-
|
|
11233
|
-
.swal2-actions {
|
|
11234
|
-
display: flex;
|
|
11235
|
-
z-index: 1;
|
|
11236
|
-
box-sizing: border-box;
|
|
11237
|
-
flex-wrap: wrap;
|
|
11238
|
-
align-items: center;
|
|
11239
|
-
justify-content: center;
|
|
11240
|
-
width: 100%;
|
|
11241
|
-
margin: 1.25em auto 0;
|
|
11242
|
-
padding: 0;
|
|
11243
|
-
}
|
|
11244
|
-
.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
|
|
11245
|
-
opacity: 0.4;
|
|
11246
|
-
}
|
|
11247
|
-
.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
|
|
11248
|
-
background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
|
|
11249
|
-
}
|
|
11250
|
-
.swal2-actions:not(.swal2-loading) .swal2-styled:active {
|
|
11251
|
-
background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
|
|
11252
|
-
}
|
|
11253
|
-
|
|
11254
|
-
.swal2-loader {
|
|
11255
|
-
display: none;
|
|
11256
|
-
align-items: center;
|
|
11257
|
-
justify-content: center;
|
|
11258
|
-
width: 2.2em;
|
|
11259
|
-
height: 2.2em;
|
|
11260
|
-
margin: 0 1.875em;
|
|
11261
|
-
animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
|
|
11262
|
-
border-width: 0.25em;
|
|
11263
|
-
border-style: solid;
|
|
11264
|
-
border-radius: 100%;
|
|
11265
|
-
border-color: #2778c4 transparent #2778c4 transparent;
|
|
11266
|
-
}
|
|
11267
|
-
|
|
11268
|
-
.swal2-styled {
|
|
11269
|
-
margin: 0.3125em;
|
|
11270
|
-
padding: 0.625em 1.1em;
|
|
11271
|
-
transition: box-shadow 0.1s;
|
|
11272
|
-
box-shadow: 0 0 0 3px transparent;
|
|
11273
|
-
font-weight: 500;
|
|
11274
|
-
}
|
|
11275
|
-
.swal2-styled:not([disabled]) {
|
|
11276
|
-
cursor: pointer;
|
|
11277
|
-
}
|
|
11278
|
-
.swal2-styled.swal2-confirm {
|
|
11279
|
-
border: 0;
|
|
11280
|
-
border-radius: 0.25em;
|
|
11281
|
-
background: initial;
|
|
11282
|
-
background-color: #7367f0;
|
|
11283
|
-
color: #fff;
|
|
11284
|
-
font-size: 1em;
|
|
11285
|
-
}
|
|
11286
|
-
.swal2-styled.swal2-confirm:focus {
|
|
11287
|
-
box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.5);
|
|
11288
|
-
}
|
|
11289
|
-
.swal2-styled.swal2-deny {
|
|
11290
|
-
border: 0;
|
|
11291
|
-
border-radius: 0.25em;
|
|
11292
|
-
background: initial;
|
|
11293
|
-
background-color: #ea5455;
|
|
11294
|
-
color: #fff;
|
|
11295
|
-
font-size: 1em;
|
|
11296
|
-
}
|
|
11297
|
-
.swal2-styled.swal2-deny:focus {
|
|
11298
|
-
box-shadow: 0 0 0 3px rgba(234, 84, 85, 0.5);
|
|
11299
|
-
}
|
|
11300
|
-
.swal2-styled.swal2-cancel {
|
|
11301
|
-
border: 0;
|
|
11302
|
-
border-radius: 0.25em;
|
|
11303
|
-
background: initial;
|
|
11304
|
-
background-color: #6e7d88;
|
|
11305
|
-
color: #fff;
|
|
11306
|
-
font-size: 1em;
|
|
11307
|
-
}
|
|
11308
|
-
.swal2-styled.swal2-cancel:focus {
|
|
11309
|
-
box-shadow: 0 0 0 3px rgba(110, 125, 136, 0.5);
|
|
11310
|
-
}
|
|
11311
|
-
.swal2-styled.swal2-default-outline:focus {
|
|
11312
|
-
box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
|
|
11313
|
-
}
|
|
11314
|
-
.swal2-styled:focus {
|
|
11315
|
-
outline: none;
|
|
11316
|
-
}
|
|
11317
|
-
.swal2-styled::-moz-focus-inner {
|
|
11318
|
-
border: 0;
|
|
11319
|
-
}
|
|
11320
|
-
|
|
11321
|
-
.swal2-footer {
|
|
11322
|
-
justify-content: center;
|
|
11323
|
-
margin: 1em 0 0;
|
|
11324
|
-
padding: 1em 1em 0;
|
|
11325
|
-
border-top: 1px solid #eee;
|
|
11326
|
-
color: #545454;
|
|
11327
|
-
font-size: 1em;
|
|
11328
|
-
}
|
|
11329
|
-
|
|
11330
|
-
.swal2-timer-progress-bar-container {
|
|
11331
|
-
position: absolute;
|
|
11332
|
-
right: 0;
|
|
11333
|
-
bottom: 0;
|
|
11334
|
-
left: 0;
|
|
11335
|
-
grid-column: auto !important;
|
|
11336
|
-
height: 0.25em;
|
|
11337
|
-
overflow: hidden;
|
|
11338
|
-
border-bottom-right-radius: 5px;
|
|
11339
|
-
border-bottom-left-radius: 5px;
|
|
11340
|
-
}
|
|
11341
|
-
|
|
11342
|
-
.swal2-timer-progress-bar {
|
|
11343
|
-
width: 100%;
|
|
11344
|
-
height: 0.25em;
|
|
11345
|
-
background: rgba(0, 0, 0, 0.2);
|
|
11346
|
-
}
|
|
11347
|
-
|
|
11348
|
-
.swal2-image {
|
|
11349
|
-
max-width: 100%;
|
|
11350
|
-
margin: 2em auto 1em;
|
|
11351
|
-
}
|
|
11352
|
-
|
|
11353
|
-
.swal2-close {
|
|
11354
|
-
z-index: 2;
|
|
11355
|
-
align-items: center;
|
|
11356
|
-
justify-content: center;
|
|
11357
|
-
width: 1.2em;
|
|
11358
|
-
height: 1.2em;
|
|
11359
|
-
margin-top: 0;
|
|
11360
|
-
margin-right: 0;
|
|
11361
|
-
margin-bottom: -1.2em;
|
|
11362
|
-
padding: 0;
|
|
11363
|
-
overflow: hidden;
|
|
11364
|
-
transition: color 0.1s, box-shadow 0.1s;
|
|
11365
|
-
border: none;
|
|
11366
|
-
border-radius: 5px;
|
|
11367
|
-
background: transparent;
|
|
11368
|
-
color: #ccc;
|
|
11369
|
-
font-family: serif;
|
|
11370
|
-
font-family: monospace;
|
|
11371
|
-
font-size: 2.5em;
|
|
11372
|
-
cursor: pointer;
|
|
11373
|
-
justify-self: end;
|
|
11374
|
-
}
|
|
11375
|
-
.swal2-close:hover {
|
|
11376
|
-
transform: none;
|
|
11377
|
-
background: transparent;
|
|
11378
|
-
color: #dc3545;
|
|
11379
|
-
}
|
|
11380
|
-
.swal2-close:focus {
|
|
11381
|
-
outline: none;
|
|
11382
|
-
box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
|
|
11383
|
-
}
|
|
11384
|
-
.swal2-close::-moz-focus-inner {
|
|
11385
|
-
border: 0;
|
|
11386
|
-
}
|
|
11387
|
-
|
|
11388
|
-
.swal2-html-container {
|
|
11389
|
-
z-index: 1;
|
|
11390
|
-
justify-content: center;
|
|
11391
|
-
margin: 0;
|
|
11392
|
-
padding: 1em 1.6em 0.3em;
|
|
11393
|
-
color: #545454;
|
|
11394
|
-
font-size: 1.125em;
|
|
11395
|
-
font-weight: normal;
|
|
11396
|
-
line-height: normal;
|
|
11397
|
-
text-align: center;
|
|
11398
|
-
word-wrap: break-word;
|
|
11399
|
-
word-break: break-word;
|
|
11400
|
-
}
|
|
11401
|
-
|
|
11402
|
-
.swal2-input,
|
|
11403
|
-
.swal2-file,
|
|
11404
|
-
.swal2-textarea,
|
|
11405
|
-
.swal2-select,
|
|
11406
|
-
.swal2-radio,
|
|
11407
|
-
.swal2-checkbox {
|
|
11408
|
-
margin: 1em 2em 0;
|
|
11409
|
-
}
|
|
11410
|
-
|
|
11411
|
-
.swal2-input,
|
|
11412
|
-
.swal2-file,
|
|
11413
|
-
.swal2-textarea {
|
|
11414
|
-
box-sizing: border-box;
|
|
11415
|
-
width: auto;
|
|
11416
|
-
transition: border-color 0.1s, box-shadow 0.1s;
|
|
11417
|
-
border: 1px solid #d9d9d9;
|
|
11418
|
-
border-radius: 0.1875em;
|
|
11419
|
-
background: inherit;
|
|
11420
|
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px transparent;
|
|
11421
|
-
color: inherit;
|
|
11422
|
-
font-size: 1.125em;
|
|
11423
|
-
}
|
|
11424
|
-
.swal2-input.swal2-inputerror,
|
|
11425
|
-
.swal2-file.swal2-inputerror,
|
|
11426
|
-
.swal2-textarea.swal2-inputerror {
|
|
11427
|
-
border-color: #dc3545 !important;
|
|
11428
|
-
box-shadow: 0 0 2px #dc3545 !important;
|
|
11429
|
-
}
|
|
11430
|
-
.swal2-input:focus,
|
|
11431
|
-
.swal2-file:focus,
|
|
11432
|
-
.swal2-textarea:focus {
|
|
11433
|
-
border: 1px solid #b4dbed;
|
|
11434
|
-
outline: none;
|
|
11435
|
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(100, 150, 200, 0.5);
|
|
11436
|
-
}
|
|
11437
|
-
.swal2-input::placeholder,
|
|
11438
|
-
.swal2-file::placeholder,
|
|
11439
|
-
.swal2-textarea::placeholder {
|
|
11440
|
-
color: #ccc;
|
|
11441
|
-
}
|
|
11442
|
-
|
|
11443
|
-
.swal2-range {
|
|
11444
|
-
margin: 1em 2em 0;
|
|
11445
|
-
background: #fff;
|
|
11446
|
-
}
|
|
11447
|
-
.swal2-range input {
|
|
11448
|
-
width: 80%;
|
|
11449
|
-
}
|
|
11450
|
-
.swal2-range output {
|
|
11451
|
-
width: 20%;
|
|
11452
|
-
color: inherit;
|
|
11453
|
-
font-weight: 600;
|
|
11454
|
-
text-align: center;
|
|
11455
|
-
}
|
|
11456
|
-
.swal2-range input,
|
|
11457
|
-
.swal2-range output {
|
|
11458
|
-
height: 2.625em;
|
|
11459
|
-
padding: 0;
|
|
11460
|
-
font-size: 1.125em;
|
|
11461
|
-
line-height: 2.625em;
|
|
11462
|
-
}
|
|
11463
|
-
|
|
11464
|
-
.swal2-input {
|
|
11465
|
-
height: 2.625em;
|
|
11466
|
-
padding: 0 0.75em;
|
|
11467
|
-
}
|
|
11468
|
-
.swal2-input[type=number] {
|
|
11469
|
-
max-width: 10em;
|
|
11470
|
-
}
|
|
11471
|
-
|
|
11472
|
-
.swal2-file {
|
|
11473
|
-
width: 75%;
|
|
11474
|
-
margin-right: auto;
|
|
11475
|
-
margin-left: auto;
|
|
11476
|
-
background: inherit;
|
|
11477
|
-
font-size: 1.125em;
|
|
11478
|
-
}
|
|
11479
|
-
|
|
11480
|
-
.swal2-textarea {
|
|
11481
|
-
height: 6.75em;
|
|
11482
|
-
padding: 0.75em;
|
|
11483
|
-
}
|
|
11484
|
-
|
|
11485
|
-
.swal2-select {
|
|
11486
|
-
min-width: 50%;
|
|
11487
|
-
max-width: 100%;
|
|
11488
|
-
padding: 0.375em 0.625em;
|
|
11489
|
-
background: inherit;
|
|
11490
|
-
color: inherit;
|
|
11491
|
-
font-size: 1.125em;
|
|
11492
|
-
}
|
|
11493
|
-
|
|
11494
|
-
.swal2-radio,
|
|
11495
|
-
.swal2-checkbox {
|
|
11496
|
-
align-items: center;
|
|
11497
|
-
justify-content: center;
|
|
11498
|
-
background: #fff;
|
|
11499
|
-
color: inherit;
|
|
11500
|
-
}
|
|
11501
|
-
.swal2-radio label,
|
|
11502
|
-
.swal2-checkbox label {
|
|
11503
|
-
margin: 0 0.6em;
|
|
11504
|
-
font-size: 1.125em;
|
|
11505
|
-
}
|
|
11506
|
-
.swal2-radio input,
|
|
11507
|
-
.swal2-checkbox input {
|
|
11508
|
-
flex-shrink: 0;
|
|
11509
|
-
margin: 0 0.4em;
|
|
11510
|
-
}
|
|
11511
|
-
|
|
11512
|
-
.swal2-input-label {
|
|
11513
|
-
display: flex;
|
|
11514
|
-
justify-content: center;
|
|
11515
|
-
margin: 1em auto 0;
|
|
11516
|
-
}
|
|
11517
|
-
|
|
11518
|
-
.swal2-validation-message {
|
|
11519
|
-
align-items: center;
|
|
11520
|
-
justify-content: center;
|
|
11521
|
-
margin: 1em 0 0;
|
|
11522
|
-
padding: 0.625em;
|
|
11523
|
-
overflow: hidden;
|
|
11524
|
-
background: #f0f0f0;
|
|
11525
|
-
color: #666666;
|
|
11526
|
-
font-size: 1em;
|
|
11527
|
-
font-weight: 300;
|
|
11528
|
-
}
|
|
11529
|
-
.swal2-validation-message::before {
|
|
11530
|
-
content: "!";
|
|
11531
|
-
display: inline-block;
|
|
11532
|
-
width: 1.5em;
|
|
11533
|
-
min-width: 1.5em;
|
|
11534
|
-
height: 1.5em;
|
|
11535
|
-
margin: 0 0.625em;
|
|
11536
|
-
border-radius: 50%;
|
|
11537
|
-
background-color: #dc3545;
|
|
11538
|
-
color: #fff;
|
|
11539
|
-
font-weight: 600;
|
|
11540
|
-
line-height: 1.5em;
|
|
11541
|
-
text-align: center;
|
|
11542
|
-
}
|
|
11543
|
-
|
|
11544
|
-
.swal2-icon {
|
|
11545
|
-
position: relative;
|
|
11546
|
-
box-sizing: content-box;
|
|
11547
|
-
justify-content: center;
|
|
11548
|
-
width: 5em;
|
|
11549
|
-
height: 5em;
|
|
11550
|
-
margin: 2.5em auto 0.6em;
|
|
11551
|
-
border: 0.25em solid transparent;
|
|
11552
|
-
border-radius: 50%;
|
|
11553
|
-
border-color: #000;
|
|
11554
|
-
font-family: inherit;
|
|
11555
|
-
line-height: 5em;
|
|
11556
|
-
cursor: default;
|
|
11557
|
-
user-select: none;
|
|
11558
|
-
}
|
|
11559
|
-
.swal2-icon .swal2-icon-content {
|
|
11560
|
-
display: flex;
|
|
11561
|
-
align-items: center;
|
|
11562
|
-
font-size: 3.75em;
|
|
11563
|
-
}
|
|
11564
|
-
.swal2-icon.swal2-error {
|
|
11565
|
-
border-color: #dc3545;
|
|
11566
|
-
color: #dc3545;
|
|
11567
|
-
}
|
|
11568
|
-
.swal2-icon.swal2-error .swal2-x-mark {
|
|
11569
|
-
position: relative;
|
|
11570
|
-
flex-grow: 1;
|
|
11571
|
-
}
|
|
11572
|
-
.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
|
|
11573
|
-
display: block;
|
|
11574
|
-
position: absolute;
|
|
11575
|
-
top: 2.3125em;
|
|
11576
|
-
width: 2.9375em;
|
|
11577
|
-
height: 0.3125em;
|
|
11578
|
-
border-radius: 0.125em;
|
|
11579
|
-
background-color: #dc3545;
|
|
11580
|
-
}
|
|
11581
|
-
.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
|
|
11582
|
-
left: 1.0625em;
|
|
11583
|
-
transform: rotate(45deg);
|
|
11584
|
-
}
|
|
11585
|
-
.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
|
|
11586
|
-
right: 1em;
|
|
11587
|
-
transform: rotate(-45deg);
|
|
11588
|
-
}
|
|
11589
|
-
.swal2-icon.swal2-error.swal2-icon-show {
|
|
11590
|
-
animation: swal2-animate-error-icon 0.5s;
|
|
11591
|
-
}
|
|
11592
|
-
.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
|
|
11593
|
-
animation: swal2-animate-error-x-mark 0.5s;
|
|
11594
|
-
}
|
|
11595
|
-
.swal2-icon.swal2-warning {
|
|
11596
|
-
border-color: #ffca2b;
|
|
11597
|
-
color: #ffc107;
|
|
11354
|
+
.alert.callout code {
|
|
11355
|
+
border-radius: 3px;
|
|
11598
11356
|
}
|
|
11599
|
-
.
|
|
11600
|
-
border-color: #
|
|
11601
|
-
color: #0dcaf0;
|
|
11357
|
+
.alert.callout.alert-success {
|
|
11358
|
+
border-left-color: #198754;
|
|
11602
11359
|
}
|
|
11603
|
-
.
|
|
11604
|
-
|
|
11605
|
-
color: #0dcaf0;
|
|
11360
|
+
.alert.callout.alert-success p {
|
|
11361
|
+
color: #000;
|
|
11606
11362
|
}
|
|
11607
|
-
.
|
|
11608
|
-
border-color: #198754;
|
|
11363
|
+
.alert.callout.alert-success h4, .alert.callout.alert-success .h4 {
|
|
11609
11364
|
color: #198754;
|
|
11610
11365
|
}
|
|
11611
|
-
.
|
|
11612
|
-
|
|
11613
|
-
width: 3.75em;
|
|
11614
|
-
height: 7.5em;
|
|
11615
|
-
transform: rotate(45deg);
|
|
11616
|
-
border-radius: 50%;
|
|
11617
|
-
}
|
|
11618
|
-
.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
|
|
11619
|
-
top: -0.4375em;
|
|
11620
|
-
left: -2.0635em;
|
|
11621
|
-
transform: rotate(-45deg);
|
|
11622
|
-
transform-origin: 3.75em 3.75em;
|
|
11623
|
-
border-radius: 7.5em 0 0 7.5em;
|
|
11624
|
-
}
|
|
11625
|
-
.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
|
|
11626
|
-
top: -0.6875em;
|
|
11627
|
-
left: 1.875em;
|
|
11628
|
-
transform: rotate(-45deg);
|
|
11629
|
-
transform-origin: 0 3.75em;
|
|
11630
|
-
border-radius: 0 7.5em 7.5em 0;
|
|
11631
|
-
}
|
|
11632
|
-
.swal2-icon.swal2-success .swal2-success-ring {
|
|
11633
|
-
position: absolute;
|
|
11634
|
-
z-index: 2;
|
|
11635
|
-
top: -0.25em;
|
|
11636
|
-
left: -0.25em;
|
|
11637
|
-
box-sizing: content-box;
|
|
11638
|
-
width: 100%;
|
|
11639
|
-
height: 100%;
|
|
11640
|
-
border: 0.25em solid rgba(25, 135, 84, 0.3);
|
|
11641
|
-
border-radius: 50%;
|
|
11642
|
-
}
|
|
11643
|
-
.swal2-icon.swal2-success .swal2-success-fix {
|
|
11644
|
-
position: absolute;
|
|
11645
|
-
z-index: 1;
|
|
11646
|
-
top: 0.5em;
|
|
11647
|
-
left: 1.625em;
|
|
11648
|
-
width: 0.4375em;
|
|
11649
|
-
height: 5.625em;
|
|
11650
|
-
transform: rotate(-45deg);
|
|
11651
|
-
}
|
|
11652
|
-
.swal2-icon.swal2-success [class^=swal2-success-line] {
|
|
11653
|
-
display: block;
|
|
11654
|
-
position: absolute;
|
|
11655
|
-
z-index: 2;
|
|
11656
|
-
height: 0.3125em;
|
|
11657
|
-
border-radius: 0.125em;
|
|
11658
|
-
background-color: #198754;
|
|
11659
|
-
}
|
|
11660
|
-
.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
|
|
11661
|
-
top: 2.875em;
|
|
11662
|
-
left: 0.8125em;
|
|
11663
|
-
width: 1.5625em;
|
|
11664
|
-
transform: rotate(45deg);
|
|
11665
|
-
}
|
|
11666
|
-
.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
|
|
11667
|
-
top: 2.375em;
|
|
11668
|
-
right: 0.5em;
|
|
11669
|
-
width: 2.9375em;
|
|
11670
|
-
transform: rotate(-45deg);
|
|
11671
|
-
}
|
|
11672
|
-
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
|
|
11673
|
-
animation: swal2-animate-success-line-tip 0.75s;
|
|
11366
|
+
.alert.callout.alert-dark {
|
|
11367
|
+
border-left-color: #6c757d;
|
|
11674
11368
|
}
|
|
11675
|
-
.
|
|
11676
|
-
|
|
11677
|
-
}
|
|
11678
|
-
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
|
|
11679
|
-
animation: swal2-rotate-success-circular-line 4.25s ease-in;
|
|
11680
|
-
}
|
|
11681
|
-
|
|
11682
|
-
.swal2-progress-steps {
|
|
11683
|
-
flex-wrap: wrap;
|
|
11684
|
-
align-items: center;
|
|
11685
|
-
max-width: 100%;
|
|
11686
|
-
margin: 1.25em auto;
|
|
11687
|
-
padding: 0;
|
|
11688
|
-
background: inherit;
|
|
11689
|
-
font-weight: 600;
|
|
11369
|
+
.alert.callout.alert-dark p {
|
|
11370
|
+
color: #000;
|
|
11690
11371
|
}
|
|
11691
|
-
.
|
|
11692
|
-
|
|
11693
|
-
position: relative;
|
|
11372
|
+
.alert.callout.alert-dark h4, .alert.callout.alert-dark .h4 {
|
|
11373
|
+
color: #6c757d;
|
|
11694
11374
|
}
|
|
11695
|
-
.
|
|
11696
|
-
|
|
11697
|
-
flex-shrink: 0;
|
|
11698
|
-
width: 2em;
|
|
11699
|
-
height: 2em;
|
|
11700
|
-
border-radius: 2em;
|
|
11701
|
-
background: #2778c4;
|
|
11702
|
-
color: #fff;
|
|
11703
|
-
line-height: 2em;
|
|
11704
|
-
text-align: center;
|
|
11375
|
+
.alert.callout.alert-info {
|
|
11376
|
+
border-left-color: #0dcaf0;
|
|
11705
11377
|
}
|
|
11706
|
-
.
|
|
11707
|
-
|
|
11378
|
+
.alert.callout.alert-info p {
|
|
11379
|
+
color: #000;
|
|
11708
11380
|
}
|
|
11709
|
-
.
|
|
11710
|
-
|
|
11711
|
-
color: #fff;
|
|
11381
|
+
.alert.callout.alert-info h4, .alert.callout.alert-info .h4 {
|
|
11382
|
+
color: #0dcaf0;
|
|
11712
11383
|
}
|
|
11713
|
-
.
|
|
11714
|
-
|
|
11384
|
+
.alert.callout.alert-warning {
|
|
11385
|
+
border-left-color: #ffc107;
|
|
11715
11386
|
}
|
|
11716
|
-
.
|
|
11717
|
-
|
|
11718
|
-
flex-shrink: 0;
|
|
11719
|
-
width: 2.5em;
|
|
11720
|
-
height: 0.4em;
|
|
11721
|
-
margin: 0 -1px;
|
|
11722
|
-
background: #2778c4;
|
|
11387
|
+
.alert.callout.alert-warning p {
|
|
11388
|
+
color: #000;
|
|
11723
11389
|
}
|
|
11724
|
-
|
|
11725
|
-
|
|
11726
|
-
-webkit-tap-highlight-color: transparent;
|
|
11390
|
+
.alert.callout.alert-warning h4, .alert.callout.alert-warning .h4 {
|
|
11391
|
+
color: #ffc107;
|
|
11727
11392
|
}
|
|
11728
|
-
|
|
11729
|
-
|
|
11730
|
-
animation: swal2-show 0.3s;
|
|
11393
|
+
.alert.callout.alert-danger {
|
|
11394
|
+
border-left-color: #dc3545;
|
|
11731
11395
|
}
|
|
11732
|
-
|
|
11733
|
-
|
|
11734
|
-
animation: swal2-hide 0.15s forwards;
|
|
11396
|
+
.alert.callout.alert-danger p {
|
|
11397
|
+
color: #000;
|
|
11735
11398
|
}
|
|
11736
|
-
|
|
11737
|
-
|
|
11738
|
-
transition: none;
|
|
11399
|
+
.alert.callout.alert-danger h4, .alert.callout.alert-danger .h4 {
|
|
11400
|
+
color: #dc3545;
|
|
11739
11401
|
}
|
|
11740
11402
|
|
|
11741
|
-
.
|
|
11403
|
+
.alert button.close {
|
|
11742
11404
|
position: absolute;
|
|
11743
|
-
top: -9999px;
|
|
11744
|
-
width: 50px;
|
|
11745
|
-
height: 50px;
|
|
11746
|
-
overflow: scroll;
|
|
11747
|
-
}
|
|
11748
|
-
|
|
11749
|
-
.swal2-rtl .swal2-close {
|
|
11750
|
-
margin-right: initial;
|
|
11751
|
-
margin-left: 0;
|
|
11752
|
-
}
|
|
11753
|
-
.swal2-rtl .swal2-timer-progress-bar {
|
|
11754
|
-
right: 0;
|
|
11755
|
-
left: auto;
|
|
11756
|
-
}
|
|
11757
|
-
|
|
11758
|
-
@keyframes swal2-toast-show {
|
|
11759
|
-
0% {
|
|
11760
|
-
transform: translateY(-0.625em) rotateZ(2deg);
|
|
11761
|
-
}
|
|
11762
|
-
33% {
|
|
11763
|
-
transform: translateY(0) rotateZ(-2deg);
|
|
11764
|
-
}
|
|
11765
|
-
66% {
|
|
11766
|
-
transform: translateY(0.3125em) rotateZ(2deg);
|
|
11767
|
-
}
|
|
11768
|
-
100% {
|
|
11769
|
-
transform: translateY(0) rotateZ(0deg);
|
|
11770
|
-
}
|
|
11771
|
-
}
|
|
11772
|
-
@keyframes swal2-toast-hide {
|
|
11773
|
-
100% {
|
|
11774
|
-
transform: rotateZ(1deg);
|
|
11775
|
-
opacity: 0;
|
|
11776
|
-
}
|
|
11777
|
-
}
|
|
11778
|
-
@keyframes swal2-toast-animate-success-line-tip {
|
|
11779
|
-
0% {
|
|
11780
|
-
top: 0.5625em;
|
|
11781
|
-
left: 0.0625em;
|
|
11782
|
-
width: 0;
|
|
11783
|
-
}
|
|
11784
|
-
54% {
|
|
11785
|
-
top: 0.125em;
|
|
11786
|
-
left: 0.125em;
|
|
11787
|
-
width: 0;
|
|
11788
|
-
}
|
|
11789
|
-
70% {
|
|
11790
|
-
top: 0.625em;
|
|
11791
|
-
left: -0.25em;
|
|
11792
|
-
width: 1.625em;
|
|
11793
|
-
}
|
|
11794
|
-
84% {
|
|
11795
|
-
top: 1.0625em;
|
|
11796
|
-
left: 0.75em;
|
|
11797
|
-
width: 0.5em;
|
|
11798
|
-
}
|
|
11799
|
-
100% {
|
|
11800
|
-
top: 1.125em;
|
|
11801
|
-
left: 0.1875em;
|
|
11802
|
-
width: 0.75em;
|
|
11803
|
-
}
|
|
11804
|
-
}
|
|
11805
|
-
@keyframes swal2-toast-animate-success-line-long {
|
|
11806
|
-
0% {
|
|
11807
|
-
top: 1.625em;
|
|
11808
|
-
right: 1.375em;
|
|
11809
|
-
width: 0;
|
|
11810
|
-
}
|
|
11811
|
-
65% {
|
|
11812
|
-
top: 1.25em;
|
|
11813
|
-
right: 0.9375em;
|
|
11814
|
-
width: 0;
|
|
11815
|
-
}
|
|
11816
|
-
84% {
|
|
11817
|
-
top: 0.9375em;
|
|
11818
|
-
right: 0;
|
|
11819
|
-
width: 1.125em;
|
|
11820
|
-
}
|
|
11821
|
-
100% {
|
|
11822
|
-
top: 0.9375em;
|
|
11823
|
-
right: 0.1875em;
|
|
11824
|
-
width: 1.375em;
|
|
11825
|
-
}
|
|
11826
|
-
}
|
|
11827
|
-
@keyframes swal2-show {
|
|
11828
|
-
0% {
|
|
11829
|
-
transform: scale(0.7);
|
|
11830
|
-
}
|
|
11831
|
-
45% {
|
|
11832
|
-
transform: scale(1.05);
|
|
11833
|
-
}
|
|
11834
|
-
80% {
|
|
11835
|
-
transform: scale(0.95);
|
|
11836
|
-
}
|
|
11837
|
-
100% {
|
|
11838
|
-
transform: scale(1);
|
|
11839
|
-
}
|
|
11840
|
-
}
|
|
11841
|
-
@keyframes swal2-hide {
|
|
11842
|
-
0% {
|
|
11843
|
-
transform: scale(1);
|
|
11844
|
-
opacity: 1;
|
|
11845
|
-
}
|
|
11846
|
-
100% {
|
|
11847
|
-
transform: scale(0.5);
|
|
11848
|
-
opacity: 0;
|
|
11849
|
-
}
|
|
11850
|
-
}
|
|
11851
|
-
@keyframes swal2-animate-success-line-tip {
|
|
11852
|
-
0% {
|
|
11853
|
-
top: 1.1875em;
|
|
11854
|
-
left: 0.0625em;
|
|
11855
|
-
width: 0;
|
|
11856
|
-
}
|
|
11857
|
-
54% {
|
|
11858
|
-
top: 1.0625em;
|
|
11859
|
-
left: 0.125em;
|
|
11860
|
-
width: 0;
|
|
11861
|
-
}
|
|
11862
|
-
70% {
|
|
11863
|
-
top: 2.1875em;
|
|
11864
|
-
left: -0.375em;
|
|
11865
|
-
width: 3.125em;
|
|
11866
|
-
}
|
|
11867
|
-
84% {
|
|
11868
|
-
top: 3em;
|
|
11869
|
-
left: 1.3125em;
|
|
11870
|
-
width: 1.0625em;
|
|
11871
|
-
}
|
|
11872
|
-
100% {
|
|
11873
|
-
top: 2.8125em;
|
|
11874
|
-
left: 0.8125em;
|
|
11875
|
-
width: 1.5625em;
|
|
11876
|
-
}
|
|
11877
|
-
}
|
|
11878
|
-
@keyframes swal2-animate-success-line-long {
|
|
11879
|
-
0% {
|
|
11880
|
-
top: 3.375em;
|
|
11881
|
-
right: 2.875em;
|
|
11882
|
-
width: 0;
|
|
11883
|
-
}
|
|
11884
|
-
65% {
|
|
11885
|
-
top: 3.375em;
|
|
11886
|
-
right: 2.875em;
|
|
11887
|
-
width: 0;
|
|
11888
|
-
}
|
|
11889
|
-
84% {
|
|
11890
|
-
top: 2.1875em;
|
|
11891
|
-
right: 0;
|
|
11892
|
-
width: 3.4375em;
|
|
11893
|
-
}
|
|
11894
|
-
100% {
|
|
11895
|
-
top: 2.375em;
|
|
11896
|
-
right: 0.5em;
|
|
11897
|
-
width: 2.9375em;
|
|
11898
|
-
}
|
|
11899
|
-
}
|
|
11900
|
-
@keyframes swal2-rotate-success-circular-line {
|
|
11901
|
-
0% {
|
|
11902
|
-
transform: rotate(-45deg);
|
|
11903
|
-
}
|
|
11904
|
-
5% {
|
|
11905
|
-
transform: rotate(-45deg);
|
|
11906
|
-
}
|
|
11907
|
-
12% {
|
|
11908
|
-
transform: rotate(-405deg);
|
|
11909
|
-
}
|
|
11910
|
-
100% {
|
|
11911
|
-
transform: rotate(-405deg);
|
|
11912
|
-
}
|
|
11913
|
-
}
|
|
11914
|
-
@keyframes swal2-animate-error-x-mark {
|
|
11915
|
-
0% {
|
|
11916
|
-
margin-top: 1.625em;
|
|
11917
|
-
transform: scale(0.4);
|
|
11918
|
-
opacity: 0;
|
|
11919
|
-
}
|
|
11920
|
-
50% {
|
|
11921
|
-
margin-top: 1.625em;
|
|
11922
|
-
transform: scale(0.4);
|
|
11923
|
-
opacity: 0;
|
|
11924
|
-
}
|
|
11925
|
-
80% {
|
|
11926
|
-
margin-top: -0.375em;
|
|
11927
|
-
transform: scale(1.15);
|
|
11928
|
-
}
|
|
11929
|
-
100% {
|
|
11930
|
-
margin-top: 0;
|
|
11931
|
-
transform: scale(1);
|
|
11932
|
-
opacity: 1;
|
|
11933
|
-
}
|
|
11934
|
-
}
|
|
11935
|
-
@keyframes swal2-animate-error-icon {
|
|
11936
|
-
0% {
|
|
11937
|
-
transform: rotateX(100deg);
|
|
11938
|
-
opacity: 0;
|
|
11939
|
-
}
|
|
11940
|
-
100% {
|
|
11941
|
-
transform: rotateX(0deg);
|
|
11942
|
-
opacity: 1;
|
|
11943
|
-
}
|
|
11944
|
-
}
|
|
11945
|
-
@keyframes swal2-rotate-loading {
|
|
11946
|
-
0% {
|
|
11947
|
-
transform: rotate(0deg);
|
|
11948
|
-
}
|
|
11949
|
-
100% {
|
|
11950
|
-
transform: rotate(360deg);
|
|
11951
|
-
}
|
|
11952
|
-
}
|
|
11953
|
-
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
|
|
11954
|
-
overflow: hidden;
|
|
11955
|
-
}
|
|
11956
|
-
body.swal2-height-auto {
|
|
11957
|
-
height: auto !important;
|
|
11958
|
-
}
|
|
11959
|
-
body.swal2-no-backdrop .swal2-container {
|
|
11960
|
-
background-color: transparent !important;
|
|
11961
|
-
pointer-events: none;
|
|
11962
|
-
}
|
|
11963
|
-
body.swal2-no-backdrop .swal2-container .swal2-popup {
|
|
11964
|
-
pointer-events: all;
|
|
11965
|
-
}
|
|
11966
|
-
body.swal2-no-backdrop .swal2-container .swal2-modal {
|
|
11967
|
-
box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
|
|
11968
|
-
}
|
|
11969
|
-
@media print {
|
|
11970
|
-
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
|
|
11971
|
-
overflow-y: scroll !important;
|
|
11972
|
-
}
|
|
11973
|
-
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden=true] {
|
|
11974
|
-
display: none;
|
|
11975
|
-
}
|
|
11976
|
-
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
|
|
11977
|
-
position: static !important;
|
|
11978
|
-
}
|
|
11979
|
-
}
|
|
11980
|
-
body.swal2-toast-shown .swal2-container {
|
|
11981
|
-
box-sizing: border-box;
|
|
11982
|
-
width: 360px;
|
|
11983
|
-
max-width: 100%;
|
|
11984
|
-
background-color: transparent;
|
|
11985
|
-
pointer-events: none;
|
|
11986
|
-
}
|
|
11987
|
-
body.swal2-toast-shown .swal2-container.swal2-top {
|
|
11988
|
-
top: 0;
|
|
11989
|
-
right: auto;
|
|
11990
|
-
bottom: auto;
|
|
11991
|
-
left: 50%;
|
|
11992
|
-
transform: translateX(-50%);
|
|
11993
|
-
}
|
|
11994
|
-
body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
|
|
11995
11405
|
top: 0;
|
|
11996
11406
|
right: 0;
|
|
11997
|
-
|
|
11998
|
-
|
|
11999
|
-
}
|
|
12000
|
-
body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
|
|
12001
|
-
top: 0;
|
|
12002
|
-
right: auto;
|
|
12003
|
-
bottom: auto;
|
|
12004
|
-
left: 0;
|
|
12005
|
-
}
|
|
12006
|
-
body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
|
|
12007
|
-
top: 50%;
|
|
12008
|
-
right: auto;
|
|
12009
|
-
bottom: auto;
|
|
12010
|
-
left: 0;
|
|
12011
|
-
transform: translateY(-50%);
|
|
12012
|
-
}
|
|
12013
|
-
body.swal2-toast-shown .swal2-container.swal2-center {
|
|
12014
|
-
top: 50%;
|
|
12015
|
-
right: auto;
|
|
12016
|
-
bottom: auto;
|
|
12017
|
-
left: 50%;
|
|
12018
|
-
transform: translate(-50%, -50%);
|
|
12019
|
-
}
|
|
12020
|
-
body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
|
|
12021
|
-
top: 50%;
|
|
12022
|
-
right: 0;
|
|
12023
|
-
bottom: auto;
|
|
12024
|
-
left: auto;
|
|
12025
|
-
transform: translateY(-50%);
|
|
12026
|
-
}
|
|
12027
|
-
body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
|
|
12028
|
-
top: auto;
|
|
12029
|
-
right: auto;
|
|
12030
|
-
bottom: 0;
|
|
12031
|
-
left: 0;
|
|
11407
|
+
width: 30px;
|
|
11408
|
+
height: 30px;
|
|
12032
11409
|
}
|
|
12033
|
-
|
|
12034
|
-
|
|
12035
|
-
|
|
12036
|
-
|
|
12037
|
-
|
|
12038
|
-
|
|
11410
|
+
|
|
11411
|
+
.copy-to-clipboard {
|
|
11412
|
+
transition: none;
|
|
11413
|
+
transition: none;
|
|
11414
|
+
transition: none;
|
|
11415
|
+
transition: none;
|
|
11416
|
+
background-color: #e9ecef;
|
|
12039
11417
|
}
|
|
12040
|
-
|
|
12041
|
-
|
|
12042
|
-
right: 0;
|
|
12043
|
-
bottom: 0;
|
|
12044
|
-
left: auto;
|
|
11418
|
+
.copy-to-clipboard.flash {
|
|
11419
|
+
background-color: #aff0d2;
|
|
12045
11420
|
}
|
|
12046
|
-
|
|
12047
|
-
|
|
12048
|
-
|
|
11421
|
+
.copy-to-clipboard.flash.fade {
|
|
11422
|
+
background-color: #e9ecef;
|
|
11423
|
+
transition: background-color 0.75s ease-in-out;
|
|
11424
|
+
transition: background-color 0.75s ease-in-out;
|
|
11425
|
+
transition: background-color 0.75s ease-in-out;
|
|
11426
|
+
transition: background-color 0.75s ease-in-out;
|
|
12049
11427
|
}
|
|
12050
11428
|
|
|
12051
11429
|
/**
|