@coreui/coreui 4.0.2 → 4.1.0
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 +255 -206
- 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 +256 -207
- 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 +182 -82
- 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 +725 -350
- 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 +733 -373
- 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 +782 -704
- package/dist/js/coreui.bundle.js.map +1 -1
- package/dist/js/coreui.bundle.min.js +2 -2
- package/dist/js/coreui.bundle.min.js.map +1 -1
- package/dist/js/coreui.esm.js +663 -611
- package/dist/js/coreui.esm.js.map +1 -1
- package/dist/js/coreui.esm.min.js +2 -2
- package/dist/js/coreui.esm.min.js.map +1 -1
- package/dist/js/coreui.js +673 -623
- package/dist/js/coreui.js.map +1 -1
- package/dist/js/coreui.min.js +2 -2
- package/dist/js/coreui.min.js.map +1 -1
- package/js/dist/alert.js +81 -48
- package/js/dist/alert.js.map +1 -1
- package/js/dist/base-component.js +25 -17
- package/js/dist/base-component.js.map +1 -1
- package/js/dist/button.js +22 -12
- package/js/dist/button.js.map +1 -1
- package/js/dist/carousel.js +69 -44
- package/js/dist/carousel.js.map +1 -1
- package/js/dist/collapse.js +117 -131
- package/js/dist/collapse.js.map +1 -1
- package/js/dist/dom/data.js +5 -5
- package/js/dist/dom/data.js.map +1 -1
- package/js/dist/dom/event-handler.js +14 -5
- package/js/dist/dom/event-handler.js.map +1 -1
- package/js/dist/dom/manipulator.js +6 -6
- package/js/dist/dom/manipulator.js.map +1 -1
- package/js/dist/dom/selector-engine.js +53 -8
- package/js/dist/dom/selector-engine.js.map +1 -1
- package/js/dist/dropdown.js +99 -106
- package/js/dist/dropdown.js.map +1 -1
- package/js/dist/modal.js +244 -87
- package/js/dist/modal.js.map +1 -1
- package/js/dist/offcanvas.js +205 -56
- package/js/dist/offcanvas.js.map +1 -1
- package/js/dist/popover.js +28 -58
- package/js/dist/popover.js.map +1 -1
- package/js/dist/scrollspy.js +40 -30
- package/js/dist/scrollspy.js.map +1 -1
- package/js/dist/tab.js +44 -22
- package/js/dist/tab.js.map +1 -1
- package/js/dist/toast.js +127 -29
- package/js/dist/toast.js.map +1 -1
- package/js/dist/tooltip.js +122 -104
- 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 +9 -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 +6 -4
- 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 +14 -5
- package/js/src/util/sanitizer.js +21 -22
- package/js/src/util/scrollbar.js +1 -1
- package/package.json +47 -44
- 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 +1 -11
- 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 +184 -12
- 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 +29 -10
- package/scss/mixins/_ltr-rtl.scss +21 -0
- package/scss/mixins/_utilities.scss +26 -26
- package/scss/mixins/_visually-hidden.scss +1 -1
- package/scss/sidebar/_sidebar.scss +22 -16
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.0
|
|
4
|
+
* @version v4.1.0
|
|
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.0
|
|
11
|
+
* @version v4.1.0
|
|
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
|
}
|
|
@@ -656,16 +676,16 @@ progress {
|
|
|
656
676
|
--cui-gutter-y: 0;
|
|
657
677
|
display: flex;
|
|
658
678
|
flex-wrap: wrap;
|
|
659
|
-
margin-top: calc(var(--cui-gutter-y)
|
|
660
|
-
margin-right: calc(var(--cui-gutter-x)
|
|
661
|
-
margin-left: calc(var(--cui-gutter-x)
|
|
679
|
+
margin-top: calc(-1 * var(--cui-gutter-y));
|
|
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;
|
|
@@ -1743,37 +1719,76 @@ progress {
|
|
|
1743
1719
|
--cui-gutter-y: 0.5rem;
|
|
1744
1720
|
}
|
|
1745
1721
|
|
|
1746
|
-
.g-xl-3,
|
|
1747
|
-
.gx-xl-3 {
|
|
1748
|
-
--cui-gutter-x: 1rem;
|
|
1722
|
+
.g-xl-3,
|
|
1723
|
+
.gx-xl-3 {
|
|
1724
|
+
--cui-gutter-x: 1rem;
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
.g-xl-3,
|
|
1728
|
+
.gy-xl-3 {
|
|
1729
|
+
--cui-gutter-y: 1rem;
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
.g-xl-4,
|
|
1733
|
+
.gx-xl-4 {
|
|
1734
|
+
--cui-gutter-x: 1.5rem;
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
.g-xl-4,
|
|
1738
|
+
.gy-xl-4 {
|
|
1739
|
+
--cui-gutter-y: 1.5rem;
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
.g-xl-5,
|
|
1743
|
+
.gx-xl-5 {
|
|
1744
|
+
--cui-gutter-x: 3rem;
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
.g-xl-5,
|
|
1748
|
+
.gy-xl-5 {
|
|
1749
|
+
--cui-gutter-y: 3rem;
|
|
1750
|
+
}
|
|
1751
|
+
}
|
|
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%;
|
|
1749
1770
|
}
|
|
1750
1771
|
|
|
1751
|
-
.
|
|
1752
|
-
|
|
1753
|
-
|
|
1772
|
+
.row-cols-xxl-3 > * {
|
|
1773
|
+
flex: 0 0 auto;
|
|
1774
|
+
width: 33.3333333333%;
|
|
1754
1775
|
}
|
|
1755
1776
|
|
|
1756
|
-
.
|
|
1757
|
-
|
|
1758
|
-
|
|
1777
|
+
.row-cols-xxl-4 > * {
|
|
1778
|
+
flex: 0 0 auto;
|
|
1779
|
+
width: 25%;
|
|
1759
1780
|
}
|
|
1760
1781
|
|
|
1761
|
-
.
|
|
1762
|
-
|
|
1763
|
-
|
|
1782
|
+
.row-cols-xxl-5 > * {
|
|
1783
|
+
flex: 0 0 auto;
|
|
1784
|
+
width: 20%;
|
|
1764
1785
|
}
|
|
1765
1786
|
|
|
1766
|
-
.
|
|
1767
|
-
|
|
1768
|
-
|
|
1787
|
+
.row-cols-xxl-6 > * {
|
|
1788
|
+
flex: 0 0 auto;
|
|
1789
|
+
width: 16.6666666667%;
|
|
1769
1790
|
}
|
|
1770
1791
|
|
|
1771
|
-
.g-xl-5,
|
|
1772
|
-
.gy-xl-5 {
|
|
1773
|
-
--cui-gutter-y: 3rem;
|
|
1774
|
-
}
|
|
1775
|
-
}
|
|
1776
|
-
@media (min-width: 1400px) {
|
|
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,
|
|
@@ -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);
|
|
@@ -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,46 +6696,55 @@ 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
|
}
|
|
6465
6702
|
.sidebar.sidebar-sm {
|
|
6466
6703
|
--cui-sidebar-width: 12rem;
|
|
6467
|
-
--cui-sidebar-occupy-start: 12rem;
|
|
6468
6704
|
}
|
|
6469
|
-
|
|
6470
|
-
|
|
6471
|
-
|
|
6705
|
+
@media (min-width: 768px) {
|
|
6706
|
+
.sidebar.sidebar-sm:not(.sidebar-end):not(.hide) ~ * {
|
|
6707
|
+
--cui-sidebar-occupy-start: 12rem;
|
|
6708
|
+
}
|
|
6709
|
+
.sidebar.sidebar-sm.sidebar-end:not(.hide) ~ * {
|
|
6710
|
+
--cui-sidebar-occupy-end: 12rem;
|
|
6711
|
+
}
|
|
6472
6712
|
}
|
|
6473
6713
|
.sidebar.sidebar-lg {
|
|
6474
6714
|
--cui-sidebar-width: 20rem;
|
|
6475
|
-
--cui-sidebar-occupy-start: 20rem;
|
|
6476
6715
|
}
|
|
6477
|
-
|
|
6478
|
-
|
|
6479
|
-
|
|
6716
|
+
@media (min-width: 768px) {
|
|
6717
|
+
.sidebar.sidebar-lg:not(.sidebar-end):not(.hide) ~ * {
|
|
6718
|
+
--cui-sidebar-occupy-start: 20rem;
|
|
6719
|
+
}
|
|
6720
|
+
.sidebar.sidebar-lg.sidebar-end:not(.hide) ~ * {
|
|
6721
|
+
--cui-sidebar-occupy-end: 20rem;
|
|
6722
|
+
}
|
|
6480
6723
|
}
|
|
6481
6724
|
.sidebar.sidebar-xl {
|
|
6482
6725
|
--cui-sidebar-width: 24rem;
|
|
6483
|
-
--cui-sidebar-occupy-start: 24rem;
|
|
6484
6726
|
}
|
|
6485
|
-
|
|
6486
|
-
|
|
6487
|
-
|
|
6727
|
+
@media (min-width: 768px) {
|
|
6728
|
+
.sidebar.sidebar-xl:not(.sidebar-end):not(.hide) ~ * {
|
|
6729
|
+
--cui-sidebar-occupy-start: 24rem;
|
|
6730
|
+
}
|
|
6731
|
+
.sidebar.sidebar-xl.sidebar-end:not(.hide) ~ * {
|
|
6732
|
+
--cui-sidebar-occupy-end: 24rem;
|
|
6733
|
+
}
|
|
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
|
+
}
|
|
6488
6748
|
}
|
|
6489
6749
|
@media (min-width: 768px) {
|
|
6490
6750
|
.sidebar.sidebar-fixed {
|
|
@@ -7114,15 +7374,15 @@ textarea.form-control-lg {
|
|
|
7114
7374
|
}
|
|
7115
7375
|
|
|
7116
7376
|
.ratio-4x3 {
|
|
7117
|
-
--cui-aspect-ratio:
|
|
7377
|
+
--cui-aspect-ratio: 75%;
|
|
7118
7378
|
}
|
|
7119
7379
|
|
|
7120
7380
|
.ratio-16x9 {
|
|
7121
|
-
--cui-aspect-ratio:
|
|
7381
|
+
--cui-aspect-ratio: 56.25%;
|
|
7122
7382
|
}
|
|
7123
7383
|
|
|
7124
7384
|
.ratio-21x9 {
|
|
7125
|
-
--cui-aspect-ratio:
|
|
7385
|
+
--cui-aspect-ratio: 42.8571428571%;
|
|
7126
7386
|
}
|
|
7127
7387
|
|
|
7128
7388
|
.fixed-top {
|
|
@@ -7182,6 +7442,20 @@ textarea.form-control-lg {
|
|
|
7182
7442
|
z-index: 1020;
|
|
7183
7443
|
}
|
|
7184
7444
|
}
|
|
7445
|
+
.hstack {
|
|
7446
|
+
display: flex;
|
|
7447
|
+
flex-direction: row;
|
|
7448
|
+
align-items: center;
|
|
7449
|
+
align-self: stretch;
|
|
7450
|
+
}
|
|
7451
|
+
|
|
7452
|
+
.vstack {
|
|
7453
|
+
display: flex;
|
|
7454
|
+
flex: 1 1 auto;
|
|
7455
|
+
flex-direction: column;
|
|
7456
|
+
align-self: stretch;
|
|
7457
|
+
}
|
|
7458
|
+
|
|
7185
7459
|
.visually-hidden,
|
|
7186
7460
|
.visually-hidden-focusable:not(:focus):not(:focus-within) {
|
|
7187
7461
|
position: absolute !important;
|
|
@@ -7211,6 +7485,15 @@ textarea.form-control-lg {
|
|
|
7211
7485
|
white-space: nowrap;
|
|
7212
7486
|
}
|
|
7213
7487
|
|
|
7488
|
+
.vr {
|
|
7489
|
+
display: inline-block;
|
|
7490
|
+
align-self: stretch;
|
|
7491
|
+
width: 1px;
|
|
7492
|
+
min-height: 1em;
|
|
7493
|
+
background-color: currentColor;
|
|
7494
|
+
opacity: 0.25;
|
|
7495
|
+
}
|
|
7496
|
+
|
|
7214
7497
|
.align-baseline {
|
|
7215
7498
|
vertical-align: baseline !important;
|
|
7216
7499
|
}
|
|
@@ -7460,183 +7743,183 @@ textarea.form-control-lg {
|
|
|
7460
7743
|
}
|
|
7461
7744
|
|
|
7462
7745
|
.border-primary {
|
|
7463
|
-
border-color:
|
|
7746
|
+
border-color: #321fdb !important;
|
|
7464
7747
|
}
|
|
7465
7748
|
|
|
7466
7749
|
.border-secondary {
|
|
7467
|
-
border-color:
|
|
7750
|
+
border-color: #9da5b1 !important;
|
|
7468
7751
|
}
|
|
7469
7752
|
|
|
7470
7753
|
.border-success {
|
|
7471
|
-
border-color:
|
|
7754
|
+
border-color: #2eb85c !important;
|
|
7472
7755
|
}
|
|
7473
7756
|
|
|
7474
7757
|
.border-info {
|
|
7475
|
-
border-color:
|
|
7758
|
+
border-color: #39f !important;
|
|
7476
7759
|
}
|
|
7477
7760
|
|
|
7478
7761
|
.border-warning {
|
|
7479
|
-
border-color:
|
|
7762
|
+
border-color: #f9b115 !important;
|
|
7480
7763
|
}
|
|
7481
7764
|
|
|
7482
7765
|
.border-danger {
|
|
7483
|
-
border-color:
|
|
7766
|
+
border-color: #e55353 !important;
|
|
7484
7767
|
}
|
|
7485
7768
|
|
|
7486
7769
|
.border-light {
|
|
7487
|
-
border-color:
|
|
7770
|
+
border-color: #ebedef !important;
|
|
7488
7771
|
}
|
|
7489
7772
|
|
|
7490
7773
|
.border-dark {
|
|
7491
|
-
border-color:
|
|
7774
|
+
border-color: #4f5d73 !important;
|
|
7492
7775
|
}
|
|
7493
7776
|
|
|
7494
7777
|
.border-white {
|
|
7495
|
-
border-color:
|
|
7778
|
+
border-color: #fff !important;
|
|
7496
7779
|
}
|
|
7497
7780
|
|
|
7498
7781
|
.border-top-primary {
|
|
7499
|
-
border-top-color:
|
|
7782
|
+
border-top-color: #321fdb !important;
|
|
7500
7783
|
}
|
|
7501
7784
|
|
|
7502
7785
|
.border-top-secondary {
|
|
7503
|
-
border-top-color:
|
|
7786
|
+
border-top-color: #9da5b1 !important;
|
|
7504
7787
|
}
|
|
7505
7788
|
|
|
7506
7789
|
.border-top-success {
|
|
7507
|
-
border-top-color:
|
|
7790
|
+
border-top-color: #2eb85c !important;
|
|
7508
7791
|
}
|
|
7509
7792
|
|
|
7510
7793
|
.border-top-info {
|
|
7511
|
-
border-top-color:
|
|
7794
|
+
border-top-color: #39f !important;
|
|
7512
7795
|
}
|
|
7513
7796
|
|
|
7514
7797
|
.border-top-warning {
|
|
7515
|
-
border-top-color:
|
|
7798
|
+
border-top-color: #f9b115 !important;
|
|
7516
7799
|
}
|
|
7517
7800
|
|
|
7518
7801
|
.border-top-danger {
|
|
7519
|
-
border-top-color:
|
|
7802
|
+
border-top-color: #e55353 !important;
|
|
7520
7803
|
}
|
|
7521
7804
|
|
|
7522
7805
|
.border-top-light {
|
|
7523
|
-
border-top-color:
|
|
7806
|
+
border-top-color: #ebedef !important;
|
|
7524
7807
|
}
|
|
7525
7808
|
|
|
7526
7809
|
.border-top-dark {
|
|
7527
|
-
border-top-color:
|
|
7810
|
+
border-top-color: #4f5d73 !important;
|
|
7528
7811
|
}
|
|
7529
7812
|
|
|
7530
7813
|
.border-top-white {
|
|
7531
|
-
border-top-color:
|
|
7814
|
+
border-top-color: #fff !important;
|
|
7532
7815
|
}
|
|
7533
7816
|
|
|
7534
7817
|
.border-end-primary {
|
|
7535
|
-
border-left-color:
|
|
7818
|
+
border-left-color: #321fdb !important;
|
|
7536
7819
|
}
|
|
7537
7820
|
|
|
7538
7821
|
.border-end-secondary {
|
|
7539
|
-
border-left-color:
|
|
7822
|
+
border-left-color: #9da5b1 !important;
|
|
7540
7823
|
}
|
|
7541
7824
|
|
|
7542
7825
|
.border-end-success {
|
|
7543
|
-
border-left-color:
|
|
7826
|
+
border-left-color: #2eb85c !important;
|
|
7544
7827
|
}
|
|
7545
7828
|
|
|
7546
7829
|
.border-end-info {
|
|
7547
|
-
border-left-color:
|
|
7830
|
+
border-left-color: #39f !important;
|
|
7548
7831
|
}
|
|
7549
7832
|
|
|
7550
7833
|
.border-end-warning {
|
|
7551
|
-
border-left-color:
|
|
7834
|
+
border-left-color: #f9b115 !important;
|
|
7552
7835
|
}
|
|
7553
7836
|
|
|
7554
7837
|
.border-end-danger {
|
|
7555
|
-
border-left-color:
|
|
7838
|
+
border-left-color: #e55353 !important;
|
|
7556
7839
|
}
|
|
7557
7840
|
|
|
7558
7841
|
.border-end-light {
|
|
7559
|
-
border-left-color:
|
|
7842
|
+
border-left-color: #ebedef !important;
|
|
7560
7843
|
}
|
|
7561
7844
|
|
|
7562
7845
|
.border-end-dark {
|
|
7563
|
-
border-left-color:
|
|
7846
|
+
border-left-color: #4f5d73 !important;
|
|
7564
7847
|
}
|
|
7565
7848
|
|
|
7566
7849
|
.border-end-white {
|
|
7567
|
-
border-left-color:
|
|
7850
|
+
border-left-color: #fff !important;
|
|
7568
7851
|
}
|
|
7569
7852
|
|
|
7570
7853
|
.border-bottom-primary {
|
|
7571
|
-
border-bottom-color:
|
|
7854
|
+
border-bottom-color: #321fdb !important;
|
|
7572
7855
|
}
|
|
7573
7856
|
|
|
7574
7857
|
.border-bottom-secondary {
|
|
7575
|
-
border-bottom-color:
|
|
7858
|
+
border-bottom-color: #9da5b1 !important;
|
|
7576
7859
|
}
|
|
7577
7860
|
|
|
7578
7861
|
.border-bottom-success {
|
|
7579
|
-
border-bottom-color:
|
|
7862
|
+
border-bottom-color: #2eb85c !important;
|
|
7580
7863
|
}
|
|
7581
7864
|
|
|
7582
7865
|
.border-bottom-info {
|
|
7583
|
-
border-bottom-color:
|
|
7866
|
+
border-bottom-color: #39f !important;
|
|
7584
7867
|
}
|
|
7585
7868
|
|
|
7586
7869
|
.border-bottom-warning {
|
|
7587
|
-
border-bottom-color:
|
|
7870
|
+
border-bottom-color: #f9b115 !important;
|
|
7588
7871
|
}
|
|
7589
7872
|
|
|
7590
7873
|
.border-bottom-danger {
|
|
7591
|
-
border-bottom-color:
|
|
7874
|
+
border-bottom-color: #e55353 !important;
|
|
7592
7875
|
}
|
|
7593
7876
|
|
|
7594
7877
|
.border-bottom-light {
|
|
7595
|
-
border-bottom-color:
|
|
7878
|
+
border-bottom-color: #ebedef !important;
|
|
7596
7879
|
}
|
|
7597
7880
|
|
|
7598
7881
|
.border-bottom-dark {
|
|
7599
|
-
border-bottom-color:
|
|
7882
|
+
border-bottom-color: #4f5d73 !important;
|
|
7600
7883
|
}
|
|
7601
7884
|
|
|
7602
7885
|
.border-bottom-white {
|
|
7603
|
-
border-bottom-color:
|
|
7886
|
+
border-bottom-color: #fff !important;
|
|
7604
7887
|
}
|
|
7605
7888
|
|
|
7606
7889
|
.border-start-primary {
|
|
7607
|
-
border-right-color:
|
|
7890
|
+
border-right-color: #321fdb !important;
|
|
7608
7891
|
}
|
|
7609
7892
|
|
|
7610
7893
|
.border-start-secondary {
|
|
7611
|
-
border-right-color:
|
|
7894
|
+
border-right-color: #9da5b1 !important;
|
|
7612
7895
|
}
|
|
7613
7896
|
|
|
7614
7897
|
.border-start-success {
|
|
7615
|
-
border-right-color:
|
|
7898
|
+
border-right-color: #2eb85c !important;
|
|
7616
7899
|
}
|
|
7617
7900
|
|
|
7618
7901
|
.border-start-info {
|
|
7619
|
-
border-right-color:
|
|
7902
|
+
border-right-color: #39f !important;
|
|
7620
7903
|
}
|
|
7621
7904
|
|
|
7622
7905
|
.border-start-warning {
|
|
7623
|
-
border-right-color:
|
|
7906
|
+
border-right-color: #f9b115 !important;
|
|
7624
7907
|
}
|
|
7625
7908
|
|
|
7626
7909
|
.border-start-danger {
|
|
7627
|
-
border-right-color:
|
|
7910
|
+
border-right-color: #e55353 !important;
|
|
7628
7911
|
}
|
|
7629
7912
|
|
|
7630
7913
|
.border-start-light {
|
|
7631
|
-
border-right-color:
|
|
7914
|
+
border-right-color: #ebedef !important;
|
|
7632
7915
|
}
|
|
7633
7916
|
|
|
7634
7917
|
.border-start-dark {
|
|
7635
|
-
border-right-color:
|
|
7918
|
+
border-right-color: #4f5d73 !important;
|
|
7636
7919
|
}
|
|
7637
7920
|
|
|
7638
7921
|
.border-start-white {
|
|
7639
|
-
border-right-color:
|
|
7922
|
+
border-right-color: #fff !important;
|
|
7640
7923
|
}
|
|
7641
7924
|
|
|
7642
7925
|
.border-1 {
|
|
@@ -8521,127 +8804,204 @@ textarea.form-control-lg {
|
|
|
8521
8804
|
|
|
8522
8805
|
/* rtl:end:remove */
|
|
8523
8806
|
.text-primary {
|
|
8524
|
-
|
|
8807
|
+
--cui-text-opacity: 1;
|
|
8808
|
+
color: rgba(var(--cui-primary-rgb), var(--cui-text-opacity)) !important;
|
|
8525
8809
|
}
|
|
8526
8810
|
|
|
8527
8811
|
.text-secondary {
|
|
8528
|
-
|
|
8812
|
+
--cui-text-opacity: 1;
|
|
8813
|
+
color: rgba(var(--cui-secondary-rgb), var(--cui-text-opacity)) !important;
|
|
8529
8814
|
}
|
|
8530
8815
|
|
|
8531
8816
|
.text-success {
|
|
8532
|
-
|
|
8817
|
+
--cui-text-opacity: 1;
|
|
8818
|
+
color: rgba(var(--cui-success-rgb), var(--cui-text-opacity)) !important;
|
|
8533
8819
|
}
|
|
8534
8820
|
|
|
8535
8821
|
.text-info {
|
|
8536
|
-
|
|
8822
|
+
--cui-text-opacity: 1;
|
|
8823
|
+
color: rgba(var(--cui-info-rgb), var(--cui-text-opacity)) !important;
|
|
8537
8824
|
}
|
|
8538
8825
|
|
|
8539
8826
|
.text-warning {
|
|
8540
|
-
|
|
8827
|
+
--cui-text-opacity: 1;
|
|
8828
|
+
color: rgba(var(--cui-warning-rgb), var(--cui-text-opacity)) !important;
|
|
8541
8829
|
}
|
|
8542
8830
|
|
|
8543
8831
|
.text-danger {
|
|
8544
|
-
|
|
8832
|
+
--cui-text-opacity: 1;
|
|
8833
|
+
color: rgba(var(--cui-danger-rgb), var(--cui-text-opacity)) !important;
|
|
8545
8834
|
}
|
|
8546
8835
|
|
|
8547
8836
|
.text-light {
|
|
8548
|
-
|
|
8837
|
+
--cui-text-opacity: 1;
|
|
8838
|
+
color: rgba(var(--cui-light-rgb), var(--cui-text-opacity)) !important;
|
|
8549
8839
|
}
|
|
8550
8840
|
|
|
8551
8841
|
.text-dark {
|
|
8552
|
-
|
|
8842
|
+
--cui-text-opacity: 1;
|
|
8843
|
+
color: rgba(var(--cui-dark-rgb), var(--cui-text-opacity)) !important;
|
|
8844
|
+
}
|
|
8845
|
+
|
|
8846
|
+
.text-black {
|
|
8847
|
+
--cui-text-opacity: 1;
|
|
8848
|
+
color: rgba(var(--cui-black-rgb), var(--cui-text-opacity)) !important;
|
|
8553
8849
|
}
|
|
8554
8850
|
|
|
8555
8851
|
.text-white {
|
|
8556
|
-
|
|
8852
|
+
--cui-text-opacity: 1;
|
|
8853
|
+
color: rgba(var(--cui-white-rgb), var(--cui-text-opacity)) !important;
|
|
8557
8854
|
}
|
|
8558
8855
|
|
|
8559
8856
|
.text-body {
|
|
8560
|
-
|
|
8857
|
+
--cui-text-opacity: 1;
|
|
8858
|
+
color: rgba(var(--cui-body-color-rgb), var(--cui-text-opacity)) !important;
|
|
8561
8859
|
}
|
|
8562
8860
|
|
|
8563
8861
|
.text-muted {
|
|
8564
|
-
|
|
8862
|
+
--cui-text-opacity: 1;
|
|
8863
|
+
color: rgba(44, 56, 74, 0.38) !important;
|
|
8565
8864
|
}
|
|
8566
8865
|
|
|
8567
8866
|
.text-black-50 {
|
|
8568
|
-
|
|
8867
|
+
--cui-text-opacity: 1;
|
|
8868
|
+
color: rgba(0, 0, 21, 0.5) !important;
|
|
8569
8869
|
}
|
|
8570
8870
|
|
|
8571
8871
|
.text-white-50 {
|
|
8572
|
-
|
|
8872
|
+
--cui-text-opacity: 1;
|
|
8873
|
+
color: rgba(255, 255, 255, 0.5) !important;
|
|
8573
8874
|
}
|
|
8574
8875
|
|
|
8575
8876
|
.text-reset {
|
|
8576
|
-
|
|
8877
|
+
--cui-text-opacity: 1;
|
|
8878
|
+
color: inherit !important;
|
|
8577
8879
|
}
|
|
8578
8880
|
|
|
8579
8881
|
.text-high-emphasis-inverse {
|
|
8580
|
-
|
|
8882
|
+
--cui-text-opacity: 1;
|
|
8883
|
+
color: rgba(255, 255, 255, 0.87) !important;
|
|
8581
8884
|
}
|
|
8582
8885
|
|
|
8583
8886
|
.text-medium-emphasis-inverse {
|
|
8584
|
-
|
|
8887
|
+
--cui-text-opacity: 1;
|
|
8888
|
+
color: rgba(255, 255, 255, 0.6) !important;
|
|
8585
8889
|
}
|
|
8586
8890
|
|
|
8587
8891
|
.text-disabled-inverse {
|
|
8588
|
-
|
|
8892
|
+
--cui-text-opacity: 1;
|
|
8893
|
+
color: rgba(255, 255, 255, 0.38) !important;
|
|
8589
8894
|
}
|
|
8590
8895
|
|
|
8591
8896
|
.text-high-emphasis {
|
|
8592
|
-
|
|
8897
|
+
--cui-text-opacity: 1;
|
|
8898
|
+
color: rgba(44, 56, 74, 0.95) !important;
|
|
8593
8899
|
}
|
|
8594
8900
|
|
|
8595
8901
|
.text-medium-emphasis {
|
|
8596
|
-
|
|
8902
|
+
--cui-text-opacity: 1;
|
|
8903
|
+
color: rgba(44, 56, 74, 0.681) !important;
|
|
8597
8904
|
}
|
|
8598
8905
|
|
|
8599
8906
|
.text-disabled {
|
|
8600
|
-
|
|
8907
|
+
--cui-text-opacity: 1;
|
|
8908
|
+
color: rgba(44, 56, 74, 0.38) !important;
|
|
8909
|
+
}
|
|
8910
|
+
|
|
8911
|
+
.text-opacity-25 {
|
|
8912
|
+
--cui-text-opacity: 0.25;
|
|
8913
|
+
}
|
|
8914
|
+
|
|
8915
|
+
.text-opacity-50 {
|
|
8916
|
+
--cui-text-opacity: 0.5;
|
|
8917
|
+
}
|
|
8918
|
+
|
|
8919
|
+
.text-opacity-75 {
|
|
8920
|
+
--cui-text-opacity: 0.75;
|
|
8921
|
+
}
|
|
8922
|
+
|
|
8923
|
+
.text-opacity-100 {
|
|
8924
|
+
--cui-text-opacity: 1;
|
|
8601
8925
|
}
|
|
8602
8926
|
|
|
8603
8927
|
.bg-primary {
|
|
8604
|
-
|
|
8928
|
+
--cui-bg-opacity: 1;
|
|
8929
|
+
background-color: rgba(var(--cui-primary-rgb), var(--cui-bg-opacity)) !important;
|
|
8605
8930
|
}
|
|
8606
8931
|
|
|
8607
8932
|
.bg-secondary {
|
|
8608
|
-
|
|
8933
|
+
--cui-bg-opacity: 1;
|
|
8934
|
+
background-color: rgba(var(--cui-secondary-rgb), var(--cui-bg-opacity)) !important;
|
|
8609
8935
|
}
|
|
8610
8936
|
|
|
8611
8937
|
.bg-success {
|
|
8612
|
-
|
|
8938
|
+
--cui-bg-opacity: 1;
|
|
8939
|
+
background-color: rgba(var(--cui-success-rgb), var(--cui-bg-opacity)) !important;
|
|
8613
8940
|
}
|
|
8614
8941
|
|
|
8615
8942
|
.bg-info {
|
|
8616
|
-
|
|
8943
|
+
--cui-bg-opacity: 1;
|
|
8944
|
+
background-color: rgba(var(--cui-info-rgb), var(--cui-bg-opacity)) !important;
|
|
8617
8945
|
}
|
|
8618
8946
|
|
|
8619
8947
|
.bg-warning {
|
|
8620
|
-
|
|
8948
|
+
--cui-bg-opacity: 1;
|
|
8949
|
+
background-color: rgba(var(--cui-warning-rgb), var(--cui-bg-opacity)) !important;
|
|
8621
8950
|
}
|
|
8622
8951
|
|
|
8623
8952
|
.bg-danger {
|
|
8624
|
-
|
|
8953
|
+
--cui-bg-opacity: 1;
|
|
8954
|
+
background-color: rgba(var(--cui-danger-rgb), var(--cui-bg-opacity)) !important;
|
|
8625
8955
|
}
|
|
8626
8956
|
|
|
8627
8957
|
.bg-light {
|
|
8628
|
-
|
|
8958
|
+
--cui-bg-opacity: 1;
|
|
8959
|
+
background-color: rgba(var(--cui-light-rgb), var(--cui-bg-opacity)) !important;
|
|
8629
8960
|
}
|
|
8630
8961
|
|
|
8631
8962
|
.bg-dark {
|
|
8632
|
-
|
|
8963
|
+
--cui-bg-opacity: 1;
|
|
8964
|
+
background-color: rgba(var(--cui-dark-rgb), var(--cui-bg-opacity)) !important;
|
|
8633
8965
|
}
|
|
8634
8966
|
|
|
8635
|
-
.bg-
|
|
8636
|
-
|
|
8967
|
+
.bg-black {
|
|
8968
|
+
--cui-bg-opacity: 1;
|
|
8969
|
+
background-color: rgba(var(--cui-black-rgb), var(--cui-bg-opacity)) !important;
|
|
8637
8970
|
}
|
|
8638
8971
|
|
|
8639
8972
|
.bg-white {
|
|
8640
|
-
|
|
8973
|
+
--cui-bg-opacity: 1;
|
|
8974
|
+
background-color: rgba(var(--cui-white-rgb), var(--cui-bg-opacity)) !important;
|
|
8975
|
+
}
|
|
8976
|
+
|
|
8977
|
+
.bg-body {
|
|
8978
|
+
--cui-bg-opacity: 1;
|
|
8979
|
+
background-color: rgba(var(--cui-body-bg-rgb), var(--cui-bg-opacity)) !important;
|
|
8641
8980
|
}
|
|
8642
8981
|
|
|
8643
8982
|
.bg-transparent {
|
|
8644
|
-
|
|
8983
|
+
--cui-bg-opacity: 1;
|
|
8984
|
+
background-color: transparent !important;
|
|
8985
|
+
}
|
|
8986
|
+
|
|
8987
|
+
.bg-opacity-10 {
|
|
8988
|
+
--cui-bg-opacity: 0.1;
|
|
8989
|
+
}
|
|
8990
|
+
|
|
8991
|
+
.bg-opacity-25 {
|
|
8992
|
+
--cui-bg-opacity: 0.25;
|
|
8993
|
+
}
|
|
8994
|
+
|
|
8995
|
+
.bg-opacity-50 {
|
|
8996
|
+
--cui-bg-opacity: 0.5;
|
|
8997
|
+
}
|
|
8998
|
+
|
|
8999
|
+
.bg-opacity-75 {
|
|
9000
|
+
--cui-bg-opacity: 0.75;
|
|
9001
|
+
}
|
|
9002
|
+
|
|
9003
|
+
.bg-opacity-100 {
|
|
9004
|
+
--cui-bg-opacity: 1;
|
|
8645
9005
|
}
|
|
8646
9006
|
|
|
8647
9007
|
.bg-gradient {
|