@coreui/coreui 4.0.4 → 4.1.1
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/README.md +5 -8
- package/dist/css/coreui-grid.css +254 -205
- package/dist/css/coreui-grid.css.map +1 -1
- package/dist/css/coreui-grid.min.css +2 -2
- package/dist/css/coreui-grid.min.css.map +1 -1
- package/dist/css/coreui-grid.rtl.css +411 -362
- package/dist/css/coreui-grid.rtl.css.map +1 -1
- package/dist/css/coreui-grid.rtl.min.css +3 -3
- package/dist/css/coreui-grid.rtl.min.css.map +1 -1
- package/dist/css/coreui-reboot.css +63 -8
- package/dist/css/coreui-reboot.css.map +1 -1
- package/dist/css/coreui-reboot.min.css +2 -2
- package/dist/css/coreui-reboot.min.css.map +1 -1
- package/dist/css/coreui-reboot.rtl.css +64 -9
- package/dist/css/coreui-reboot.rtl.css.map +1 -1
- package/dist/css/coreui-reboot.rtl.min.css +3 -3
- package/dist/css/coreui-reboot.rtl.min.css.map +1 -1
- package/dist/css/coreui-utilities.css +181 -81
- package/dist/css/coreui-utilities.css.map +1 -1
- package/dist/css/coreui-utilities.min.css +2 -2
- package/dist/css/coreui-utilities.min.css.map +1 -1
- package/dist/css/coreui-utilities.rtl.css +380 -280
- package/dist/css/coreui-utilities.rtl.css.map +1 -1
- package/dist/css/coreui-utilities.rtl.min.css +3 -3
- package/dist/css/coreui-utilities.rtl.min.css.map +1 -1
- package/dist/css/coreui.css +712 -345
- package/dist/css/coreui.css.map +1 -1
- package/dist/css/coreui.min.css +2 -2
- package/dist/css/coreui.min.css.map +1 -1
- package/dist/css/coreui.rtl.css +893 -541
- package/dist/css/coreui.rtl.css.map +1 -1
- package/dist/css/coreui.rtl.min.css +3 -3
- package/dist/css/coreui.rtl.min.css.map +1 -1
- package/dist/js/coreui.bundle.js +855 -746
- package/dist/js/coreui.bundle.js.map +1 -1
- package/dist/js/coreui.bundle.min.js +3 -3
- package/dist/js/coreui.bundle.min.js.map +1 -1
- package/dist/js/coreui.esm.js +708 -644
- package/dist/js/coreui.esm.js.map +1 -1
- package/dist/js/coreui.esm.min.js +3 -3
- package/dist/js/coreui.esm.min.js.map +1 -1
- package/dist/js/coreui.js +718 -656
- package/dist/js/coreui.js.map +1 -1
- package/dist/js/coreui.min.js +3 -3
- package/dist/js/coreui.min.js.map +1 -1
- package/js/dist/alert.js +82 -49
- package/js/dist/alert.js.map +1 -1
- package/js/dist/base-component.js +26 -18
- package/js/dist/base-component.js.map +1 -1
- package/js/dist/button.js +23 -13
- package/js/dist/button.js.map +1 -1
- package/js/dist/carousel.js +95 -50
- package/js/dist/carousel.js.map +1 -1
- package/js/dist/collapse.js +125 -139
- package/js/dist/collapse.js.map +1 -1
- package/js/dist/dom/data.js +6 -6
- package/js/dist/dom/data.js.map +1 -1
- package/js/dist/dom/event-handler.js +15 -6
- package/js/dist/dom/event-handler.js.map +1 -1
- package/js/dist/dom/manipulator.js +7 -7
- package/js/dist/dom/manipulator.js.map +1 -1
- package/js/dist/dom/selector-engine.js +74 -9
- package/js/dist/dom/selector-engine.js.map +1 -1
- package/js/dist/dropdown.js +125 -112
- package/js/dist/dropdown.js.map +1 -1
- package/js/dist/modal.js +270 -93
- package/js/dist/modal.js.map +1 -1
- package/js/dist/offcanvas.js +231 -62
- package/js/dist/offcanvas.js.map +1 -1
- package/js/dist/popover.js +29 -59
- package/js/dist/popover.js.map +1 -1
- package/js/dist/scrollspy.js +45 -35
- package/js/dist/scrollspy.js.map +1 -1
- package/js/dist/tab.js +45 -23
- package/js/dist/tab.js.map +1 -1
- package/js/dist/toast.js +132 -34
- package/js/dist/toast.js.map +1 -1
- package/js/dist/tooltip.js +127 -109
- package/js/dist/tooltip.js.map +1 -1
- package/js/src/alert.js +21 -47
- package/js/src/base-component.js +3 -3
- package/js/src/button.js +1 -1
- package/js/src/carousel.js +10 -4
- package/js/src/collapse.js +66 -119
- package/js/src/dom/data.js +1 -1
- package/js/src/dom/event-handler.js +1 -2
- package/js/src/dom/manipulator.js +3 -3
- package/js/src/dom/selector-engine.js +18 -1
- package/js/src/dropdown.js +53 -68
- package/js/src/modal.js +24 -35
- package/js/src/navigation.js +6 -4
- package/js/src/offcanvas.js +16 -18
- package/js/src/popover.js +7 -49
- package/js/src/scrollspy.js +1 -1
- package/js/src/sidebar.js +23 -27
- package/js/src/tab.js +1 -1
- package/js/src/toast.js +11 -11
- package/js/src/tooltip.js +66 -50
- package/js/src/util/backdrop.js +6 -5
- package/js/src/util/component-functions.js +34 -0
- package/js/src/util/focustrap.js +105 -0
- package/js/src/util/index.js +39 -11
- package/js/src/util/sanitizer.js +21 -22
- package/js/src/util/scrollbar.js +1 -1
- package/package.json +54 -55
- package/scss/_buttons.scss +1 -2
- package/scss/_card.scss +2 -1
- package/scss/_dropdown.scss +1 -1
- package/scss/_functions.scss +51 -12
- package/scss/_grid.scss +0 -23
- package/scss/_helpers.scss +2 -0
- package/scss/_mixins.scss +1 -0
- package/scss/_modal.scss +2 -12
- package/scss/_nav.scss +1 -2
- package/scss/_navbar.scss +30 -1
- package/scss/_offcanvas.scss +6 -2
- package/scss/_placeholders.scss +51 -0
- package/scss/_reboot.scss +12 -8
- package/scss/_root.scss +36 -7
- package/scss/_tables.scss +9 -5
- package/scss/_toasts.scss +2 -2
- package/scss/_transitions.scss +6 -0
- package/scss/_utilities.scss +31 -8
- package/scss/_variables.scss +188 -13
- package/scss/coreui-grid.rtl.scss +1 -1
- package/scss/coreui-grid.scss +3 -1
- package/scss/coreui-reboot.rtl.scss +1 -1
- package/scss/coreui-reboot.scss +2 -4
- package/scss/coreui-utilities.rtl.scss +1 -1
- package/scss/coreui-utilities.scss +1 -1
- package/scss/coreui.rtl.scss +1 -1
- package/scss/coreui.scss +2 -1
- package/scss/forms/_form-control.scss +1 -1
- package/scss/forms/_form-select.scss +2 -0
- package/scss/helpers/_stacks.scss +15 -0
- package/scss/helpers/_vr.scss +8 -0
- package/scss/mixins/_backdrop.scss +14 -0
- package/scss/mixins/_grid.scss +26 -7
- package/scss/mixins/_ltr-rtl.scss +21 -0
- package/scss/mixins/_reset-text.scss +1 -1
- package/scss/mixins/_utilities.scss +27 -39
- package/scss/mixins/_visually-hidden.scss +1 -1
- package/scss/sidebar/_sidebar-nav.scss +1 -0
- package/scss/sidebar/_sidebar.scss +17 -17
package/dist/css/coreui.rtl.css
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/*!
|
|
3
3
|
* CoreUI - HTML, CSS, and JavaScript UI Components Library
|
|
4
|
-
* @version v4.
|
|
4
|
+
* @version v4.1.1
|
|
5
5
|
* @link https://coreui.io/
|
|
6
6
|
* Copyright (c) 2021 creativeLabs Łukasz Holeczek
|
|
7
7
|
* License MIT (https://coreui.io/license/)
|
|
8
8
|
*/
|
|
9
9
|
/*!
|
|
10
10
|
* CoreUI - HTML, CSS, and JavaScript UI Components Library
|
|
11
|
-
* @version v4.
|
|
11
|
+
* @version v4.1.1
|
|
12
12
|
* @link https://coreui.io/
|
|
13
13
|
* Copyright (c) 2021 creativeLabs Łukasz Holeczek
|
|
14
14
|
* License MIT (https://coreui.io/license/)
|
|
@@ -27,6 +27,15 @@
|
|
|
27
27
|
--cui-white: #fff;
|
|
28
28
|
--cui-gray: #8a93a2;
|
|
29
29
|
--cui-gray-dark: #636f83;
|
|
30
|
+
--cui-gray-100: #ebedef;
|
|
31
|
+
--cui-gray-200: #d8dbe0;
|
|
32
|
+
--cui-gray-300: #c4c9d0;
|
|
33
|
+
--cui-gray-400: #b1b7c1;
|
|
34
|
+
--cui-gray-500: #9da5b1;
|
|
35
|
+
--cui-gray-600: #8a93a2;
|
|
36
|
+
--cui-gray-700: #768192;
|
|
37
|
+
--cui-gray-800: #636f83;
|
|
38
|
+
--cui-gray-900: #4f5d73;
|
|
30
39
|
--cui-primary: #321fdb;
|
|
31
40
|
--cui-secondary: #9da5b1;
|
|
32
41
|
--cui-success: #2eb85c;
|
|
@@ -35,17 +44,27 @@
|
|
|
35
44
|
--cui-danger: #e55353;
|
|
36
45
|
--cui-light: #ebedef;
|
|
37
46
|
--cui-dark: #4f5d73;
|
|
38
|
-
--cui-
|
|
39
|
-
--cui-
|
|
40
|
-
--cui-
|
|
41
|
-
--cui-
|
|
42
|
-
--cui-
|
|
43
|
-
--cui-
|
|
44
|
-
--cui-
|
|
47
|
+
--cui-primary-rgb: 50, 31, 219;
|
|
48
|
+
--cui-secondary-rgb: 157, 165, 177;
|
|
49
|
+
--cui-success-rgb: 46, 184, 92;
|
|
50
|
+
--cui-info-rgb: 51, 153, 255;
|
|
51
|
+
--cui-warning-rgb: 249, 177, 21;
|
|
52
|
+
--cui-danger-rgb: 229, 83, 83;
|
|
53
|
+
--cui-light-rgb: 235, 237, 239;
|
|
54
|
+
--cui-dark-rgb: 79, 93, 115;
|
|
55
|
+
--cui-white-rgb: 255, 255, 255;
|
|
56
|
+
--cui-black-rgb: 0, 0, 21;
|
|
57
|
+
--cui-body-color-rgb: 44, 56, 74;
|
|
58
|
+
--cui-body-bg-rgb: 255, 255, 255;
|
|
45
59
|
--cui-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";
|
|
46
60
|
--cui-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
47
61
|
--cui-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
|
62
|
+
--cui-body-font-family: var(--cui-font-sans-serif);
|
|
63
|
+
--cui-body-font-size: 1rem;
|
|
64
|
+
--cui-body-font-weight: 400;
|
|
65
|
+
--cui-body-line-height: 1.5;
|
|
48
66
|
--cui-body-color: rgba(44, 56, 74, 0.95);
|
|
67
|
+
--cui-body-bg: #fff;
|
|
49
68
|
}
|
|
50
69
|
|
|
51
70
|
*,
|
|
@@ -62,12 +81,13 @@
|
|
|
62
81
|
|
|
63
82
|
body {
|
|
64
83
|
margin: 0;
|
|
65
|
-
font-family: var(--cui-font-
|
|
66
|
-
font-size: var(--cui-font-size
|
|
67
|
-
font-weight:
|
|
68
|
-
line-height:
|
|
69
|
-
color: var(--cui-body-color
|
|
70
|
-
|
|
84
|
+
font-family: var(--cui-body-font-family);
|
|
85
|
+
font-size: var(--cui-body-font-size);
|
|
86
|
+
font-weight: var(--cui-body-font-weight);
|
|
87
|
+
line-height: var(--cui-body-line-height);
|
|
88
|
+
color: var(--cui-body-color);
|
|
89
|
+
text-align: var(--cui-body-text-align);
|
|
90
|
+
background-color: var(--cui-body-bg);
|
|
71
91
|
-webkit-text-size-adjust: 100%;
|
|
72
92
|
-webkit-tap-highlight-color: rgba(0, 0, 21, 0);
|
|
73
93
|
}
|
|
@@ -657,15 +677,15 @@ progress {
|
|
|
657
677
|
display: flex;
|
|
658
678
|
flex-wrap: wrap;
|
|
659
679
|
margin-top: calc(-1 * var(--cui-gutter-y));
|
|
660
|
-
margin-right: calc(
|
|
661
|
-
margin-left: calc(
|
|
680
|
+
margin-right: calc(-0.5 * var(--cui-gutter-x));
|
|
681
|
+
margin-left: calc(-0.5 * var(--cui-gutter-x));
|
|
662
682
|
}
|
|
663
683
|
.row > * {
|
|
664
684
|
flex-shrink: 0;
|
|
665
685
|
width: 100%;
|
|
666
686
|
max-width: 100%;
|
|
667
|
-
padding-right: calc(var(--cui-gutter-x) * .5);
|
|
668
|
-
padding-left: calc(var(--cui-gutter-x) * .5);
|
|
687
|
+
padding-right: calc(var(--cui-gutter-x) * 0.5);
|
|
688
|
+
padding-left: calc(var(--cui-gutter-x) * 0.5);
|
|
669
689
|
margin-top: var(--cui-gutter-y);
|
|
670
690
|
}
|
|
671
691
|
|
|
@@ -708,206 +728,6 @@ progress {
|
|
|
708
728
|
width: 16.6666666667%;
|
|
709
729
|
}
|
|
710
730
|
|
|
711
|
-
@media (min-width: 576px) {
|
|
712
|
-
.col-sm {
|
|
713
|
-
flex: 1 0 0%;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
.row-cols-sm-auto > * {
|
|
717
|
-
flex: 0 0 auto;
|
|
718
|
-
width: auto;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
.row-cols-sm-1 > * {
|
|
722
|
-
flex: 0 0 auto;
|
|
723
|
-
width: 100%;
|
|
724
|
-
}
|
|
725
|
-
|
|
726
|
-
.row-cols-sm-2 > * {
|
|
727
|
-
flex: 0 0 auto;
|
|
728
|
-
width: 50%;
|
|
729
|
-
}
|
|
730
|
-
|
|
731
|
-
.row-cols-sm-3 > * {
|
|
732
|
-
flex: 0 0 auto;
|
|
733
|
-
width: 33.3333333333%;
|
|
734
|
-
}
|
|
735
|
-
|
|
736
|
-
.row-cols-sm-4 > * {
|
|
737
|
-
flex: 0 0 auto;
|
|
738
|
-
width: 25%;
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
.row-cols-sm-5 > * {
|
|
742
|
-
flex: 0 0 auto;
|
|
743
|
-
width: 20%;
|
|
744
|
-
}
|
|
745
|
-
|
|
746
|
-
.row-cols-sm-6 > * {
|
|
747
|
-
flex: 0 0 auto;
|
|
748
|
-
width: 16.6666666667%;
|
|
749
|
-
}
|
|
750
|
-
}
|
|
751
|
-
@media (min-width: 768px) {
|
|
752
|
-
.col-md {
|
|
753
|
-
flex: 1 0 0%;
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
.row-cols-md-auto > * {
|
|
757
|
-
flex: 0 0 auto;
|
|
758
|
-
width: auto;
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
.row-cols-md-1 > * {
|
|
762
|
-
flex: 0 0 auto;
|
|
763
|
-
width: 100%;
|
|
764
|
-
}
|
|
765
|
-
|
|
766
|
-
.row-cols-md-2 > * {
|
|
767
|
-
flex: 0 0 auto;
|
|
768
|
-
width: 50%;
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
.row-cols-md-3 > * {
|
|
772
|
-
flex: 0 0 auto;
|
|
773
|
-
width: 33.3333333333%;
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
.row-cols-md-4 > * {
|
|
777
|
-
flex: 0 0 auto;
|
|
778
|
-
width: 25%;
|
|
779
|
-
}
|
|
780
|
-
|
|
781
|
-
.row-cols-md-5 > * {
|
|
782
|
-
flex: 0 0 auto;
|
|
783
|
-
width: 20%;
|
|
784
|
-
}
|
|
785
|
-
|
|
786
|
-
.row-cols-md-6 > * {
|
|
787
|
-
flex: 0 0 auto;
|
|
788
|
-
width: 16.6666666667%;
|
|
789
|
-
}
|
|
790
|
-
}
|
|
791
|
-
@media (min-width: 992px) {
|
|
792
|
-
.col-lg {
|
|
793
|
-
flex: 1 0 0%;
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
.row-cols-lg-auto > * {
|
|
797
|
-
flex: 0 0 auto;
|
|
798
|
-
width: auto;
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
.row-cols-lg-1 > * {
|
|
802
|
-
flex: 0 0 auto;
|
|
803
|
-
width: 100%;
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
.row-cols-lg-2 > * {
|
|
807
|
-
flex: 0 0 auto;
|
|
808
|
-
width: 50%;
|
|
809
|
-
}
|
|
810
|
-
|
|
811
|
-
.row-cols-lg-3 > * {
|
|
812
|
-
flex: 0 0 auto;
|
|
813
|
-
width: 33.3333333333%;
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
.row-cols-lg-4 > * {
|
|
817
|
-
flex: 0 0 auto;
|
|
818
|
-
width: 25%;
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
.row-cols-lg-5 > * {
|
|
822
|
-
flex: 0 0 auto;
|
|
823
|
-
width: 20%;
|
|
824
|
-
}
|
|
825
|
-
|
|
826
|
-
.row-cols-lg-6 > * {
|
|
827
|
-
flex: 0 0 auto;
|
|
828
|
-
width: 16.6666666667%;
|
|
829
|
-
}
|
|
830
|
-
}
|
|
831
|
-
@media (min-width: 1200px) {
|
|
832
|
-
.col-xl {
|
|
833
|
-
flex: 1 0 0%;
|
|
834
|
-
}
|
|
835
|
-
|
|
836
|
-
.row-cols-xl-auto > * {
|
|
837
|
-
flex: 0 0 auto;
|
|
838
|
-
width: auto;
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
.row-cols-xl-1 > * {
|
|
842
|
-
flex: 0 0 auto;
|
|
843
|
-
width: 100%;
|
|
844
|
-
}
|
|
845
|
-
|
|
846
|
-
.row-cols-xl-2 > * {
|
|
847
|
-
flex: 0 0 auto;
|
|
848
|
-
width: 50%;
|
|
849
|
-
}
|
|
850
|
-
|
|
851
|
-
.row-cols-xl-3 > * {
|
|
852
|
-
flex: 0 0 auto;
|
|
853
|
-
width: 33.3333333333%;
|
|
854
|
-
}
|
|
855
|
-
|
|
856
|
-
.row-cols-xl-4 > * {
|
|
857
|
-
flex: 0 0 auto;
|
|
858
|
-
width: 25%;
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
.row-cols-xl-5 > * {
|
|
862
|
-
flex: 0 0 auto;
|
|
863
|
-
width: 20%;
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
.row-cols-xl-6 > * {
|
|
867
|
-
flex: 0 0 auto;
|
|
868
|
-
width: 16.6666666667%;
|
|
869
|
-
}
|
|
870
|
-
}
|
|
871
|
-
@media (min-width: 1400px) {
|
|
872
|
-
.col-xxl {
|
|
873
|
-
flex: 1 0 0%;
|
|
874
|
-
}
|
|
875
|
-
|
|
876
|
-
.row-cols-xxl-auto > * {
|
|
877
|
-
flex: 0 0 auto;
|
|
878
|
-
width: auto;
|
|
879
|
-
}
|
|
880
|
-
|
|
881
|
-
.row-cols-xxl-1 > * {
|
|
882
|
-
flex: 0 0 auto;
|
|
883
|
-
width: 100%;
|
|
884
|
-
}
|
|
885
|
-
|
|
886
|
-
.row-cols-xxl-2 > * {
|
|
887
|
-
flex: 0 0 auto;
|
|
888
|
-
width: 50%;
|
|
889
|
-
}
|
|
890
|
-
|
|
891
|
-
.row-cols-xxl-3 > * {
|
|
892
|
-
flex: 0 0 auto;
|
|
893
|
-
width: 33.3333333333%;
|
|
894
|
-
}
|
|
895
|
-
|
|
896
|
-
.row-cols-xxl-4 > * {
|
|
897
|
-
flex: 0 0 auto;
|
|
898
|
-
width: 25%;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
.row-cols-xxl-5 > * {
|
|
902
|
-
flex: 0 0 auto;
|
|
903
|
-
width: 20%;
|
|
904
|
-
}
|
|
905
|
-
|
|
906
|
-
.row-cols-xxl-6 > * {
|
|
907
|
-
flex: 0 0 auto;
|
|
908
|
-
width: 16.6666666667%;
|
|
909
|
-
}
|
|
910
|
-
}
|
|
911
731
|
.col-auto {
|
|
912
732
|
flex: 0 0 auto;
|
|
913
733
|
width: auto;
|
|
@@ -1078,6 +898,45 @@ progress {
|
|
|
1078
898
|
}
|
|
1079
899
|
|
|
1080
900
|
@media (min-width: 576px) {
|
|
901
|
+
.col-sm {
|
|
902
|
+
flex: 1 0 0%;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
.row-cols-sm-auto > * {
|
|
906
|
+
flex: 0 0 auto;
|
|
907
|
+
width: auto;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.row-cols-sm-1 > * {
|
|
911
|
+
flex: 0 0 auto;
|
|
912
|
+
width: 100%;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
.row-cols-sm-2 > * {
|
|
916
|
+
flex: 0 0 auto;
|
|
917
|
+
width: 50%;
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.row-cols-sm-3 > * {
|
|
921
|
+
flex: 0 0 auto;
|
|
922
|
+
width: 33.3333333333%;
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
.row-cols-sm-4 > * {
|
|
926
|
+
flex: 0 0 auto;
|
|
927
|
+
width: 25%;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
.row-cols-sm-5 > * {
|
|
931
|
+
flex: 0 0 auto;
|
|
932
|
+
width: 20%;
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
.row-cols-sm-6 > * {
|
|
936
|
+
flex: 0 0 auto;
|
|
937
|
+
width: 16.6666666667%;
|
|
938
|
+
}
|
|
939
|
+
|
|
1081
940
|
.col-sm-auto {
|
|
1082
941
|
flex: 0 0 auto;
|
|
1083
942
|
width: auto;
|
|
@@ -1252,6 +1111,45 @@ progress {
|
|
|
1252
1111
|
}
|
|
1253
1112
|
}
|
|
1254
1113
|
@media (min-width: 768px) {
|
|
1114
|
+
.col-md {
|
|
1115
|
+
flex: 1 0 0%;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
.row-cols-md-auto > * {
|
|
1119
|
+
flex: 0 0 auto;
|
|
1120
|
+
width: auto;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
.row-cols-md-1 > * {
|
|
1124
|
+
flex: 0 0 auto;
|
|
1125
|
+
width: 100%;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
.row-cols-md-2 > * {
|
|
1129
|
+
flex: 0 0 auto;
|
|
1130
|
+
width: 50%;
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
.row-cols-md-3 > * {
|
|
1134
|
+
flex: 0 0 auto;
|
|
1135
|
+
width: 33.3333333333%;
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
.row-cols-md-4 > * {
|
|
1139
|
+
flex: 0 0 auto;
|
|
1140
|
+
width: 25%;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
.row-cols-md-5 > * {
|
|
1144
|
+
flex: 0 0 auto;
|
|
1145
|
+
width: 20%;
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
.row-cols-md-6 > * {
|
|
1149
|
+
flex: 0 0 auto;
|
|
1150
|
+
width: 16.6666666667%;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1255
1153
|
.col-md-auto {
|
|
1256
1154
|
flex: 0 0 auto;
|
|
1257
1155
|
width: auto;
|
|
@@ -1426,6 +1324,45 @@ progress {
|
|
|
1426
1324
|
}
|
|
1427
1325
|
}
|
|
1428
1326
|
@media (min-width: 992px) {
|
|
1327
|
+
.col-lg {
|
|
1328
|
+
flex: 1 0 0%;
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
.row-cols-lg-auto > * {
|
|
1332
|
+
flex: 0 0 auto;
|
|
1333
|
+
width: auto;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
.row-cols-lg-1 > * {
|
|
1337
|
+
flex: 0 0 auto;
|
|
1338
|
+
width: 100%;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.row-cols-lg-2 > * {
|
|
1342
|
+
flex: 0 0 auto;
|
|
1343
|
+
width: 50%;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
.row-cols-lg-3 > * {
|
|
1347
|
+
flex: 0 0 auto;
|
|
1348
|
+
width: 33.3333333333%;
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
.row-cols-lg-4 > * {
|
|
1352
|
+
flex: 0 0 auto;
|
|
1353
|
+
width: 25%;
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
.row-cols-lg-5 > * {
|
|
1357
|
+
flex: 0 0 auto;
|
|
1358
|
+
width: 20%;
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
.row-cols-lg-6 > * {
|
|
1362
|
+
flex: 0 0 auto;
|
|
1363
|
+
width: 16.6666666667%;
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1429
1366
|
.col-lg-auto {
|
|
1430
1367
|
flex: 0 0 auto;
|
|
1431
1368
|
width: auto;
|
|
@@ -1600,6 +1537,45 @@ progress {
|
|
|
1600
1537
|
}
|
|
1601
1538
|
}
|
|
1602
1539
|
@media (min-width: 1200px) {
|
|
1540
|
+
.col-xl {
|
|
1541
|
+
flex: 1 0 0%;
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
.row-cols-xl-auto > * {
|
|
1545
|
+
flex: 0 0 auto;
|
|
1546
|
+
width: auto;
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
.row-cols-xl-1 > * {
|
|
1550
|
+
flex: 0 0 auto;
|
|
1551
|
+
width: 100%;
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
.row-cols-xl-2 > * {
|
|
1555
|
+
flex: 0 0 auto;
|
|
1556
|
+
width: 50%;
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
.row-cols-xl-3 > * {
|
|
1560
|
+
flex: 0 0 auto;
|
|
1561
|
+
width: 33.3333333333%;
|
|
1562
|
+
}
|
|
1563
|
+
|
|
1564
|
+
.row-cols-xl-4 > * {
|
|
1565
|
+
flex: 0 0 auto;
|
|
1566
|
+
width: 25%;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.row-cols-xl-5 > * {
|
|
1570
|
+
flex: 0 0 auto;
|
|
1571
|
+
width: 20%;
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
.row-cols-xl-6 > * {
|
|
1575
|
+
flex: 0 0 auto;
|
|
1576
|
+
width: 16.6666666667%;
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1603
1579
|
.col-xl-auto {
|
|
1604
1580
|
flex: 0 0 auto;
|
|
1605
1581
|
width: auto;
|
|
@@ -1774,6 +1750,45 @@ progress {
|
|
|
1774
1750
|
}
|
|
1775
1751
|
}
|
|
1776
1752
|
@media (min-width: 1400px) {
|
|
1753
|
+
.col-xxl {
|
|
1754
|
+
flex: 1 0 0%;
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1757
|
+
.row-cols-xxl-auto > * {
|
|
1758
|
+
flex: 0 0 auto;
|
|
1759
|
+
width: auto;
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
.row-cols-xxl-1 > * {
|
|
1763
|
+
flex: 0 0 auto;
|
|
1764
|
+
width: 100%;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
.row-cols-xxl-2 > * {
|
|
1768
|
+
flex: 0 0 auto;
|
|
1769
|
+
width: 50%;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
.row-cols-xxl-3 > * {
|
|
1773
|
+
flex: 0 0 auto;
|
|
1774
|
+
width: 33.3333333333%;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
.row-cols-xxl-4 > * {
|
|
1778
|
+
flex: 0 0 auto;
|
|
1779
|
+
width: 25%;
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
.row-cols-xxl-5 > * {
|
|
1783
|
+
flex: 0 0 auto;
|
|
1784
|
+
width: 20%;
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1787
|
+
.row-cols-xxl-6 > * {
|
|
1788
|
+
flex: 0 0 auto;
|
|
1789
|
+
width: 16.6666666667%;
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1777
1792
|
.col-xxl-auto {
|
|
1778
1793
|
flex: 0 0 auto;
|
|
1779
1794
|
width: auto;
|
|
@@ -1978,6 +1993,7 @@ progress {
|
|
|
1978
1993
|
.table > thead {
|
|
1979
1994
|
vertical-align: bottom;
|
|
1980
1995
|
}
|
|
1996
|
+
|
|
1981
1997
|
.caption-top {
|
|
1982
1998
|
caption-side: top;
|
|
1983
1999
|
}
|
|
@@ -1996,8 +2012,11 @@ progress {
|
|
|
1996
2012
|
.table-borderless > :not(caption) > * > * {
|
|
1997
2013
|
border-bottom-width: 0;
|
|
1998
2014
|
}
|
|
2015
|
+
.table-borderless > :not(:first-child) {
|
|
2016
|
+
border-top-width: 0;
|
|
2017
|
+
}
|
|
1999
2018
|
|
|
2000
|
-
.table-striped > tbody > tr:nth-of-type(odd) {
|
|
2019
|
+
.table-striped > tbody > tr:nth-of-type(odd) > * {
|
|
2001
2020
|
--cui-table-accent-bg: var(--cui-table-striped-bg);
|
|
2002
2021
|
color: var(--cui-table-striped-color);
|
|
2003
2022
|
}
|
|
@@ -2007,7 +2026,7 @@ progress {
|
|
|
2007
2026
|
color: var(--cui-table-active-color);
|
|
2008
2027
|
}
|
|
2009
2028
|
|
|
2010
|
-
.table-hover > tbody > tr:hover {
|
|
2029
|
+
.table-hover > tbody > tr:hover > * {
|
|
2011
2030
|
--cui-table-accent-bg: var(--cui-table-hover-bg);
|
|
2012
2031
|
color: var(--cui-table-hover-color);
|
|
2013
2032
|
}
|
|
@@ -2298,7 +2317,7 @@ progress {
|
|
|
2298
2317
|
}
|
|
2299
2318
|
|
|
2300
2319
|
.form-control-sm {
|
|
2301
|
-
min-height: calc(1.5em +
|
|
2320
|
+
min-height: calc(1.5em + 0.5rem + 2px);
|
|
2302
2321
|
padding: 0.25rem 0.5rem;
|
|
2303
2322
|
font-size: 0.875rem;
|
|
2304
2323
|
border-radius: 0.2rem;
|
|
@@ -2315,7 +2334,7 @@ progress {
|
|
|
2315
2334
|
}
|
|
2316
2335
|
|
|
2317
2336
|
.form-control-lg {
|
|
2318
|
-
min-height: calc(1.5em +
|
|
2337
|
+
min-height: calc(1.5em + 1rem + 2px);
|
|
2319
2338
|
padding: 0.5rem 1rem;
|
|
2320
2339
|
font-size: 1.25rem;
|
|
2321
2340
|
border-radius: 0.3rem;
|
|
@@ -2332,17 +2351,17 @@ progress {
|
|
|
2332
2351
|
}
|
|
2333
2352
|
|
|
2334
2353
|
textarea.form-control {
|
|
2335
|
-
min-height: calc(1.5em +
|
|
2354
|
+
min-height: calc(1.5em + 0.75rem + 2px);
|
|
2336
2355
|
}
|
|
2337
2356
|
textarea.form-control-sm {
|
|
2338
|
-
min-height: calc(1.5em +
|
|
2357
|
+
min-height: calc(1.5em + 0.5rem + 2px);
|
|
2339
2358
|
}
|
|
2340
2359
|
textarea.form-control-lg {
|
|
2341
|
-
min-height: calc(1.5em +
|
|
2360
|
+
min-height: calc(1.5em + 1rem + 2px);
|
|
2342
2361
|
}
|
|
2343
2362
|
|
|
2344
2363
|
.form-control-color {
|
|
2345
|
-
|
|
2364
|
+
width: 3rem;
|
|
2346
2365
|
height: auto;
|
|
2347
2366
|
padding: 0.375rem;
|
|
2348
2367
|
}
|
|
@@ -2406,6 +2425,7 @@ textarea.form-control-lg {
|
|
|
2406
2425
|
padding-bottom: 0.25rem;
|
|
2407
2426
|
padding-right: 0.5rem;
|
|
2408
2427
|
font-size: 0.875rem;
|
|
2428
|
+
border-radius: 0.2rem;
|
|
2409
2429
|
}
|
|
2410
2430
|
|
|
2411
2431
|
.form-select-lg {
|
|
@@ -2413,6 +2433,7 @@ textarea.form-control-lg {
|
|
|
2413
2433
|
padding-bottom: 0.5rem;
|
|
2414
2434
|
padding-right: 1rem;
|
|
2415
2435
|
font-size: 1.25rem;
|
|
2436
|
+
border-radius: 0.3rem;
|
|
2416
2437
|
}
|
|
2417
2438
|
|
|
2418
2439
|
.form-check {
|
|
@@ -2482,14 +2503,14 @@ textarea.form-control-lg {
|
|
|
2482
2503
|
}
|
|
2483
2504
|
|
|
2484
2505
|
.form-switch {
|
|
2485
|
-
padding-right:
|
|
2506
|
+
padding-right: 2.5em;
|
|
2486
2507
|
}
|
|
2487
2508
|
.form-switch .form-check-input {
|
|
2488
|
-
width:
|
|
2489
|
-
margin-right: -
|
|
2490
|
-
background-image: var(--cui-form-switch-bg-image, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0,
|
|
2509
|
+
width: 2em;
|
|
2510
|
+
margin-right: -2.5em;
|
|
2511
|
+
background-image: var(--cui-form-switch-bg-image, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 21, 0.25%29'/%3e%3c/svg%3e"));
|
|
2491
2512
|
background-position: left center;
|
|
2492
|
-
border-radius:
|
|
2513
|
+
border-radius: 2em;
|
|
2493
2514
|
transition: background-position 0.15s ease-in-out;
|
|
2494
2515
|
}
|
|
2495
2516
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -3424,6 +3445,16 @@ textarea.form-control-lg {
|
|
|
3424
3445
|
transition: none;
|
|
3425
3446
|
}
|
|
3426
3447
|
}
|
|
3448
|
+
.collapsing.collapse-horizontal {
|
|
3449
|
+
width: 0;
|
|
3450
|
+
height: auto;
|
|
3451
|
+
transition: width 0.35s ease;
|
|
3452
|
+
}
|
|
3453
|
+
@media (prefers-reduced-motion: reduce) {
|
|
3454
|
+
.collapsing.collapse-horizontal {
|
|
3455
|
+
transition: none;
|
|
3456
|
+
}
|
|
3457
|
+
}
|
|
3427
3458
|
|
|
3428
3459
|
.dropup,
|
|
3429
3460
|
.dropend,
|
|
@@ -3856,8 +3887,8 @@ textarea.form-control-lg {
|
|
|
3856
3887
|
border-top-right-radius: 0.25rem;
|
|
3857
3888
|
}
|
|
3858
3889
|
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
|
|
3859
|
-
border-color: var(--cui-nav-tabs-link-hover-border-color, #d8dbe0 #d8dbe0 #c4c9d0);
|
|
3860
3890
|
isolation: isolate;
|
|
3891
|
+
border-color: var(--cui-nav-tabs-link-hover-border-color, #d8dbe0 #d8dbe0 #c4c9d0);
|
|
3861
3892
|
}
|
|
3862
3893
|
.nav-tabs .nav-link.disabled {
|
|
3863
3894
|
color: var(--cui-nav-link-disabled-color, #8a93a2);
|
|
@@ -4060,6 +4091,33 @@ textarea.form-control-lg {
|
|
|
4060
4091
|
.navbar-expand-sm .navbar-toggler {
|
|
4061
4092
|
display: none;
|
|
4062
4093
|
}
|
|
4094
|
+
.navbar-expand-sm .offcanvas-header {
|
|
4095
|
+
display: none;
|
|
4096
|
+
}
|
|
4097
|
+
.navbar-expand-sm .offcanvas {
|
|
4098
|
+
position: inherit;
|
|
4099
|
+
bottom: 0;
|
|
4100
|
+
z-index: 1000;
|
|
4101
|
+
flex-grow: 1;
|
|
4102
|
+
visibility: visible !important;
|
|
4103
|
+
background-color: transparent;
|
|
4104
|
+
border-right: 0;
|
|
4105
|
+
border-left: 0;
|
|
4106
|
+
transition: none;
|
|
4107
|
+
transform: none;
|
|
4108
|
+
}
|
|
4109
|
+
.navbar-expand-sm .offcanvas-top,
|
|
4110
|
+
.navbar-expand-sm .offcanvas-bottom {
|
|
4111
|
+
height: auto;
|
|
4112
|
+
border-top: 0;
|
|
4113
|
+
border-bottom: 0;
|
|
4114
|
+
}
|
|
4115
|
+
.navbar-expand-sm .offcanvas-body {
|
|
4116
|
+
display: flex;
|
|
4117
|
+
flex-grow: 0;
|
|
4118
|
+
padding: 0;
|
|
4119
|
+
overflow-y: visible;
|
|
4120
|
+
}
|
|
4063
4121
|
}
|
|
4064
4122
|
@media (min-width: 768px) {
|
|
4065
4123
|
.navbar-expand-md {
|
|
@@ -4086,6 +4144,33 @@ textarea.form-control-lg {
|
|
|
4086
4144
|
.navbar-expand-md .navbar-toggler {
|
|
4087
4145
|
display: none;
|
|
4088
4146
|
}
|
|
4147
|
+
.navbar-expand-md .offcanvas-header {
|
|
4148
|
+
display: none;
|
|
4149
|
+
}
|
|
4150
|
+
.navbar-expand-md .offcanvas {
|
|
4151
|
+
position: inherit;
|
|
4152
|
+
bottom: 0;
|
|
4153
|
+
z-index: 1000;
|
|
4154
|
+
flex-grow: 1;
|
|
4155
|
+
visibility: visible !important;
|
|
4156
|
+
background-color: transparent;
|
|
4157
|
+
border-right: 0;
|
|
4158
|
+
border-left: 0;
|
|
4159
|
+
transition: none;
|
|
4160
|
+
transform: none;
|
|
4161
|
+
}
|
|
4162
|
+
.navbar-expand-md .offcanvas-top,
|
|
4163
|
+
.navbar-expand-md .offcanvas-bottom {
|
|
4164
|
+
height: auto;
|
|
4165
|
+
border-top: 0;
|
|
4166
|
+
border-bottom: 0;
|
|
4167
|
+
}
|
|
4168
|
+
.navbar-expand-md .offcanvas-body {
|
|
4169
|
+
display: flex;
|
|
4170
|
+
flex-grow: 0;
|
|
4171
|
+
padding: 0;
|
|
4172
|
+
overflow-y: visible;
|
|
4173
|
+
}
|
|
4089
4174
|
}
|
|
4090
4175
|
@media (min-width: 992px) {
|
|
4091
4176
|
.navbar-expand-lg {
|
|
@@ -4112,6 +4197,33 @@ textarea.form-control-lg {
|
|
|
4112
4197
|
.navbar-expand-lg .navbar-toggler {
|
|
4113
4198
|
display: none;
|
|
4114
4199
|
}
|
|
4200
|
+
.navbar-expand-lg .offcanvas-header {
|
|
4201
|
+
display: none;
|
|
4202
|
+
}
|
|
4203
|
+
.navbar-expand-lg .offcanvas {
|
|
4204
|
+
position: inherit;
|
|
4205
|
+
bottom: 0;
|
|
4206
|
+
z-index: 1000;
|
|
4207
|
+
flex-grow: 1;
|
|
4208
|
+
visibility: visible !important;
|
|
4209
|
+
background-color: transparent;
|
|
4210
|
+
border-right: 0;
|
|
4211
|
+
border-left: 0;
|
|
4212
|
+
transition: none;
|
|
4213
|
+
transform: none;
|
|
4214
|
+
}
|
|
4215
|
+
.navbar-expand-lg .offcanvas-top,
|
|
4216
|
+
.navbar-expand-lg .offcanvas-bottom {
|
|
4217
|
+
height: auto;
|
|
4218
|
+
border-top: 0;
|
|
4219
|
+
border-bottom: 0;
|
|
4220
|
+
}
|
|
4221
|
+
.navbar-expand-lg .offcanvas-body {
|
|
4222
|
+
display: flex;
|
|
4223
|
+
flex-grow: 0;
|
|
4224
|
+
padding: 0;
|
|
4225
|
+
overflow-y: visible;
|
|
4226
|
+
}
|
|
4115
4227
|
}
|
|
4116
4228
|
@media (min-width: 1200px) {
|
|
4117
4229
|
.navbar-expand-xl {
|
|
@@ -4138,6 +4250,33 @@ textarea.form-control-lg {
|
|
|
4138
4250
|
.navbar-expand-xl .navbar-toggler {
|
|
4139
4251
|
display: none;
|
|
4140
4252
|
}
|
|
4253
|
+
.navbar-expand-xl .offcanvas-header {
|
|
4254
|
+
display: none;
|
|
4255
|
+
}
|
|
4256
|
+
.navbar-expand-xl .offcanvas {
|
|
4257
|
+
position: inherit;
|
|
4258
|
+
bottom: 0;
|
|
4259
|
+
z-index: 1000;
|
|
4260
|
+
flex-grow: 1;
|
|
4261
|
+
visibility: visible !important;
|
|
4262
|
+
background-color: transparent;
|
|
4263
|
+
border-right: 0;
|
|
4264
|
+
border-left: 0;
|
|
4265
|
+
transition: none;
|
|
4266
|
+
transform: none;
|
|
4267
|
+
}
|
|
4268
|
+
.navbar-expand-xl .offcanvas-top,
|
|
4269
|
+
.navbar-expand-xl .offcanvas-bottom {
|
|
4270
|
+
height: auto;
|
|
4271
|
+
border-top: 0;
|
|
4272
|
+
border-bottom: 0;
|
|
4273
|
+
}
|
|
4274
|
+
.navbar-expand-xl .offcanvas-body {
|
|
4275
|
+
display: flex;
|
|
4276
|
+
flex-grow: 0;
|
|
4277
|
+
padding: 0;
|
|
4278
|
+
overflow-y: visible;
|
|
4279
|
+
}
|
|
4141
4280
|
}
|
|
4142
4281
|
@media (min-width: 1400px) {
|
|
4143
4282
|
.navbar-expand-xxl {
|
|
@@ -4164,6 +4303,33 @@ textarea.form-control-lg {
|
|
|
4164
4303
|
.navbar-expand-xxl .navbar-toggler {
|
|
4165
4304
|
display: none;
|
|
4166
4305
|
}
|
|
4306
|
+
.navbar-expand-xxl .offcanvas-header {
|
|
4307
|
+
display: none;
|
|
4308
|
+
}
|
|
4309
|
+
.navbar-expand-xxl .offcanvas {
|
|
4310
|
+
position: inherit;
|
|
4311
|
+
bottom: 0;
|
|
4312
|
+
z-index: 1000;
|
|
4313
|
+
flex-grow: 1;
|
|
4314
|
+
visibility: visible !important;
|
|
4315
|
+
background-color: transparent;
|
|
4316
|
+
border-right: 0;
|
|
4317
|
+
border-left: 0;
|
|
4318
|
+
transition: none;
|
|
4319
|
+
transform: none;
|
|
4320
|
+
}
|
|
4321
|
+
.navbar-expand-xxl .offcanvas-top,
|
|
4322
|
+
.navbar-expand-xxl .offcanvas-bottom {
|
|
4323
|
+
height: auto;
|
|
4324
|
+
border-top: 0;
|
|
4325
|
+
border-bottom: 0;
|
|
4326
|
+
}
|
|
4327
|
+
.navbar-expand-xxl .offcanvas-body {
|
|
4328
|
+
display: flex;
|
|
4329
|
+
flex-grow: 0;
|
|
4330
|
+
padding: 0;
|
|
4331
|
+
overflow-y: visible;
|
|
4332
|
+
}
|
|
4167
4333
|
}
|
|
4168
4334
|
.navbar-expand {
|
|
4169
4335
|
flex-wrap: nowrap;
|
|
@@ -4189,6 +4355,33 @@ textarea.form-control-lg {
|
|
|
4189
4355
|
.navbar-expand .navbar-toggler {
|
|
4190
4356
|
display: none;
|
|
4191
4357
|
}
|
|
4358
|
+
.navbar-expand .offcanvas-header {
|
|
4359
|
+
display: none;
|
|
4360
|
+
}
|
|
4361
|
+
.navbar-expand .offcanvas {
|
|
4362
|
+
position: inherit;
|
|
4363
|
+
bottom: 0;
|
|
4364
|
+
z-index: 1000;
|
|
4365
|
+
flex-grow: 1;
|
|
4366
|
+
visibility: visible !important;
|
|
4367
|
+
background-color: transparent;
|
|
4368
|
+
border-right: 0;
|
|
4369
|
+
border-left: 0;
|
|
4370
|
+
transition: none;
|
|
4371
|
+
transform: none;
|
|
4372
|
+
}
|
|
4373
|
+
.navbar-expand .offcanvas-top,
|
|
4374
|
+
.navbar-expand .offcanvas-bottom {
|
|
4375
|
+
height: auto;
|
|
4376
|
+
border-top: 0;
|
|
4377
|
+
border-bottom: 0;
|
|
4378
|
+
}
|
|
4379
|
+
.navbar-expand .offcanvas-body {
|
|
4380
|
+
display: flex;
|
|
4381
|
+
flex-grow: 0;
|
|
4382
|
+
padding: 0;
|
|
4383
|
+
overflow-y: visible;
|
|
4384
|
+
}
|
|
4192
4385
|
|
|
4193
4386
|
.navbar-light {
|
|
4194
4387
|
--cui-navbar-brand-color: rgba(44, 56, 74, 0.95);
|
|
@@ -4265,9 +4458,6 @@ textarea.form-control-lg {
|
|
|
4265
4458
|
margin-bottom: 0;
|
|
4266
4459
|
}
|
|
4267
4460
|
|
|
4268
|
-
.card-link:hover {
|
|
4269
|
-
text-decoration: none;
|
|
4270
|
-
}
|
|
4271
4461
|
.card-link + .card-link {
|
|
4272
4462
|
margin-right: 1rem;
|
|
4273
4463
|
}
|
|
@@ -5135,14 +5325,14 @@ textarea.form-control-lg {
|
|
|
5135
5325
|
pointer-events: auto;
|
|
5136
5326
|
background-color: var(--cui-toast-background-color, rgba(255, 255, 255, 0.85));
|
|
5137
5327
|
background-clip: padding-box;
|
|
5138
|
-
border: 1px solid var(--cui-toast-border-color, rgba(0, 0,
|
|
5328
|
+
border: 1px solid var(--cui-toast-border-color, rgba(0, 0, 21, 0.1));
|
|
5139
5329
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 21, 0.15);
|
|
5140
5330
|
border-radius: 0.25rem;
|
|
5141
5331
|
}
|
|
5142
|
-
.toast
|
|
5332
|
+
.toast.showing {
|
|
5143
5333
|
opacity: 0;
|
|
5144
5334
|
}
|
|
5145
|
-
.toast.
|
|
5335
|
+
.toast:not(.show) {
|
|
5146
5336
|
display: none;
|
|
5147
5337
|
}
|
|
5148
5338
|
|
|
@@ -5163,7 +5353,7 @@ textarea.form-control-lg {
|
|
|
5163
5353
|
color: var(--cui-toast-header-color, #8a93a2);
|
|
5164
5354
|
background-color: var(--cui-toast-header-background-color, rgba(255, 255, 255, 0.85));
|
|
5165
5355
|
background-clip: padding-box;
|
|
5166
|
-
border-bottom: 1px solid var(--cui-toast-header-border-color, rgba(0, 0,
|
|
5356
|
+
border-bottom: 1px solid var(--cui-toast-header-border-color, rgba(0, 0, 21, 0.05));
|
|
5167
5357
|
border-top-left-radius: calc(0.25rem - 1px);
|
|
5168
5358
|
border-top-right-radius: calc(0.25rem - 1px);
|
|
5169
5359
|
}
|
|
@@ -5181,7 +5371,7 @@ textarea.form-control-lg {
|
|
|
5181
5371
|
position: fixed;
|
|
5182
5372
|
top: 0;
|
|
5183
5373
|
right: 0;
|
|
5184
|
-
z-index:
|
|
5374
|
+
z-index: 1055;
|
|
5185
5375
|
display: none;
|
|
5186
5376
|
width: 100%;
|
|
5187
5377
|
height: 100%;
|
|
@@ -5246,8 +5436,8 @@ textarea.form-control-lg {
|
|
|
5246
5436
|
.modal-backdrop {
|
|
5247
5437
|
position: fixed;
|
|
5248
5438
|
top: 0;
|
|
5249
|
-
|
|
5250
|
-
z-index:
|
|
5439
|
+
left: 0;
|
|
5440
|
+
z-index: 1050;
|
|
5251
5441
|
width: 100vw;
|
|
5252
5442
|
height: 100vh;
|
|
5253
5443
|
background-color: var(--cui-modal-backdrop-bg, #000015);
|
|
@@ -5287,8 +5477,8 @@ textarea.form-control-lg {
|
|
|
5287
5477
|
|
|
5288
5478
|
.modal-footer {
|
|
5289
5479
|
display: flex;
|
|
5290
|
-
flex-wrap: wrap;
|
|
5291
5480
|
flex-shrink: 0;
|
|
5481
|
+
flex-wrap: wrap;
|
|
5292
5482
|
align-items: center;
|
|
5293
5483
|
justify-content: flex-end;
|
|
5294
5484
|
padding: 0.75rem;
|
|
@@ -5476,8 +5666,8 @@ textarea.form-control-lg {
|
|
|
5476
5666
|
text-transform: none;
|
|
5477
5667
|
letter-spacing: normal;
|
|
5478
5668
|
word-break: normal;
|
|
5479
|
-
word-spacing: normal;
|
|
5480
5669
|
white-space: normal;
|
|
5670
|
+
word-spacing: normal;
|
|
5481
5671
|
line-break: auto;
|
|
5482
5672
|
font-size: 0.875rem;
|
|
5483
5673
|
word-wrap: break-word;
|
|
@@ -5578,8 +5768,8 @@ textarea.form-control-lg {
|
|
|
5578
5768
|
text-transform: none;
|
|
5579
5769
|
letter-spacing: normal;
|
|
5580
5770
|
word-break: normal;
|
|
5581
|
-
word-spacing: normal;
|
|
5582
5771
|
white-space: normal;
|
|
5772
|
+
word-spacing: normal;
|
|
5583
5773
|
line-break: auto;
|
|
5584
5774
|
font-size: 0.875rem;
|
|
5585
5775
|
word-wrap: break-word;
|
|
@@ -5957,7 +6147,7 @@ textarea.form-control-lg {
|
|
|
5957
6147
|
.offcanvas {
|
|
5958
6148
|
position: fixed;
|
|
5959
6149
|
bottom: 0;
|
|
5960
|
-
z-index:
|
|
6150
|
+
z-index: 1045;
|
|
5961
6151
|
display: flex;
|
|
5962
6152
|
flex-direction: column;
|
|
5963
6153
|
max-width: 100%;
|
|
@@ -5974,6 +6164,22 @@ textarea.form-control-lg {
|
|
|
5974
6164
|
}
|
|
5975
6165
|
}
|
|
5976
6166
|
|
|
6167
|
+
.offcanvas-backdrop {
|
|
6168
|
+
position: fixed;
|
|
6169
|
+
top: 0;
|
|
6170
|
+
left: 0;
|
|
6171
|
+
z-index: 1040;
|
|
6172
|
+
width: 100vw;
|
|
6173
|
+
height: 100vh;
|
|
6174
|
+
background-color: #000015;
|
|
6175
|
+
}
|
|
6176
|
+
.offcanvas-backdrop.fade {
|
|
6177
|
+
opacity: 0;
|
|
6178
|
+
}
|
|
6179
|
+
.offcanvas-backdrop.show {
|
|
6180
|
+
opacity: 0.5;
|
|
6181
|
+
}
|
|
6182
|
+
|
|
5977
6183
|
.offcanvas-header {
|
|
5978
6184
|
display: flex;
|
|
5979
6185
|
align-items: center;
|
|
@@ -6003,7 +6209,7 @@ textarea.form-control-lg {
|
|
|
6003
6209
|
right: 0;
|
|
6004
6210
|
width: 400px;
|
|
6005
6211
|
border-left: 1px solid rgba(0, 0, 21, 0.2);
|
|
6006
|
-
transform: translateX(
|
|
6212
|
+
transform: translateX(100%);
|
|
6007
6213
|
}
|
|
6008
6214
|
|
|
6009
6215
|
.offcanvas-end {
|
|
@@ -6011,7 +6217,7 @@ textarea.form-control-lg {
|
|
|
6011
6217
|
left: 0;
|
|
6012
6218
|
width: 400px;
|
|
6013
6219
|
border-right: 1px solid rgba(0, 0, 21, 0.2);
|
|
6014
|
-
transform: translateX(100%);
|
|
6220
|
+
transform: translateX(-100%);
|
|
6015
6221
|
}
|
|
6016
6222
|
|
|
6017
6223
|
.offcanvas-top {
|
|
@@ -6037,6 +6243,51 @@ textarea.form-control-lg {
|
|
|
6037
6243
|
transform: none;
|
|
6038
6244
|
}
|
|
6039
6245
|
|
|
6246
|
+
.placeholder {
|
|
6247
|
+
display: inline-block;
|
|
6248
|
+
min-height: 1em;
|
|
6249
|
+
vertical-align: middle;
|
|
6250
|
+
cursor: wait;
|
|
6251
|
+
background-color: currentColor;
|
|
6252
|
+
opacity: 0.5;
|
|
6253
|
+
}
|
|
6254
|
+
.placeholder.btn::before {
|
|
6255
|
+
display: inline-block;
|
|
6256
|
+
content: "";
|
|
6257
|
+
}
|
|
6258
|
+
|
|
6259
|
+
.placeholder-xs {
|
|
6260
|
+
min-height: 0.6em;
|
|
6261
|
+
}
|
|
6262
|
+
|
|
6263
|
+
.placeholder-sm {
|
|
6264
|
+
min-height: 0.8em;
|
|
6265
|
+
}
|
|
6266
|
+
|
|
6267
|
+
.placeholder-lg {
|
|
6268
|
+
min-height: 1.2em;
|
|
6269
|
+
}
|
|
6270
|
+
|
|
6271
|
+
.placeholder-glow .placeholder {
|
|
6272
|
+
animation: placeholder-glow 2s ease-in-out infinite;
|
|
6273
|
+
}
|
|
6274
|
+
|
|
6275
|
+
@keyframes placeholder-glow {
|
|
6276
|
+
50% {
|
|
6277
|
+
opacity: 0.2;
|
|
6278
|
+
}
|
|
6279
|
+
}
|
|
6280
|
+
.placeholder-wave {
|
|
6281
|
+
mask-image: linear-gradient(130deg, #000015 55%, rgba(0, 0, 0, 0.8) 75%, #000015 95%);
|
|
6282
|
+
mask-size: 200% 100%;
|
|
6283
|
+
animation: placeholder-wave 2s linear infinite;
|
|
6284
|
+
}
|
|
6285
|
+
|
|
6286
|
+
@keyframes placeholder-wave {
|
|
6287
|
+
100% {
|
|
6288
|
+
mask-position: -200% 0%;
|
|
6289
|
+
}
|
|
6290
|
+
}
|
|
6040
6291
|
.avatar {
|
|
6041
6292
|
position: relative;
|
|
6042
6293
|
display: inline-flex;
|
|
@@ -6445,20 +6696,6 @@ textarea.form-control-lg {
|
|
|
6445
6696
|
.sidebar.sidebar-end ~ * {
|
|
6446
6697
|
--cui-sidebar-occupy-end: 16rem;
|
|
6447
6698
|
}
|
|
6448
|
-
@media (min-width: 768px) {
|
|
6449
|
-
.sidebar.hide:not(.sidebar-end) {
|
|
6450
|
-
margin-right: calc(-1 * var(--cui-sidebar-width));
|
|
6451
|
-
}
|
|
6452
|
-
.sidebar.hide:not(.sidebar-end) ~ * {
|
|
6453
|
-
--cui-sidebar-occupy-start: 0;
|
|
6454
|
-
}
|
|
6455
|
-
.sidebar.hide.sidebar-end {
|
|
6456
|
-
margin-left: calc(-1 * var(--cui-sidebar-width));
|
|
6457
|
-
}
|
|
6458
|
-
.sidebar.hide.sidebar-end ~ * {
|
|
6459
|
-
--cui-sidebar-occupy-end: 0;
|
|
6460
|
-
}
|
|
6461
|
-
}
|
|
6462
6699
|
.sidebar[class*=bg-] {
|
|
6463
6700
|
border-color: rgba(0, 0, 21, 0.1);
|
|
6464
6701
|
}
|
|
@@ -6495,6 +6732,20 @@ textarea.form-control-lg {
|
|
|
6495
6732
|
--cui-sidebar-occupy-end: 24rem;
|
|
6496
6733
|
}
|
|
6497
6734
|
}
|
|
6735
|
+
@media (min-width: 768px) {
|
|
6736
|
+
.sidebar.hide:not(.sidebar-end) {
|
|
6737
|
+
margin-right: calc(-1 * var(--cui-sidebar-width));
|
|
6738
|
+
}
|
|
6739
|
+
.sidebar.hide:not(.sidebar-end) ~ * {
|
|
6740
|
+
--cui-sidebar-occupy-start: 0;
|
|
6741
|
+
}
|
|
6742
|
+
.sidebar.hide.sidebar-end {
|
|
6743
|
+
margin-left: calc(-1 * var(--cui-sidebar-width));
|
|
6744
|
+
}
|
|
6745
|
+
.sidebar.hide.sidebar-end ~ * {
|
|
6746
|
+
--cui-sidebar-occupy-end: 0;
|
|
6747
|
+
}
|
|
6748
|
+
}
|
|
6498
6749
|
@media (min-width: 768px) {
|
|
6499
6750
|
.sidebar.sidebar-fixed {
|
|
6500
6751
|
position: fixed;
|
|
@@ -6805,6 +7056,7 @@ textarea.form-control-lg {
|
|
|
6805
7056
|
}
|
|
6806
7057
|
}
|
|
6807
7058
|
.sidebar-nav .nav-group .nav-group-items {
|
|
7059
|
+
padding: 0 0;
|
|
6808
7060
|
overflow: hidden;
|
|
6809
7061
|
transition: height 0.15s ease;
|
|
6810
7062
|
}
|
|
@@ -7123,15 +7375,15 @@ textarea.form-control-lg {
|
|
|
7123
7375
|
}
|
|
7124
7376
|
|
|
7125
7377
|
.ratio-4x3 {
|
|
7126
|
-
--cui-aspect-ratio:
|
|
7378
|
+
--cui-aspect-ratio: 75%;
|
|
7127
7379
|
}
|
|
7128
7380
|
|
|
7129
7381
|
.ratio-16x9 {
|
|
7130
|
-
--cui-aspect-ratio:
|
|
7382
|
+
--cui-aspect-ratio: 56.25%;
|
|
7131
7383
|
}
|
|
7132
7384
|
|
|
7133
7385
|
.ratio-21x9 {
|
|
7134
|
-
--cui-aspect-ratio:
|
|
7386
|
+
--cui-aspect-ratio: 42.8571428571%;
|
|
7135
7387
|
}
|
|
7136
7388
|
|
|
7137
7389
|
.fixed-top {
|
|
@@ -7191,6 +7443,20 @@ textarea.form-control-lg {
|
|
|
7191
7443
|
z-index: 1020;
|
|
7192
7444
|
}
|
|
7193
7445
|
}
|
|
7446
|
+
.hstack {
|
|
7447
|
+
display: flex;
|
|
7448
|
+
flex-direction: row;
|
|
7449
|
+
align-items: center;
|
|
7450
|
+
align-self: stretch;
|
|
7451
|
+
}
|
|
7452
|
+
|
|
7453
|
+
.vstack {
|
|
7454
|
+
display: flex;
|
|
7455
|
+
flex: 1 1 auto;
|
|
7456
|
+
flex-direction: column;
|
|
7457
|
+
align-self: stretch;
|
|
7458
|
+
}
|
|
7459
|
+
|
|
7194
7460
|
.visually-hidden,
|
|
7195
7461
|
.visually-hidden-focusable:not(:focus):not(:focus-within) {
|
|
7196
7462
|
position: absolute !important;
|
|
@@ -7220,6 +7486,15 @@ textarea.form-control-lg {
|
|
|
7220
7486
|
white-space: nowrap;
|
|
7221
7487
|
}
|
|
7222
7488
|
|
|
7489
|
+
.vr {
|
|
7490
|
+
display: inline-block;
|
|
7491
|
+
align-self: stretch;
|
|
7492
|
+
width: 1px;
|
|
7493
|
+
min-height: 1em;
|
|
7494
|
+
background-color: currentColor;
|
|
7495
|
+
opacity: 0.25;
|
|
7496
|
+
}
|
|
7497
|
+
|
|
7223
7498
|
.align-baseline {
|
|
7224
7499
|
vertical-align: baseline !important;
|
|
7225
7500
|
}
|
|
@@ -7245,11 +7520,11 @@ textarea.form-control-lg {
|
|
|
7245
7520
|
}
|
|
7246
7521
|
|
|
7247
7522
|
.float-start {
|
|
7248
|
-
float:
|
|
7523
|
+
float: left !important;
|
|
7249
7524
|
}
|
|
7250
7525
|
|
|
7251
7526
|
.float-end {
|
|
7252
|
-
float:
|
|
7527
|
+
float: right !important;
|
|
7253
7528
|
}
|
|
7254
7529
|
|
|
7255
7530
|
.float-none {
|
|
@@ -7445,11 +7720,11 @@ textarea.form-control-lg {
|
|
|
7445
7720
|
}
|
|
7446
7721
|
|
|
7447
7722
|
.border-end {
|
|
7448
|
-
border-
|
|
7723
|
+
border-right: 1px solid var(--cui-border-color, #d8dbe0) !important;
|
|
7449
7724
|
}
|
|
7450
7725
|
|
|
7451
7726
|
.border-end-0 {
|
|
7452
|
-
border-
|
|
7727
|
+
border-right: 0 !important;
|
|
7453
7728
|
}
|
|
7454
7729
|
|
|
7455
7730
|
.border-bottom {
|
|
@@ -7461,191 +7736,191 @@ textarea.form-control-lg {
|
|
|
7461
7736
|
}
|
|
7462
7737
|
|
|
7463
7738
|
.border-start {
|
|
7464
|
-
border-
|
|
7739
|
+
border-left: 1px solid var(--cui-border-color, #d8dbe0) !important;
|
|
7465
7740
|
}
|
|
7466
7741
|
|
|
7467
7742
|
.border-start-0 {
|
|
7468
|
-
border-
|
|
7743
|
+
border-left: 0 !important;
|
|
7469
7744
|
}
|
|
7470
7745
|
|
|
7471
7746
|
.border-primary {
|
|
7472
|
-
border-color:
|
|
7747
|
+
border-color: #321fdb !important;
|
|
7473
7748
|
}
|
|
7474
7749
|
|
|
7475
7750
|
.border-secondary {
|
|
7476
|
-
border-color:
|
|
7751
|
+
border-color: #9da5b1 !important;
|
|
7477
7752
|
}
|
|
7478
7753
|
|
|
7479
7754
|
.border-success {
|
|
7480
|
-
border-color:
|
|
7755
|
+
border-color: #2eb85c !important;
|
|
7481
7756
|
}
|
|
7482
7757
|
|
|
7483
7758
|
.border-info {
|
|
7484
|
-
border-color:
|
|
7759
|
+
border-color: #39f !important;
|
|
7485
7760
|
}
|
|
7486
7761
|
|
|
7487
7762
|
.border-warning {
|
|
7488
|
-
border-color:
|
|
7763
|
+
border-color: #f9b115 !important;
|
|
7489
7764
|
}
|
|
7490
7765
|
|
|
7491
7766
|
.border-danger {
|
|
7492
|
-
border-color:
|
|
7767
|
+
border-color: #e55353 !important;
|
|
7493
7768
|
}
|
|
7494
7769
|
|
|
7495
7770
|
.border-light {
|
|
7496
|
-
border-color:
|
|
7771
|
+
border-color: #ebedef !important;
|
|
7497
7772
|
}
|
|
7498
7773
|
|
|
7499
7774
|
.border-dark {
|
|
7500
|
-
border-color:
|
|
7775
|
+
border-color: #4f5d73 !important;
|
|
7501
7776
|
}
|
|
7502
7777
|
|
|
7503
7778
|
.border-white {
|
|
7504
|
-
border-color:
|
|
7779
|
+
border-color: #fff !important;
|
|
7505
7780
|
}
|
|
7506
7781
|
|
|
7507
7782
|
.border-top-primary {
|
|
7508
|
-
border-top-color:
|
|
7783
|
+
border-top-color: #321fdb !important;
|
|
7509
7784
|
}
|
|
7510
7785
|
|
|
7511
7786
|
.border-top-secondary {
|
|
7512
|
-
border-top-color:
|
|
7787
|
+
border-top-color: #9da5b1 !important;
|
|
7513
7788
|
}
|
|
7514
7789
|
|
|
7515
7790
|
.border-top-success {
|
|
7516
|
-
border-top-color:
|
|
7791
|
+
border-top-color: #2eb85c !important;
|
|
7517
7792
|
}
|
|
7518
7793
|
|
|
7519
7794
|
.border-top-info {
|
|
7520
|
-
border-top-color:
|
|
7795
|
+
border-top-color: #39f !important;
|
|
7521
7796
|
}
|
|
7522
7797
|
|
|
7523
7798
|
.border-top-warning {
|
|
7524
|
-
border-top-color:
|
|
7799
|
+
border-top-color: #f9b115 !important;
|
|
7525
7800
|
}
|
|
7526
7801
|
|
|
7527
7802
|
.border-top-danger {
|
|
7528
|
-
border-top-color:
|
|
7803
|
+
border-top-color: #e55353 !important;
|
|
7529
7804
|
}
|
|
7530
7805
|
|
|
7531
7806
|
.border-top-light {
|
|
7532
|
-
border-top-color:
|
|
7807
|
+
border-top-color: #ebedef !important;
|
|
7533
7808
|
}
|
|
7534
7809
|
|
|
7535
7810
|
.border-top-dark {
|
|
7536
|
-
border-top-color:
|
|
7811
|
+
border-top-color: #4f5d73 !important;
|
|
7537
7812
|
}
|
|
7538
7813
|
|
|
7539
7814
|
.border-top-white {
|
|
7540
|
-
border-top-color:
|
|
7815
|
+
border-top-color: #fff !important;
|
|
7541
7816
|
}
|
|
7542
7817
|
|
|
7543
7818
|
.border-end-primary {
|
|
7544
|
-
border-
|
|
7819
|
+
border-right-color: #321fdb !important;
|
|
7545
7820
|
}
|
|
7546
7821
|
|
|
7547
7822
|
.border-end-secondary {
|
|
7548
|
-
border-
|
|
7823
|
+
border-right-color: #9da5b1 !important;
|
|
7549
7824
|
}
|
|
7550
7825
|
|
|
7551
7826
|
.border-end-success {
|
|
7552
|
-
border-
|
|
7827
|
+
border-right-color: #2eb85c !important;
|
|
7553
7828
|
}
|
|
7554
7829
|
|
|
7555
7830
|
.border-end-info {
|
|
7556
|
-
border-
|
|
7831
|
+
border-right-color: #39f !important;
|
|
7557
7832
|
}
|
|
7558
7833
|
|
|
7559
7834
|
.border-end-warning {
|
|
7560
|
-
border-
|
|
7835
|
+
border-right-color: #f9b115 !important;
|
|
7561
7836
|
}
|
|
7562
7837
|
|
|
7563
7838
|
.border-end-danger {
|
|
7564
|
-
border-
|
|
7839
|
+
border-right-color: #e55353 !important;
|
|
7565
7840
|
}
|
|
7566
7841
|
|
|
7567
7842
|
.border-end-light {
|
|
7568
|
-
border-
|
|
7843
|
+
border-right-color: #ebedef !important;
|
|
7569
7844
|
}
|
|
7570
7845
|
|
|
7571
7846
|
.border-end-dark {
|
|
7572
|
-
border-
|
|
7847
|
+
border-right-color: #4f5d73 !important;
|
|
7573
7848
|
}
|
|
7574
7849
|
|
|
7575
7850
|
.border-end-white {
|
|
7576
|
-
border-
|
|
7851
|
+
border-right-color: #fff !important;
|
|
7577
7852
|
}
|
|
7578
7853
|
|
|
7579
7854
|
.border-bottom-primary {
|
|
7580
|
-
border-bottom-color:
|
|
7855
|
+
border-bottom-color: #321fdb !important;
|
|
7581
7856
|
}
|
|
7582
7857
|
|
|
7583
7858
|
.border-bottom-secondary {
|
|
7584
|
-
border-bottom-color:
|
|
7859
|
+
border-bottom-color: #9da5b1 !important;
|
|
7585
7860
|
}
|
|
7586
7861
|
|
|
7587
7862
|
.border-bottom-success {
|
|
7588
|
-
border-bottom-color:
|
|
7863
|
+
border-bottom-color: #2eb85c !important;
|
|
7589
7864
|
}
|
|
7590
7865
|
|
|
7591
7866
|
.border-bottom-info {
|
|
7592
|
-
border-bottom-color:
|
|
7867
|
+
border-bottom-color: #39f !important;
|
|
7593
7868
|
}
|
|
7594
7869
|
|
|
7595
7870
|
.border-bottom-warning {
|
|
7596
|
-
border-bottom-color:
|
|
7871
|
+
border-bottom-color: #f9b115 !important;
|
|
7597
7872
|
}
|
|
7598
7873
|
|
|
7599
7874
|
.border-bottom-danger {
|
|
7600
|
-
border-bottom-color:
|
|
7875
|
+
border-bottom-color: #e55353 !important;
|
|
7601
7876
|
}
|
|
7602
7877
|
|
|
7603
7878
|
.border-bottom-light {
|
|
7604
|
-
border-bottom-color:
|
|
7879
|
+
border-bottom-color: #ebedef !important;
|
|
7605
7880
|
}
|
|
7606
7881
|
|
|
7607
7882
|
.border-bottom-dark {
|
|
7608
|
-
border-bottom-color:
|
|
7883
|
+
border-bottom-color: #4f5d73 !important;
|
|
7609
7884
|
}
|
|
7610
7885
|
|
|
7611
7886
|
.border-bottom-white {
|
|
7612
|
-
border-bottom-color:
|
|
7887
|
+
border-bottom-color: #fff !important;
|
|
7613
7888
|
}
|
|
7614
7889
|
|
|
7615
7890
|
.border-start-primary {
|
|
7616
|
-
border-
|
|
7891
|
+
border-left-color: #321fdb !important;
|
|
7617
7892
|
}
|
|
7618
7893
|
|
|
7619
7894
|
.border-start-secondary {
|
|
7620
|
-
border-
|
|
7895
|
+
border-left-color: #9da5b1 !important;
|
|
7621
7896
|
}
|
|
7622
7897
|
|
|
7623
7898
|
.border-start-success {
|
|
7624
|
-
border-
|
|
7899
|
+
border-left-color: #2eb85c !important;
|
|
7625
7900
|
}
|
|
7626
7901
|
|
|
7627
7902
|
.border-start-info {
|
|
7628
|
-
border-
|
|
7903
|
+
border-left-color: #39f !important;
|
|
7629
7904
|
}
|
|
7630
7905
|
|
|
7631
7906
|
.border-start-warning {
|
|
7632
|
-
border-
|
|
7907
|
+
border-left-color: #f9b115 !important;
|
|
7633
7908
|
}
|
|
7634
7909
|
|
|
7635
7910
|
.border-start-danger {
|
|
7636
|
-
border-
|
|
7911
|
+
border-left-color: #e55353 !important;
|
|
7637
7912
|
}
|
|
7638
7913
|
|
|
7639
7914
|
.border-start-light {
|
|
7640
|
-
border-
|
|
7915
|
+
border-left-color: #ebedef !important;
|
|
7641
7916
|
}
|
|
7642
7917
|
|
|
7643
7918
|
.border-start-dark {
|
|
7644
|
-
border-
|
|
7919
|
+
border-left-color: #4f5d73 !important;
|
|
7645
7920
|
}
|
|
7646
7921
|
|
|
7647
7922
|
.border-start-white {
|
|
7648
|
-
border-
|
|
7923
|
+
border-left-color: #fff !important;
|
|
7649
7924
|
}
|
|
7650
7925
|
|
|
7651
7926
|
.border-1 {
|
|
@@ -7689,23 +7964,23 @@ textarea.form-control-lg {
|
|
|
7689
7964
|
}
|
|
7690
7965
|
|
|
7691
7966
|
.border-end-1 {
|
|
7692
|
-
border-
|
|
7967
|
+
border-right-width: 1px !important;
|
|
7693
7968
|
}
|
|
7694
7969
|
|
|
7695
7970
|
.border-end-2 {
|
|
7696
|
-
border-
|
|
7971
|
+
border-right-width: 2px !important;
|
|
7697
7972
|
}
|
|
7698
7973
|
|
|
7699
7974
|
.border-end-3 {
|
|
7700
|
-
border-
|
|
7975
|
+
border-right-width: 3px !important;
|
|
7701
7976
|
}
|
|
7702
7977
|
|
|
7703
7978
|
.border-end-4 {
|
|
7704
|
-
border-
|
|
7979
|
+
border-right-width: 4px !important;
|
|
7705
7980
|
}
|
|
7706
7981
|
|
|
7707
7982
|
.border-end-5 {
|
|
7708
|
-
border-
|
|
7983
|
+
border-right-width: 5px !important;
|
|
7709
7984
|
}
|
|
7710
7985
|
|
|
7711
7986
|
.border-bottom-1 {
|
|
@@ -7729,23 +8004,23 @@ textarea.form-control-lg {
|
|
|
7729
8004
|
}
|
|
7730
8005
|
|
|
7731
8006
|
.border-start-1 {
|
|
7732
|
-
border-
|
|
8007
|
+
border-left-width: 1px !important;
|
|
7733
8008
|
}
|
|
7734
8009
|
|
|
7735
8010
|
.border-start-2 {
|
|
7736
|
-
border-
|
|
8011
|
+
border-left-width: 2px !important;
|
|
7737
8012
|
}
|
|
7738
8013
|
|
|
7739
8014
|
.border-start-3 {
|
|
7740
|
-
border-
|
|
8015
|
+
border-left-width: 3px !important;
|
|
7741
8016
|
}
|
|
7742
8017
|
|
|
7743
8018
|
.border-start-4 {
|
|
7744
|
-
border-
|
|
8019
|
+
border-left-width: 4px !important;
|
|
7745
8020
|
}
|
|
7746
8021
|
|
|
7747
8022
|
.border-start-5 {
|
|
7748
|
-
border-
|
|
8023
|
+
border-left-width: 5px !important;
|
|
7749
8024
|
}
|
|
7750
8025
|
|
|
7751
8026
|
.w-25 {
|
|
@@ -8135,31 +8410,31 @@ textarea.form-control-lg {
|
|
|
8135
8410
|
}
|
|
8136
8411
|
|
|
8137
8412
|
.me-0 {
|
|
8138
|
-
margin-
|
|
8413
|
+
margin-right: 0 !important;
|
|
8139
8414
|
}
|
|
8140
8415
|
|
|
8141
8416
|
.me-1 {
|
|
8142
|
-
margin-
|
|
8417
|
+
margin-right: 0.25rem !important;
|
|
8143
8418
|
}
|
|
8144
8419
|
|
|
8145
8420
|
.me-2 {
|
|
8146
|
-
margin-
|
|
8421
|
+
margin-right: 0.5rem !important;
|
|
8147
8422
|
}
|
|
8148
8423
|
|
|
8149
8424
|
.me-3 {
|
|
8150
|
-
margin-
|
|
8425
|
+
margin-right: 1rem !important;
|
|
8151
8426
|
}
|
|
8152
8427
|
|
|
8153
8428
|
.me-4 {
|
|
8154
|
-
margin-
|
|
8429
|
+
margin-right: 1.5rem !important;
|
|
8155
8430
|
}
|
|
8156
8431
|
|
|
8157
8432
|
.me-5 {
|
|
8158
|
-
margin-
|
|
8433
|
+
margin-right: 3rem !important;
|
|
8159
8434
|
}
|
|
8160
8435
|
|
|
8161
8436
|
.me-auto {
|
|
8162
|
-
margin-
|
|
8437
|
+
margin-right: auto !important;
|
|
8163
8438
|
}
|
|
8164
8439
|
|
|
8165
8440
|
.mb-0 {
|
|
@@ -8191,31 +8466,31 @@ textarea.form-control-lg {
|
|
|
8191
8466
|
}
|
|
8192
8467
|
|
|
8193
8468
|
.ms-0 {
|
|
8194
|
-
margin-
|
|
8469
|
+
margin-left: 0 !important;
|
|
8195
8470
|
}
|
|
8196
8471
|
|
|
8197
8472
|
.ms-1 {
|
|
8198
|
-
margin-
|
|
8473
|
+
margin-left: 0.25rem !important;
|
|
8199
8474
|
}
|
|
8200
8475
|
|
|
8201
8476
|
.ms-2 {
|
|
8202
|
-
margin-
|
|
8477
|
+
margin-left: 0.5rem !important;
|
|
8203
8478
|
}
|
|
8204
8479
|
|
|
8205
8480
|
.ms-3 {
|
|
8206
|
-
margin-
|
|
8481
|
+
margin-left: 1rem !important;
|
|
8207
8482
|
}
|
|
8208
8483
|
|
|
8209
8484
|
.ms-4 {
|
|
8210
|
-
margin-
|
|
8485
|
+
margin-left: 1.5rem !important;
|
|
8211
8486
|
}
|
|
8212
8487
|
|
|
8213
8488
|
.ms-5 {
|
|
8214
|
-
margin-
|
|
8489
|
+
margin-left: 3rem !important;
|
|
8215
8490
|
}
|
|
8216
8491
|
|
|
8217
8492
|
.ms-auto {
|
|
8218
|
-
margin-
|
|
8493
|
+
margin-left: auto !important;
|
|
8219
8494
|
}
|
|
8220
8495
|
|
|
8221
8496
|
.p-0 {
|
|
@@ -8327,27 +8602,27 @@ textarea.form-control-lg {
|
|
|
8327
8602
|
}
|
|
8328
8603
|
|
|
8329
8604
|
.pe-0 {
|
|
8330
|
-
padding-
|
|
8605
|
+
padding-right: 0 !important;
|
|
8331
8606
|
}
|
|
8332
8607
|
|
|
8333
8608
|
.pe-1 {
|
|
8334
|
-
padding-
|
|
8609
|
+
padding-right: 0.25rem !important;
|
|
8335
8610
|
}
|
|
8336
8611
|
|
|
8337
8612
|
.pe-2 {
|
|
8338
|
-
padding-
|
|
8613
|
+
padding-right: 0.5rem !important;
|
|
8339
8614
|
}
|
|
8340
8615
|
|
|
8341
8616
|
.pe-3 {
|
|
8342
|
-
padding-
|
|
8617
|
+
padding-right: 1rem !important;
|
|
8343
8618
|
}
|
|
8344
8619
|
|
|
8345
8620
|
.pe-4 {
|
|
8346
|
-
padding-
|
|
8621
|
+
padding-right: 1.5rem !important;
|
|
8347
8622
|
}
|
|
8348
8623
|
|
|
8349
8624
|
.pe-5 {
|
|
8350
|
-
padding-
|
|
8625
|
+
padding-right: 3rem !important;
|
|
8351
8626
|
}
|
|
8352
8627
|
|
|
8353
8628
|
.pb-0 {
|
|
@@ -8375,27 +8650,27 @@ textarea.form-control-lg {
|
|
|
8375
8650
|
}
|
|
8376
8651
|
|
|
8377
8652
|
.ps-0 {
|
|
8378
|
-
padding-
|
|
8653
|
+
padding-left: 0 !important;
|
|
8379
8654
|
}
|
|
8380
8655
|
|
|
8381
8656
|
.ps-1 {
|
|
8382
|
-
padding-
|
|
8657
|
+
padding-left: 0.25rem !important;
|
|
8383
8658
|
}
|
|
8384
8659
|
|
|
8385
8660
|
.ps-2 {
|
|
8386
|
-
padding-
|
|
8661
|
+
padding-left: 0.5rem !important;
|
|
8387
8662
|
}
|
|
8388
8663
|
|
|
8389
8664
|
.ps-3 {
|
|
8390
|
-
padding-
|
|
8665
|
+
padding-left: 1rem !important;
|
|
8391
8666
|
}
|
|
8392
8667
|
|
|
8393
8668
|
.ps-4 {
|
|
8394
|
-
padding-
|
|
8669
|
+
padding-left: 1.5rem !important;
|
|
8395
8670
|
}
|
|
8396
8671
|
|
|
8397
8672
|
.ps-5 {
|
|
8398
|
-
padding-
|
|
8673
|
+
padding-left: 3rem !important;
|
|
8399
8674
|
}
|
|
8400
8675
|
|
|
8401
8676
|
.font-monospace {
|
|
@@ -8479,11 +8754,11 @@ textarea.form-control-lg {
|
|
|
8479
8754
|
}
|
|
8480
8755
|
|
|
8481
8756
|
.text-start {
|
|
8482
|
-
text-align:
|
|
8757
|
+
text-align: left !important;
|
|
8483
8758
|
}
|
|
8484
8759
|
|
|
8485
8760
|
.text-end {
|
|
8486
|
-
text-align:
|
|
8761
|
+
text-align: right !important;
|
|
8487
8762
|
}
|
|
8488
8763
|
|
|
8489
8764
|
.text-center {
|
|
@@ -8530,127 +8805,204 @@ textarea.form-control-lg {
|
|
|
8530
8805
|
|
|
8531
8806
|
/* rtl:end:remove */
|
|
8532
8807
|
.text-primary {
|
|
8533
|
-
|
|
8808
|
+
--cui-text-opacity: 1;
|
|
8809
|
+
color: rgba(var(--cui-primary-rgb), var(--cui-text-opacity)) !important;
|
|
8534
8810
|
}
|
|
8535
8811
|
|
|
8536
8812
|
.text-secondary {
|
|
8537
|
-
|
|
8813
|
+
--cui-text-opacity: 1;
|
|
8814
|
+
color: rgba(var(--cui-secondary-rgb), var(--cui-text-opacity)) !important;
|
|
8538
8815
|
}
|
|
8539
8816
|
|
|
8540
8817
|
.text-success {
|
|
8541
|
-
|
|
8818
|
+
--cui-text-opacity: 1;
|
|
8819
|
+
color: rgba(var(--cui-success-rgb), var(--cui-text-opacity)) !important;
|
|
8542
8820
|
}
|
|
8543
8821
|
|
|
8544
8822
|
.text-info {
|
|
8545
|
-
|
|
8823
|
+
--cui-text-opacity: 1;
|
|
8824
|
+
color: rgba(var(--cui-info-rgb), var(--cui-text-opacity)) !important;
|
|
8546
8825
|
}
|
|
8547
8826
|
|
|
8548
8827
|
.text-warning {
|
|
8549
|
-
|
|
8828
|
+
--cui-text-opacity: 1;
|
|
8829
|
+
color: rgba(var(--cui-warning-rgb), var(--cui-text-opacity)) !important;
|
|
8550
8830
|
}
|
|
8551
8831
|
|
|
8552
8832
|
.text-danger {
|
|
8553
|
-
|
|
8833
|
+
--cui-text-opacity: 1;
|
|
8834
|
+
color: rgba(var(--cui-danger-rgb), var(--cui-text-opacity)) !important;
|
|
8554
8835
|
}
|
|
8555
8836
|
|
|
8556
8837
|
.text-light {
|
|
8557
|
-
|
|
8838
|
+
--cui-text-opacity: 1;
|
|
8839
|
+
color: rgba(var(--cui-light-rgb), var(--cui-text-opacity)) !important;
|
|
8558
8840
|
}
|
|
8559
8841
|
|
|
8560
8842
|
.text-dark {
|
|
8561
|
-
|
|
8843
|
+
--cui-text-opacity: 1;
|
|
8844
|
+
color: rgba(var(--cui-dark-rgb), var(--cui-text-opacity)) !important;
|
|
8845
|
+
}
|
|
8846
|
+
|
|
8847
|
+
.text-black {
|
|
8848
|
+
--cui-text-opacity: 1;
|
|
8849
|
+
color: rgba(var(--cui-black-rgb), var(--cui-text-opacity)) !important;
|
|
8562
8850
|
}
|
|
8563
8851
|
|
|
8564
8852
|
.text-white {
|
|
8565
|
-
|
|
8853
|
+
--cui-text-opacity: 1;
|
|
8854
|
+
color: rgba(var(--cui-white-rgb), var(--cui-text-opacity)) !important;
|
|
8566
8855
|
}
|
|
8567
8856
|
|
|
8568
8857
|
.text-body {
|
|
8569
|
-
|
|
8858
|
+
--cui-text-opacity: 1;
|
|
8859
|
+
color: rgba(var(--cui-body-color-rgb), var(--cui-text-opacity)) !important;
|
|
8570
8860
|
}
|
|
8571
8861
|
|
|
8572
8862
|
.text-muted {
|
|
8573
|
-
|
|
8863
|
+
--cui-text-opacity: 1;
|
|
8864
|
+
color: rgba(44, 56, 74, 0.38) !important;
|
|
8574
8865
|
}
|
|
8575
8866
|
|
|
8576
8867
|
.text-black-50 {
|
|
8577
|
-
|
|
8868
|
+
--cui-text-opacity: 1;
|
|
8869
|
+
color: rgba(0, 0, 21, 0.5) !important;
|
|
8578
8870
|
}
|
|
8579
8871
|
|
|
8580
8872
|
.text-white-50 {
|
|
8581
|
-
|
|
8873
|
+
--cui-text-opacity: 1;
|
|
8874
|
+
color: rgba(255, 255, 255, 0.5) !important;
|
|
8582
8875
|
}
|
|
8583
8876
|
|
|
8584
8877
|
.text-reset {
|
|
8585
|
-
|
|
8878
|
+
--cui-text-opacity: 1;
|
|
8879
|
+
color: inherit !important;
|
|
8586
8880
|
}
|
|
8587
8881
|
|
|
8588
8882
|
.text-high-emphasis-inverse {
|
|
8589
|
-
|
|
8883
|
+
--cui-text-opacity: 1;
|
|
8884
|
+
color: rgba(255, 255, 255, 0.87) !important;
|
|
8590
8885
|
}
|
|
8591
8886
|
|
|
8592
8887
|
.text-medium-emphasis-inverse {
|
|
8593
|
-
|
|
8888
|
+
--cui-text-opacity: 1;
|
|
8889
|
+
color: rgba(255, 255, 255, 0.6) !important;
|
|
8594
8890
|
}
|
|
8595
8891
|
|
|
8596
8892
|
.text-disabled-inverse {
|
|
8597
|
-
|
|
8893
|
+
--cui-text-opacity: 1;
|
|
8894
|
+
color: rgba(255, 255, 255, 0.38) !important;
|
|
8598
8895
|
}
|
|
8599
8896
|
|
|
8600
8897
|
.text-high-emphasis {
|
|
8601
|
-
|
|
8898
|
+
--cui-text-opacity: 1;
|
|
8899
|
+
color: rgba(44, 56, 74, 0.95) !important;
|
|
8602
8900
|
}
|
|
8603
8901
|
|
|
8604
8902
|
.text-medium-emphasis {
|
|
8605
|
-
|
|
8903
|
+
--cui-text-opacity: 1;
|
|
8904
|
+
color: rgba(44, 56, 74, 0.681) !important;
|
|
8606
8905
|
}
|
|
8607
8906
|
|
|
8608
8907
|
.text-disabled {
|
|
8609
|
-
|
|
8908
|
+
--cui-text-opacity: 1;
|
|
8909
|
+
color: rgba(44, 56, 74, 0.38) !important;
|
|
8910
|
+
}
|
|
8911
|
+
|
|
8912
|
+
.text-opacity-25 {
|
|
8913
|
+
--cui-text-opacity: 0.25;
|
|
8914
|
+
}
|
|
8915
|
+
|
|
8916
|
+
.text-opacity-50 {
|
|
8917
|
+
--cui-text-opacity: 0.5;
|
|
8918
|
+
}
|
|
8919
|
+
|
|
8920
|
+
.text-opacity-75 {
|
|
8921
|
+
--cui-text-opacity: 0.75;
|
|
8922
|
+
}
|
|
8923
|
+
|
|
8924
|
+
.text-opacity-100 {
|
|
8925
|
+
--cui-text-opacity: 1;
|
|
8610
8926
|
}
|
|
8611
8927
|
|
|
8612
8928
|
.bg-primary {
|
|
8613
|
-
|
|
8929
|
+
--cui-bg-opacity: 1;
|
|
8930
|
+
background-color: rgba(var(--cui-primary-rgb), var(--cui-bg-opacity)) !important;
|
|
8614
8931
|
}
|
|
8615
8932
|
|
|
8616
8933
|
.bg-secondary {
|
|
8617
|
-
|
|
8934
|
+
--cui-bg-opacity: 1;
|
|
8935
|
+
background-color: rgba(var(--cui-secondary-rgb), var(--cui-bg-opacity)) !important;
|
|
8618
8936
|
}
|
|
8619
8937
|
|
|
8620
8938
|
.bg-success {
|
|
8621
|
-
|
|
8939
|
+
--cui-bg-opacity: 1;
|
|
8940
|
+
background-color: rgba(var(--cui-success-rgb), var(--cui-bg-opacity)) !important;
|
|
8622
8941
|
}
|
|
8623
8942
|
|
|
8624
8943
|
.bg-info {
|
|
8625
|
-
|
|
8944
|
+
--cui-bg-opacity: 1;
|
|
8945
|
+
background-color: rgba(var(--cui-info-rgb), var(--cui-bg-opacity)) !important;
|
|
8626
8946
|
}
|
|
8627
8947
|
|
|
8628
8948
|
.bg-warning {
|
|
8629
|
-
|
|
8949
|
+
--cui-bg-opacity: 1;
|
|
8950
|
+
background-color: rgba(var(--cui-warning-rgb), var(--cui-bg-opacity)) !important;
|
|
8630
8951
|
}
|
|
8631
8952
|
|
|
8632
8953
|
.bg-danger {
|
|
8633
|
-
|
|
8954
|
+
--cui-bg-opacity: 1;
|
|
8955
|
+
background-color: rgba(var(--cui-danger-rgb), var(--cui-bg-opacity)) !important;
|
|
8634
8956
|
}
|
|
8635
8957
|
|
|
8636
8958
|
.bg-light {
|
|
8637
|
-
|
|
8959
|
+
--cui-bg-opacity: 1;
|
|
8960
|
+
background-color: rgba(var(--cui-light-rgb), var(--cui-bg-opacity)) !important;
|
|
8638
8961
|
}
|
|
8639
8962
|
|
|
8640
8963
|
.bg-dark {
|
|
8641
|
-
|
|
8964
|
+
--cui-bg-opacity: 1;
|
|
8965
|
+
background-color: rgba(var(--cui-dark-rgb), var(--cui-bg-opacity)) !important;
|
|
8642
8966
|
}
|
|
8643
8967
|
|
|
8644
|
-
.bg-
|
|
8645
|
-
|
|
8968
|
+
.bg-black {
|
|
8969
|
+
--cui-bg-opacity: 1;
|
|
8970
|
+
background-color: rgba(var(--cui-black-rgb), var(--cui-bg-opacity)) !important;
|
|
8646
8971
|
}
|
|
8647
8972
|
|
|
8648
8973
|
.bg-white {
|
|
8649
|
-
|
|
8974
|
+
--cui-bg-opacity: 1;
|
|
8975
|
+
background-color: rgba(var(--cui-white-rgb), var(--cui-bg-opacity)) !important;
|
|
8976
|
+
}
|
|
8977
|
+
|
|
8978
|
+
.bg-body {
|
|
8979
|
+
--cui-bg-opacity: 1;
|
|
8980
|
+
background-color: rgba(var(--cui-body-bg-rgb), var(--cui-bg-opacity)) !important;
|
|
8650
8981
|
}
|
|
8651
8982
|
|
|
8652
8983
|
.bg-transparent {
|
|
8653
|
-
|
|
8984
|
+
--cui-bg-opacity: 1;
|
|
8985
|
+
background-color: transparent !important;
|
|
8986
|
+
}
|
|
8987
|
+
|
|
8988
|
+
.bg-opacity-10 {
|
|
8989
|
+
--cui-bg-opacity: 0.1;
|
|
8990
|
+
}
|
|
8991
|
+
|
|
8992
|
+
.bg-opacity-25 {
|
|
8993
|
+
--cui-bg-opacity: 0.25;
|
|
8994
|
+
}
|
|
8995
|
+
|
|
8996
|
+
.bg-opacity-50 {
|
|
8997
|
+
--cui-bg-opacity: 0.5;
|
|
8998
|
+
}
|
|
8999
|
+
|
|
9000
|
+
.bg-opacity-75 {
|
|
9001
|
+
--cui-bg-opacity: 0.75;
|
|
9002
|
+
}
|
|
9003
|
+
|
|
9004
|
+
.bg-opacity-100 {
|
|
9005
|
+
--cui-bg-opacity: 1;
|
|
8654
9006
|
}
|
|
8655
9007
|
|
|
8656
9008
|
.bg-gradient {
|
|
@@ -8711,8 +9063,8 @@ textarea.form-control-lg {
|
|
|
8711
9063
|
}
|
|
8712
9064
|
|
|
8713
9065
|
.rounded-end {
|
|
8714
|
-
border-top-
|
|
8715
|
-
border-bottom-
|
|
9066
|
+
border-top-right-radius: 0.25rem !important;
|
|
9067
|
+
border-bottom-right-radius: 0.25rem !important;
|
|
8716
9068
|
}
|
|
8717
9069
|
|
|
8718
9070
|
.rounded-bottom {
|
|
@@ -8721,8 +9073,8 @@ textarea.form-control-lg {
|
|
|
8721
9073
|
}
|
|
8722
9074
|
|
|
8723
9075
|
.rounded-start {
|
|
8724
|
-
border-bottom-
|
|
8725
|
-
border-top-
|
|
9076
|
+
border-bottom-left-radius: 0.25rem !important;
|
|
9077
|
+
border-top-left-radius: 0.25rem !important;
|
|
8726
9078
|
}
|
|
8727
9079
|
|
|
8728
9080
|
.visible {
|
|
@@ -8735,11 +9087,11 @@ textarea.form-control-lg {
|
|
|
8735
9087
|
|
|
8736
9088
|
@media (min-width: 576px) {
|
|
8737
9089
|
.float-sm-start {
|
|
8738
|
-
float:
|
|
9090
|
+
float: left !important;
|
|
8739
9091
|
}
|
|
8740
9092
|
|
|
8741
9093
|
.float-sm-end {
|
|
8742
|
-
float:
|
|
9094
|
+
float: right !important;
|
|
8743
9095
|
}
|
|
8744
9096
|
|
|
8745
9097
|
.float-sm-none {
|
|
@@ -9109,31 +9461,31 @@ textarea.form-control-lg {
|
|
|
9109
9461
|
}
|
|
9110
9462
|
|
|
9111
9463
|
.me-sm-0 {
|
|
9112
|
-
margin-
|
|
9464
|
+
margin-right: 0 !important;
|
|
9113
9465
|
}
|
|
9114
9466
|
|
|
9115
9467
|
.me-sm-1 {
|
|
9116
|
-
margin-
|
|
9468
|
+
margin-right: 0.25rem !important;
|
|
9117
9469
|
}
|
|
9118
9470
|
|
|
9119
9471
|
.me-sm-2 {
|
|
9120
|
-
margin-
|
|
9472
|
+
margin-right: 0.5rem !important;
|
|
9121
9473
|
}
|
|
9122
9474
|
|
|
9123
9475
|
.me-sm-3 {
|
|
9124
|
-
margin-
|
|
9476
|
+
margin-right: 1rem !important;
|
|
9125
9477
|
}
|
|
9126
9478
|
|
|
9127
9479
|
.me-sm-4 {
|
|
9128
|
-
margin-
|
|
9480
|
+
margin-right: 1.5rem !important;
|
|
9129
9481
|
}
|
|
9130
9482
|
|
|
9131
9483
|
.me-sm-5 {
|
|
9132
|
-
margin-
|
|
9484
|
+
margin-right: 3rem !important;
|
|
9133
9485
|
}
|
|
9134
9486
|
|
|
9135
9487
|
.me-sm-auto {
|
|
9136
|
-
margin-
|
|
9488
|
+
margin-right: auto !important;
|
|
9137
9489
|
}
|
|
9138
9490
|
|
|
9139
9491
|
.mb-sm-0 {
|
|
@@ -9165,31 +9517,31 @@ textarea.form-control-lg {
|
|
|
9165
9517
|
}
|
|
9166
9518
|
|
|
9167
9519
|
.ms-sm-0 {
|
|
9168
|
-
margin-
|
|
9520
|
+
margin-left: 0 !important;
|
|
9169
9521
|
}
|
|
9170
9522
|
|
|
9171
9523
|
.ms-sm-1 {
|
|
9172
|
-
margin-
|
|
9524
|
+
margin-left: 0.25rem !important;
|
|
9173
9525
|
}
|
|
9174
9526
|
|
|
9175
9527
|
.ms-sm-2 {
|
|
9176
|
-
margin-
|
|
9528
|
+
margin-left: 0.5rem !important;
|
|
9177
9529
|
}
|
|
9178
9530
|
|
|
9179
9531
|
.ms-sm-3 {
|
|
9180
|
-
margin-
|
|
9532
|
+
margin-left: 1rem !important;
|
|
9181
9533
|
}
|
|
9182
9534
|
|
|
9183
9535
|
.ms-sm-4 {
|
|
9184
|
-
margin-
|
|
9536
|
+
margin-left: 1.5rem !important;
|
|
9185
9537
|
}
|
|
9186
9538
|
|
|
9187
9539
|
.ms-sm-5 {
|
|
9188
|
-
margin-
|
|
9540
|
+
margin-left: 3rem !important;
|
|
9189
9541
|
}
|
|
9190
9542
|
|
|
9191
9543
|
.ms-sm-auto {
|
|
9192
|
-
margin-
|
|
9544
|
+
margin-left: auto !important;
|
|
9193
9545
|
}
|
|
9194
9546
|
|
|
9195
9547
|
.p-sm-0 {
|
|
@@ -9301,27 +9653,27 @@ textarea.form-control-lg {
|
|
|
9301
9653
|
}
|
|
9302
9654
|
|
|
9303
9655
|
.pe-sm-0 {
|
|
9304
|
-
padding-
|
|
9656
|
+
padding-right: 0 !important;
|
|
9305
9657
|
}
|
|
9306
9658
|
|
|
9307
9659
|
.pe-sm-1 {
|
|
9308
|
-
padding-
|
|
9660
|
+
padding-right: 0.25rem !important;
|
|
9309
9661
|
}
|
|
9310
9662
|
|
|
9311
9663
|
.pe-sm-2 {
|
|
9312
|
-
padding-
|
|
9664
|
+
padding-right: 0.5rem !important;
|
|
9313
9665
|
}
|
|
9314
9666
|
|
|
9315
9667
|
.pe-sm-3 {
|
|
9316
|
-
padding-
|
|
9668
|
+
padding-right: 1rem !important;
|
|
9317
9669
|
}
|
|
9318
9670
|
|
|
9319
9671
|
.pe-sm-4 {
|
|
9320
|
-
padding-
|
|
9672
|
+
padding-right: 1.5rem !important;
|
|
9321
9673
|
}
|
|
9322
9674
|
|
|
9323
9675
|
.pe-sm-5 {
|
|
9324
|
-
padding-
|
|
9676
|
+
padding-right: 3rem !important;
|
|
9325
9677
|
}
|
|
9326
9678
|
|
|
9327
9679
|
.pb-sm-0 {
|
|
@@ -9349,35 +9701,35 @@ textarea.form-control-lg {
|
|
|
9349
9701
|
}
|
|
9350
9702
|
|
|
9351
9703
|
.ps-sm-0 {
|
|
9352
|
-
padding-
|
|
9704
|
+
padding-left: 0 !important;
|
|
9353
9705
|
}
|
|
9354
9706
|
|
|
9355
9707
|
.ps-sm-1 {
|
|
9356
|
-
padding-
|
|
9708
|
+
padding-left: 0.25rem !important;
|
|
9357
9709
|
}
|
|
9358
9710
|
|
|
9359
9711
|
.ps-sm-2 {
|
|
9360
|
-
padding-
|
|
9712
|
+
padding-left: 0.5rem !important;
|
|
9361
9713
|
}
|
|
9362
9714
|
|
|
9363
9715
|
.ps-sm-3 {
|
|
9364
|
-
padding-
|
|
9716
|
+
padding-left: 1rem !important;
|
|
9365
9717
|
}
|
|
9366
9718
|
|
|
9367
9719
|
.ps-sm-4 {
|
|
9368
|
-
padding-
|
|
9720
|
+
padding-left: 1.5rem !important;
|
|
9369
9721
|
}
|
|
9370
9722
|
|
|
9371
9723
|
.ps-sm-5 {
|
|
9372
|
-
padding-
|
|
9724
|
+
padding-left: 3rem !important;
|
|
9373
9725
|
}
|
|
9374
9726
|
|
|
9375
9727
|
.text-sm-start {
|
|
9376
|
-
text-align:
|
|
9728
|
+
text-align: left !important;
|
|
9377
9729
|
}
|
|
9378
9730
|
|
|
9379
9731
|
.text-sm-end {
|
|
9380
|
-
text-align:
|
|
9732
|
+
text-align: right !important;
|
|
9381
9733
|
}
|
|
9382
9734
|
|
|
9383
9735
|
.text-sm-center {
|
|
@@ -9386,11 +9738,11 @@ textarea.form-control-lg {
|
|
|
9386
9738
|
}
|
|
9387
9739
|
@media (min-width: 768px) {
|
|
9388
9740
|
.float-md-start {
|
|
9389
|
-
float:
|
|
9741
|
+
float: left !important;
|
|
9390
9742
|
}
|
|
9391
9743
|
|
|
9392
9744
|
.float-md-end {
|
|
9393
|
-
float:
|
|
9745
|
+
float: right !important;
|
|
9394
9746
|
}
|
|
9395
9747
|
|
|
9396
9748
|
.float-md-none {
|
|
@@ -9760,31 +10112,31 @@ textarea.form-control-lg {
|
|
|
9760
10112
|
}
|
|
9761
10113
|
|
|
9762
10114
|
.me-md-0 {
|
|
9763
|
-
margin-
|
|
10115
|
+
margin-right: 0 !important;
|
|
9764
10116
|
}
|
|
9765
10117
|
|
|
9766
10118
|
.me-md-1 {
|
|
9767
|
-
margin-
|
|
10119
|
+
margin-right: 0.25rem !important;
|
|
9768
10120
|
}
|
|
9769
10121
|
|
|
9770
10122
|
.me-md-2 {
|
|
9771
|
-
margin-
|
|
10123
|
+
margin-right: 0.5rem !important;
|
|
9772
10124
|
}
|
|
9773
10125
|
|
|
9774
10126
|
.me-md-3 {
|
|
9775
|
-
margin-
|
|
10127
|
+
margin-right: 1rem !important;
|
|
9776
10128
|
}
|
|
9777
10129
|
|
|
9778
10130
|
.me-md-4 {
|
|
9779
|
-
margin-
|
|
10131
|
+
margin-right: 1.5rem !important;
|
|
9780
10132
|
}
|
|
9781
10133
|
|
|
9782
10134
|
.me-md-5 {
|
|
9783
|
-
margin-
|
|
10135
|
+
margin-right: 3rem !important;
|
|
9784
10136
|
}
|
|
9785
10137
|
|
|
9786
10138
|
.me-md-auto {
|
|
9787
|
-
margin-
|
|
10139
|
+
margin-right: auto !important;
|
|
9788
10140
|
}
|
|
9789
10141
|
|
|
9790
10142
|
.mb-md-0 {
|
|
@@ -9816,31 +10168,31 @@ textarea.form-control-lg {
|
|
|
9816
10168
|
}
|
|
9817
10169
|
|
|
9818
10170
|
.ms-md-0 {
|
|
9819
|
-
margin-
|
|
10171
|
+
margin-left: 0 !important;
|
|
9820
10172
|
}
|
|
9821
10173
|
|
|
9822
10174
|
.ms-md-1 {
|
|
9823
|
-
margin-
|
|
10175
|
+
margin-left: 0.25rem !important;
|
|
9824
10176
|
}
|
|
9825
10177
|
|
|
9826
10178
|
.ms-md-2 {
|
|
9827
|
-
margin-
|
|
10179
|
+
margin-left: 0.5rem !important;
|
|
9828
10180
|
}
|
|
9829
10181
|
|
|
9830
10182
|
.ms-md-3 {
|
|
9831
|
-
margin-
|
|
10183
|
+
margin-left: 1rem !important;
|
|
9832
10184
|
}
|
|
9833
10185
|
|
|
9834
10186
|
.ms-md-4 {
|
|
9835
|
-
margin-
|
|
10187
|
+
margin-left: 1.5rem !important;
|
|
9836
10188
|
}
|
|
9837
10189
|
|
|
9838
10190
|
.ms-md-5 {
|
|
9839
|
-
margin-
|
|
10191
|
+
margin-left: 3rem !important;
|
|
9840
10192
|
}
|
|
9841
10193
|
|
|
9842
10194
|
.ms-md-auto {
|
|
9843
|
-
margin-
|
|
10195
|
+
margin-left: auto !important;
|
|
9844
10196
|
}
|
|
9845
10197
|
|
|
9846
10198
|
.p-md-0 {
|
|
@@ -9952,27 +10304,27 @@ textarea.form-control-lg {
|
|
|
9952
10304
|
}
|
|
9953
10305
|
|
|
9954
10306
|
.pe-md-0 {
|
|
9955
|
-
padding-
|
|
10307
|
+
padding-right: 0 !important;
|
|
9956
10308
|
}
|
|
9957
10309
|
|
|
9958
10310
|
.pe-md-1 {
|
|
9959
|
-
padding-
|
|
10311
|
+
padding-right: 0.25rem !important;
|
|
9960
10312
|
}
|
|
9961
10313
|
|
|
9962
10314
|
.pe-md-2 {
|
|
9963
|
-
padding-
|
|
10315
|
+
padding-right: 0.5rem !important;
|
|
9964
10316
|
}
|
|
9965
10317
|
|
|
9966
10318
|
.pe-md-3 {
|
|
9967
|
-
padding-
|
|
10319
|
+
padding-right: 1rem !important;
|
|
9968
10320
|
}
|
|
9969
10321
|
|
|
9970
10322
|
.pe-md-4 {
|
|
9971
|
-
padding-
|
|
10323
|
+
padding-right: 1.5rem !important;
|
|
9972
10324
|
}
|
|
9973
10325
|
|
|
9974
10326
|
.pe-md-5 {
|
|
9975
|
-
padding-
|
|
10327
|
+
padding-right: 3rem !important;
|
|
9976
10328
|
}
|
|
9977
10329
|
|
|
9978
10330
|
.pb-md-0 {
|
|
@@ -10000,35 +10352,35 @@ textarea.form-control-lg {
|
|
|
10000
10352
|
}
|
|
10001
10353
|
|
|
10002
10354
|
.ps-md-0 {
|
|
10003
|
-
padding-
|
|
10355
|
+
padding-left: 0 !important;
|
|
10004
10356
|
}
|
|
10005
10357
|
|
|
10006
10358
|
.ps-md-1 {
|
|
10007
|
-
padding-
|
|
10359
|
+
padding-left: 0.25rem !important;
|
|
10008
10360
|
}
|
|
10009
10361
|
|
|
10010
10362
|
.ps-md-2 {
|
|
10011
|
-
padding-
|
|
10363
|
+
padding-left: 0.5rem !important;
|
|
10012
10364
|
}
|
|
10013
10365
|
|
|
10014
10366
|
.ps-md-3 {
|
|
10015
|
-
padding-
|
|
10367
|
+
padding-left: 1rem !important;
|
|
10016
10368
|
}
|
|
10017
10369
|
|
|
10018
10370
|
.ps-md-4 {
|
|
10019
|
-
padding-
|
|
10371
|
+
padding-left: 1.5rem !important;
|
|
10020
10372
|
}
|
|
10021
10373
|
|
|
10022
10374
|
.ps-md-5 {
|
|
10023
|
-
padding-
|
|
10375
|
+
padding-left: 3rem !important;
|
|
10024
10376
|
}
|
|
10025
10377
|
|
|
10026
10378
|
.text-md-start {
|
|
10027
|
-
text-align:
|
|
10379
|
+
text-align: left !important;
|
|
10028
10380
|
}
|
|
10029
10381
|
|
|
10030
10382
|
.text-md-end {
|
|
10031
|
-
text-align:
|
|
10383
|
+
text-align: right !important;
|
|
10032
10384
|
}
|
|
10033
10385
|
|
|
10034
10386
|
.text-md-center {
|
|
@@ -10037,11 +10389,11 @@ textarea.form-control-lg {
|
|
|
10037
10389
|
}
|
|
10038
10390
|
@media (min-width: 992px) {
|
|
10039
10391
|
.float-lg-start {
|
|
10040
|
-
float:
|
|
10392
|
+
float: left !important;
|
|
10041
10393
|
}
|
|
10042
10394
|
|
|
10043
10395
|
.float-lg-end {
|
|
10044
|
-
float:
|
|
10396
|
+
float: right !important;
|
|
10045
10397
|
}
|
|
10046
10398
|
|
|
10047
10399
|
.float-lg-none {
|
|
@@ -10411,31 +10763,31 @@ textarea.form-control-lg {
|
|
|
10411
10763
|
}
|
|
10412
10764
|
|
|
10413
10765
|
.me-lg-0 {
|
|
10414
|
-
margin-
|
|
10766
|
+
margin-right: 0 !important;
|
|
10415
10767
|
}
|
|
10416
10768
|
|
|
10417
10769
|
.me-lg-1 {
|
|
10418
|
-
margin-
|
|
10770
|
+
margin-right: 0.25rem !important;
|
|
10419
10771
|
}
|
|
10420
10772
|
|
|
10421
10773
|
.me-lg-2 {
|
|
10422
|
-
margin-
|
|
10774
|
+
margin-right: 0.5rem !important;
|
|
10423
10775
|
}
|
|
10424
10776
|
|
|
10425
10777
|
.me-lg-3 {
|
|
10426
|
-
margin-
|
|
10778
|
+
margin-right: 1rem !important;
|
|
10427
10779
|
}
|
|
10428
10780
|
|
|
10429
10781
|
.me-lg-4 {
|
|
10430
|
-
margin-
|
|
10782
|
+
margin-right: 1.5rem !important;
|
|
10431
10783
|
}
|
|
10432
10784
|
|
|
10433
10785
|
.me-lg-5 {
|
|
10434
|
-
margin-
|
|
10786
|
+
margin-right: 3rem !important;
|
|
10435
10787
|
}
|
|
10436
10788
|
|
|
10437
10789
|
.me-lg-auto {
|
|
10438
|
-
margin-
|
|
10790
|
+
margin-right: auto !important;
|
|
10439
10791
|
}
|
|
10440
10792
|
|
|
10441
10793
|
.mb-lg-0 {
|
|
@@ -10467,31 +10819,31 @@ textarea.form-control-lg {
|
|
|
10467
10819
|
}
|
|
10468
10820
|
|
|
10469
10821
|
.ms-lg-0 {
|
|
10470
|
-
margin-
|
|
10822
|
+
margin-left: 0 !important;
|
|
10471
10823
|
}
|
|
10472
10824
|
|
|
10473
10825
|
.ms-lg-1 {
|
|
10474
|
-
margin-
|
|
10826
|
+
margin-left: 0.25rem !important;
|
|
10475
10827
|
}
|
|
10476
10828
|
|
|
10477
10829
|
.ms-lg-2 {
|
|
10478
|
-
margin-
|
|
10830
|
+
margin-left: 0.5rem !important;
|
|
10479
10831
|
}
|
|
10480
10832
|
|
|
10481
10833
|
.ms-lg-3 {
|
|
10482
|
-
margin-
|
|
10834
|
+
margin-left: 1rem !important;
|
|
10483
10835
|
}
|
|
10484
10836
|
|
|
10485
10837
|
.ms-lg-4 {
|
|
10486
|
-
margin-
|
|
10838
|
+
margin-left: 1.5rem !important;
|
|
10487
10839
|
}
|
|
10488
10840
|
|
|
10489
10841
|
.ms-lg-5 {
|
|
10490
|
-
margin-
|
|
10842
|
+
margin-left: 3rem !important;
|
|
10491
10843
|
}
|
|
10492
10844
|
|
|
10493
10845
|
.ms-lg-auto {
|
|
10494
|
-
margin-
|
|
10846
|
+
margin-left: auto !important;
|
|
10495
10847
|
}
|
|
10496
10848
|
|
|
10497
10849
|
.p-lg-0 {
|
|
@@ -10603,27 +10955,27 @@ textarea.form-control-lg {
|
|
|
10603
10955
|
}
|
|
10604
10956
|
|
|
10605
10957
|
.pe-lg-0 {
|
|
10606
|
-
padding-
|
|
10958
|
+
padding-right: 0 !important;
|
|
10607
10959
|
}
|
|
10608
10960
|
|
|
10609
10961
|
.pe-lg-1 {
|
|
10610
|
-
padding-
|
|
10962
|
+
padding-right: 0.25rem !important;
|
|
10611
10963
|
}
|
|
10612
10964
|
|
|
10613
10965
|
.pe-lg-2 {
|
|
10614
|
-
padding-
|
|
10966
|
+
padding-right: 0.5rem !important;
|
|
10615
10967
|
}
|
|
10616
10968
|
|
|
10617
10969
|
.pe-lg-3 {
|
|
10618
|
-
padding-
|
|
10970
|
+
padding-right: 1rem !important;
|
|
10619
10971
|
}
|
|
10620
10972
|
|
|
10621
10973
|
.pe-lg-4 {
|
|
10622
|
-
padding-
|
|
10974
|
+
padding-right: 1.5rem !important;
|
|
10623
10975
|
}
|
|
10624
10976
|
|
|
10625
10977
|
.pe-lg-5 {
|
|
10626
|
-
padding-
|
|
10978
|
+
padding-right: 3rem !important;
|
|
10627
10979
|
}
|
|
10628
10980
|
|
|
10629
10981
|
.pb-lg-0 {
|
|
@@ -10651,35 +11003,35 @@ textarea.form-control-lg {
|
|
|
10651
11003
|
}
|
|
10652
11004
|
|
|
10653
11005
|
.ps-lg-0 {
|
|
10654
|
-
padding-
|
|
11006
|
+
padding-left: 0 !important;
|
|
10655
11007
|
}
|
|
10656
11008
|
|
|
10657
11009
|
.ps-lg-1 {
|
|
10658
|
-
padding-
|
|
11010
|
+
padding-left: 0.25rem !important;
|
|
10659
11011
|
}
|
|
10660
11012
|
|
|
10661
11013
|
.ps-lg-2 {
|
|
10662
|
-
padding-
|
|
11014
|
+
padding-left: 0.5rem !important;
|
|
10663
11015
|
}
|
|
10664
11016
|
|
|
10665
11017
|
.ps-lg-3 {
|
|
10666
|
-
padding-
|
|
11018
|
+
padding-left: 1rem !important;
|
|
10667
11019
|
}
|
|
10668
11020
|
|
|
10669
11021
|
.ps-lg-4 {
|
|
10670
|
-
padding-
|
|
11022
|
+
padding-left: 1.5rem !important;
|
|
10671
11023
|
}
|
|
10672
11024
|
|
|
10673
11025
|
.ps-lg-5 {
|
|
10674
|
-
padding-
|
|
11026
|
+
padding-left: 3rem !important;
|
|
10675
11027
|
}
|
|
10676
11028
|
|
|
10677
11029
|
.text-lg-start {
|
|
10678
|
-
text-align:
|
|
11030
|
+
text-align: left !important;
|
|
10679
11031
|
}
|
|
10680
11032
|
|
|
10681
11033
|
.text-lg-end {
|
|
10682
|
-
text-align:
|
|
11034
|
+
text-align: right !important;
|
|
10683
11035
|
}
|
|
10684
11036
|
|
|
10685
11037
|
.text-lg-center {
|
|
@@ -10688,11 +11040,11 @@ textarea.form-control-lg {
|
|
|
10688
11040
|
}
|
|
10689
11041
|
@media (min-width: 1200px) {
|
|
10690
11042
|
.float-xl-start {
|
|
10691
|
-
float:
|
|
11043
|
+
float: left !important;
|
|
10692
11044
|
}
|
|
10693
11045
|
|
|
10694
11046
|
.float-xl-end {
|
|
10695
|
-
float:
|
|
11047
|
+
float: right !important;
|
|
10696
11048
|
}
|
|
10697
11049
|
|
|
10698
11050
|
.float-xl-none {
|
|
@@ -11062,31 +11414,31 @@ textarea.form-control-lg {
|
|
|
11062
11414
|
}
|
|
11063
11415
|
|
|
11064
11416
|
.me-xl-0 {
|
|
11065
|
-
margin-
|
|
11417
|
+
margin-right: 0 !important;
|
|
11066
11418
|
}
|
|
11067
11419
|
|
|
11068
11420
|
.me-xl-1 {
|
|
11069
|
-
margin-
|
|
11421
|
+
margin-right: 0.25rem !important;
|
|
11070
11422
|
}
|
|
11071
11423
|
|
|
11072
11424
|
.me-xl-2 {
|
|
11073
|
-
margin-
|
|
11425
|
+
margin-right: 0.5rem !important;
|
|
11074
11426
|
}
|
|
11075
11427
|
|
|
11076
11428
|
.me-xl-3 {
|
|
11077
|
-
margin-
|
|
11429
|
+
margin-right: 1rem !important;
|
|
11078
11430
|
}
|
|
11079
11431
|
|
|
11080
11432
|
.me-xl-4 {
|
|
11081
|
-
margin-
|
|
11433
|
+
margin-right: 1.5rem !important;
|
|
11082
11434
|
}
|
|
11083
11435
|
|
|
11084
11436
|
.me-xl-5 {
|
|
11085
|
-
margin-
|
|
11437
|
+
margin-right: 3rem !important;
|
|
11086
11438
|
}
|
|
11087
11439
|
|
|
11088
11440
|
.me-xl-auto {
|
|
11089
|
-
margin-
|
|
11441
|
+
margin-right: auto !important;
|
|
11090
11442
|
}
|
|
11091
11443
|
|
|
11092
11444
|
.mb-xl-0 {
|
|
@@ -11118,31 +11470,31 @@ textarea.form-control-lg {
|
|
|
11118
11470
|
}
|
|
11119
11471
|
|
|
11120
11472
|
.ms-xl-0 {
|
|
11121
|
-
margin-
|
|
11473
|
+
margin-left: 0 !important;
|
|
11122
11474
|
}
|
|
11123
11475
|
|
|
11124
11476
|
.ms-xl-1 {
|
|
11125
|
-
margin-
|
|
11477
|
+
margin-left: 0.25rem !important;
|
|
11126
11478
|
}
|
|
11127
11479
|
|
|
11128
11480
|
.ms-xl-2 {
|
|
11129
|
-
margin-
|
|
11481
|
+
margin-left: 0.5rem !important;
|
|
11130
11482
|
}
|
|
11131
11483
|
|
|
11132
11484
|
.ms-xl-3 {
|
|
11133
|
-
margin-
|
|
11485
|
+
margin-left: 1rem !important;
|
|
11134
11486
|
}
|
|
11135
11487
|
|
|
11136
11488
|
.ms-xl-4 {
|
|
11137
|
-
margin-
|
|
11489
|
+
margin-left: 1.5rem !important;
|
|
11138
11490
|
}
|
|
11139
11491
|
|
|
11140
11492
|
.ms-xl-5 {
|
|
11141
|
-
margin-
|
|
11493
|
+
margin-left: 3rem !important;
|
|
11142
11494
|
}
|
|
11143
11495
|
|
|
11144
11496
|
.ms-xl-auto {
|
|
11145
|
-
margin-
|
|
11497
|
+
margin-left: auto !important;
|
|
11146
11498
|
}
|
|
11147
11499
|
|
|
11148
11500
|
.p-xl-0 {
|
|
@@ -11254,27 +11606,27 @@ textarea.form-control-lg {
|
|
|
11254
11606
|
}
|
|
11255
11607
|
|
|
11256
11608
|
.pe-xl-0 {
|
|
11257
|
-
padding-
|
|
11609
|
+
padding-right: 0 !important;
|
|
11258
11610
|
}
|
|
11259
11611
|
|
|
11260
11612
|
.pe-xl-1 {
|
|
11261
|
-
padding-
|
|
11613
|
+
padding-right: 0.25rem !important;
|
|
11262
11614
|
}
|
|
11263
11615
|
|
|
11264
11616
|
.pe-xl-2 {
|
|
11265
|
-
padding-
|
|
11617
|
+
padding-right: 0.5rem !important;
|
|
11266
11618
|
}
|
|
11267
11619
|
|
|
11268
11620
|
.pe-xl-3 {
|
|
11269
|
-
padding-
|
|
11621
|
+
padding-right: 1rem !important;
|
|
11270
11622
|
}
|
|
11271
11623
|
|
|
11272
11624
|
.pe-xl-4 {
|
|
11273
|
-
padding-
|
|
11625
|
+
padding-right: 1.5rem !important;
|
|
11274
11626
|
}
|
|
11275
11627
|
|
|
11276
11628
|
.pe-xl-5 {
|
|
11277
|
-
padding-
|
|
11629
|
+
padding-right: 3rem !important;
|
|
11278
11630
|
}
|
|
11279
11631
|
|
|
11280
11632
|
.pb-xl-0 {
|
|
@@ -11302,35 +11654,35 @@ textarea.form-control-lg {
|
|
|
11302
11654
|
}
|
|
11303
11655
|
|
|
11304
11656
|
.ps-xl-0 {
|
|
11305
|
-
padding-
|
|
11657
|
+
padding-left: 0 !important;
|
|
11306
11658
|
}
|
|
11307
11659
|
|
|
11308
11660
|
.ps-xl-1 {
|
|
11309
|
-
padding-
|
|
11661
|
+
padding-left: 0.25rem !important;
|
|
11310
11662
|
}
|
|
11311
11663
|
|
|
11312
11664
|
.ps-xl-2 {
|
|
11313
|
-
padding-
|
|
11665
|
+
padding-left: 0.5rem !important;
|
|
11314
11666
|
}
|
|
11315
11667
|
|
|
11316
11668
|
.ps-xl-3 {
|
|
11317
|
-
padding-
|
|
11669
|
+
padding-left: 1rem !important;
|
|
11318
11670
|
}
|
|
11319
11671
|
|
|
11320
11672
|
.ps-xl-4 {
|
|
11321
|
-
padding-
|
|
11673
|
+
padding-left: 1.5rem !important;
|
|
11322
11674
|
}
|
|
11323
11675
|
|
|
11324
11676
|
.ps-xl-5 {
|
|
11325
|
-
padding-
|
|
11677
|
+
padding-left: 3rem !important;
|
|
11326
11678
|
}
|
|
11327
11679
|
|
|
11328
11680
|
.text-xl-start {
|
|
11329
|
-
text-align:
|
|
11681
|
+
text-align: left !important;
|
|
11330
11682
|
}
|
|
11331
11683
|
|
|
11332
11684
|
.text-xl-end {
|
|
11333
|
-
text-align:
|
|
11685
|
+
text-align: right !important;
|
|
11334
11686
|
}
|
|
11335
11687
|
|
|
11336
11688
|
.text-xl-center {
|
|
@@ -11339,11 +11691,11 @@ textarea.form-control-lg {
|
|
|
11339
11691
|
}
|
|
11340
11692
|
@media (min-width: 1400px) {
|
|
11341
11693
|
.float-xxl-start {
|
|
11342
|
-
float:
|
|
11694
|
+
float: left !important;
|
|
11343
11695
|
}
|
|
11344
11696
|
|
|
11345
11697
|
.float-xxl-end {
|
|
11346
|
-
float:
|
|
11698
|
+
float: right !important;
|
|
11347
11699
|
}
|
|
11348
11700
|
|
|
11349
11701
|
.float-xxl-none {
|
|
@@ -11713,31 +12065,31 @@ textarea.form-control-lg {
|
|
|
11713
12065
|
}
|
|
11714
12066
|
|
|
11715
12067
|
.me-xxl-0 {
|
|
11716
|
-
margin-
|
|
12068
|
+
margin-right: 0 !important;
|
|
11717
12069
|
}
|
|
11718
12070
|
|
|
11719
12071
|
.me-xxl-1 {
|
|
11720
|
-
margin-
|
|
12072
|
+
margin-right: 0.25rem !important;
|
|
11721
12073
|
}
|
|
11722
12074
|
|
|
11723
12075
|
.me-xxl-2 {
|
|
11724
|
-
margin-
|
|
12076
|
+
margin-right: 0.5rem !important;
|
|
11725
12077
|
}
|
|
11726
12078
|
|
|
11727
12079
|
.me-xxl-3 {
|
|
11728
|
-
margin-
|
|
12080
|
+
margin-right: 1rem !important;
|
|
11729
12081
|
}
|
|
11730
12082
|
|
|
11731
12083
|
.me-xxl-4 {
|
|
11732
|
-
margin-
|
|
12084
|
+
margin-right: 1.5rem !important;
|
|
11733
12085
|
}
|
|
11734
12086
|
|
|
11735
12087
|
.me-xxl-5 {
|
|
11736
|
-
margin-
|
|
12088
|
+
margin-right: 3rem !important;
|
|
11737
12089
|
}
|
|
11738
12090
|
|
|
11739
12091
|
.me-xxl-auto {
|
|
11740
|
-
margin-
|
|
12092
|
+
margin-right: auto !important;
|
|
11741
12093
|
}
|
|
11742
12094
|
|
|
11743
12095
|
.mb-xxl-0 {
|
|
@@ -11769,31 +12121,31 @@ textarea.form-control-lg {
|
|
|
11769
12121
|
}
|
|
11770
12122
|
|
|
11771
12123
|
.ms-xxl-0 {
|
|
11772
|
-
margin-
|
|
12124
|
+
margin-left: 0 !important;
|
|
11773
12125
|
}
|
|
11774
12126
|
|
|
11775
12127
|
.ms-xxl-1 {
|
|
11776
|
-
margin-
|
|
12128
|
+
margin-left: 0.25rem !important;
|
|
11777
12129
|
}
|
|
11778
12130
|
|
|
11779
12131
|
.ms-xxl-2 {
|
|
11780
|
-
margin-
|
|
12132
|
+
margin-left: 0.5rem !important;
|
|
11781
12133
|
}
|
|
11782
12134
|
|
|
11783
12135
|
.ms-xxl-3 {
|
|
11784
|
-
margin-
|
|
12136
|
+
margin-left: 1rem !important;
|
|
11785
12137
|
}
|
|
11786
12138
|
|
|
11787
12139
|
.ms-xxl-4 {
|
|
11788
|
-
margin-
|
|
12140
|
+
margin-left: 1.5rem !important;
|
|
11789
12141
|
}
|
|
11790
12142
|
|
|
11791
12143
|
.ms-xxl-5 {
|
|
11792
|
-
margin-
|
|
12144
|
+
margin-left: 3rem !important;
|
|
11793
12145
|
}
|
|
11794
12146
|
|
|
11795
12147
|
.ms-xxl-auto {
|
|
11796
|
-
margin-
|
|
12148
|
+
margin-left: auto !important;
|
|
11797
12149
|
}
|
|
11798
12150
|
|
|
11799
12151
|
.p-xxl-0 {
|
|
@@ -11905,27 +12257,27 @@ textarea.form-control-lg {
|
|
|
11905
12257
|
}
|
|
11906
12258
|
|
|
11907
12259
|
.pe-xxl-0 {
|
|
11908
|
-
padding-
|
|
12260
|
+
padding-right: 0 !important;
|
|
11909
12261
|
}
|
|
11910
12262
|
|
|
11911
12263
|
.pe-xxl-1 {
|
|
11912
|
-
padding-
|
|
12264
|
+
padding-right: 0.25rem !important;
|
|
11913
12265
|
}
|
|
11914
12266
|
|
|
11915
12267
|
.pe-xxl-2 {
|
|
11916
|
-
padding-
|
|
12268
|
+
padding-right: 0.5rem !important;
|
|
11917
12269
|
}
|
|
11918
12270
|
|
|
11919
12271
|
.pe-xxl-3 {
|
|
11920
|
-
padding-
|
|
12272
|
+
padding-right: 1rem !important;
|
|
11921
12273
|
}
|
|
11922
12274
|
|
|
11923
12275
|
.pe-xxl-4 {
|
|
11924
|
-
padding-
|
|
12276
|
+
padding-right: 1.5rem !important;
|
|
11925
12277
|
}
|
|
11926
12278
|
|
|
11927
12279
|
.pe-xxl-5 {
|
|
11928
|
-
padding-
|
|
12280
|
+
padding-right: 3rem !important;
|
|
11929
12281
|
}
|
|
11930
12282
|
|
|
11931
12283
|
.pb-xxl-0 {
|
|
@@ -11953,35 +12305,35 @@ textarea.form-control-lg {
|
|
|
11953
12305
|
}
|
|
11954
12306
|
|
|
11955
12307
|
.ps-xxl-0 {
|
|
11956
|
-
padding-
|
|
12308
|
+
padding-left: 0 !important;
|
|
11957
12309
|
}
|
|
11958
12310
|
|
|
11959
12311
|
.ps-xxl-1 {
|
|
11960
|
-
padding-
|
|
12312
|
+
padding-left: 0.25rem !important;
|
|
11961
12313
|
}
|
|
11962
12314
|
|
|
11963
12315
|
.ps-xxl-2 {
|
|
11964
|
-
padding-
|
|
12316
|
+
padding-left: 0.5rem !important;
|
|
11965
12317
|
}
|
|
11966
12318
|
|
|
11967
12319
|
.ps-xxl-3 {
|
|
11968
|
-
padding-
|
|
12320
|
+
padding-left: 1rem !important;
|
|
11969
12321
|
}
|
|
11970
12322
|
|
|
11971
12323
|
.ps-xxl-4 {
|
|
11972
|
-
padding-
|
|
12324
|
+
padding-left: 1.5rem !important;
|
|
11973
12325
|
}
|
|
11974
12326
|
|
|
11975
12327
|
.ps-xxl-5 {
|
|
11976
|
-
padding-
|
|
12328
|
+
padding-left: 3rem !important;
|
|
11977
12329
|
}
|
|
11978
12330
|
|
|
11979
12331
|
.text-xxl-start {
|
|
11980
|
-
text-align:
|
|
12332
|
+
text-align: left !important;
|
|
11981
12333
|
}
|
|
11982
12334
|
|
|
11983
12335
|
.text-xxl-end {
|
|
11984
|
-
text-align:
|
|
12336
|
+
text-align: right !important;
|
|
11985
12337
|
}
|
|
11986
12338
|
|
|
11987
12339
|
.text-xxl-center {
|