@coreui/coreui 4.0.5 → 4.1.2
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 +4 -7
- 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 +255 -206
- 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 +713 -346
- 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 +699 -347
- 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 +851 -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 +704 -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 +714 -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 +1 -1
- 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 +21 -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 +28 -33
- package/scss/mixins/_visually-hidden.scss +1 -1
- package/scss/sidebar/_sidebar-nav.scss +1 -0
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.2
|
|
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.2
|
|
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;
|
|
@@ -1574,32 +1511,71 @@ progress {
|
|
|
1574
1511
|
--cui-gutter-x: 1rem;
|
|
1575
1512
|
}
|
|
1576
1513
|
|
|
1577
|
-
.g-lg-3,
|
|
1578
|
-
.gy-lg-3 {
|
|
1579
|
-
--cui-gutter-y: 1rem;
|
|
1514
|
+
.g-lg-3,
|
|
1515
|
+
.gy-lg-3 {
|
|
1516
|
+
--cui-gutter-y: 1rem;
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
.g-lg-4,
|
|
1520
|
+
.gx-lg-4 {
|
|
1521
|
+
--cui-gutter-x: 1.5rem;
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
.g-lg-4,
|
|
1525
|
+
.gy-lg-4 {
|
|
1526
|
+
--cui-gutter-y: 1.5rem;
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
.g-lg-5,
|
|
1530
|
+
.gx-lg-5 {
|
|
1531
|
+
--cui-gutter-x: 3rem;
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
.g-lg-5,
|
|
1535
|
+
.gy-lg-5 {
|
|
1536
|
+
--cui-gutter-y: 3rem;
|
|
1537
|
+
}
|
|
1538
|
+
}
|
|
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%;
|
|
1580
1562
|
}
|
|
1581
1563
|
|
|
1582
|
-
.
|
|
1583
|
-
|
|
1584
|
-
|
|
1564
|
+
.row-cols-xl-4 > * {
|
|
1565
|
+
flex: 0 0 auto;
|
|
1566
|
+
width: 25%;
|
|
1585
1567
|
}
|
|
1586
1568
|
|
|
1587
|
-
.
|
|
1588
|
-
|
|
1589
|
-
|
|
1569
|
+
.row-cols-xl-5 > * {
|
|
1570
|
+
flex: 0 0 auto;
|
|
1571
|
+
width: 20%;
|
|
1590
1572
|
}
|
|
1591
1573
|
|
|
1592
|
-
.
|
|
1593
|
-
|
|
1594
|
-
|
|
1574
|
+
.row-cols-xl-6 > * {
|
|
1575
|
+
flex: 0 0 auto;
|
|
1576
|
+
width: 16.6666666667%;
|
|
1595
1577
|
}
|
|
1596
1578
|
|
|
1597
|
-
.g-lg-5,
|
|
1598
|
-
.gy-lg-5 {
|
|
1599
|
-
--cui-gutter-y: 3rem;
|
|
1600
|
-
}
|
|
1601
|
-
}
|
|
1602
|
-
@media (min-width: 1200px) {
|
|
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;
|
|
@@ -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
|
}
|
|
@@ -7469,183 +7744,183 @@ textarea.form-control-lg {
|
|
|
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-left-color:
|
|
7819
|
+
border-left-color: #321fdb !important;
|
|
7545
7820
|
}
|
|
7546
7821
|
|
|
7547
7822
|
.border-end-secondary {
|
|
7548
|
-
border-left-color:
|
|
7823
|
+
border-left-color: #9da5b1 !important;
|
|
7549
7824
|
}
|
|
7550
7825
|
|
|
7551
7826
|
.border-end-success {
|
|
7552
|
-
border-left-color:
|
|
7827
|
+
border-left-color: #2eb85c !important;
|
|
7553
7828
|
}
|
|
7554
7829
|
|
|
7555
7830
|
.border-end-info {
|
|
7556
|
-
border-left-color:
|
|
7831
|
+
border-left-color: #39f !important;
|
|
7557
7832
|
}
|
|
7558
7833
|
|
|
7559
7834
|
.border-end-warning {
|
|
7560
|
-
border-left-color:
|
|
7835
|
+
border-left-color: #f9b115 !important;
|
|
7561
7836
|
}
|
|
7562
7837
|
|
|
7563
7838
|
.border-end-danger {
|
|
7564
|
-
border-left-color:
|
|
7839
|
+
border-left-color: #e55353 !important;
|
|
7565
7840
|
}
|
|
7566
7841
|
|
|
7567
7842
|
.border-end-light {
|
|
7568
|
-
border-left-color:
|
|
7843
|
+
border-left-color: #ebedef !important;
|
|
7569
7844
|
}
|
|
7570
7845
|
|
|
7571
7846
|
.border-end-dark {
|
|
7572
|
-
border-left-color:
|
|
7847
|
+
border-left-color: #4f5d73 !important;
|
|
7573
7848
|
}
|
|
7574
7849
|
|
|
7575
7850
|
.border-end-white {
|
|
7576
|
-
border-left-color:
|
|
7851
|
+
border-left-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-right-color:
|
|
7891
|
+
border-right-color: #321fdb !important;
|
|
7617
7892
|
}
|
|
7618
7893
|
|
|
7619
7894
|
.border-start-secondary {
|
|
7620
|
-
border-right-color:
|
|
7895
|
+
border-right-color: #9da5b1 !important;
|
|
7621
7896
|
}
|
|
7622
7897
|
|
|
7623
7898
|
.border-start-success {
|
|
7624
|
-
border-right-color:
|
|
7899
|
+
border-right-color: #2eb85c !important;
|
|
7625
7900
|
}
|
|
7626
7901
|
|
|
7627
7902
|
.border-start-info {
|
|
7628
|
-
border-right-color:
|
|
7903
|
+
border-right-color: #39f !important;
|
|
7629
7904
|
}
|
|
7630
7905
|
|
|
7631
7906
|
.border-start-warning {
|
|
7632
|
-
border-right-color:
|
|
7907
|
+
border-right-color: #f9b115 !important;
|
|
7633
7908
|
}
|
|
7634
7909
|
|
|
7635
7910
|
.border-start-danger {
|
|
7636
|
-
border-right-color:
|
|
7911
|
+
border-right-color: #e55353 !important;
|
|
7637
7912
|
}
|
|
7638
7913
|
|
|
7639
7914
|
.border-start-light {
|
|
7640
|
-
border-right-color:
|
|
7915
|
+
border-right-color: #ebedef !important;
|
|
7641
7916
|
}
|
|
7642
7917
|
|
|
7643
7918
|
.border-start-dark {
|
|
7644
|
-
border-right-color:
|
|
7919
|
+
border-right-color: #4f5d73 !important;
|
|
7645
7920
|
}
|
|
7646
7921
|
|
|
7647
7922
|
.border-start-white {
|
|
7648
|
-
border-right-color:
|
|
7923
|
+
border-right-color: #fff !important;
|
|
7649
7924
|
}
|
|
7650
7925
|
|
|
7651
7926
|
.border-1 {
|
|
@@ -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 {
|