@dynamic-framework/ui-react 1.19.0 → 1.20.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/dist/css/dynamic-ui-non-root.css +293 -172
- package/dist/css/dynamic-ui-non-root.min.css +2 -2
- package/dist/css/dynamic-ui-root.css +2 -2
- package/dist/css/dynamic-ui-root.min.css +2 -2
- package/dist/css/dynamic-ui.css +294 -173
- package/dist/css/dynamic-ui.min.css +2 -2
- package/dist/index.esm.js +217 -195
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +214 -194
- package/dist/index.js.map +1 -1
- package/dist/types/components/DDatePicker/DDatePicker.d.ts +8 -4
- package/dist/types/components/DDatePickerHeader/DDatePickerHeader.d.ts +5 -4
- package/dist/types/components/DDatePickerInput/DDatePickerInput.d.ts +2 -1
- package/dist/types/contexts/index.d.ts +1 -1
- package/dist/types/hooks/useStackState.d.ts +1 -1
- package/package.json +2 -2
- package/src/style/abstracts/_utilities.scss +12 -0
- package/src/style/abstracts/variables/_forms.scss +2 -1
- package/src/style/components/_+import.scss +0 -1
- package/src/style/components/_d-datepicker.scss +89 -39
- package/src/style/components/_d-icon.scss +1 -1
- package/src/style/components/_d-input-pin.scss +6 -1
- package/src/style/components/_d-select.scss +1 -0
- package/src/style/helpers/_+import.scss +2 -1
- package/src/style/helpers/_colored-links.scss +70 -0
- package/src/style/root/_root.scss +1 -1
- package/dist/types/components/DMonthPicker/DMonthPicker.d.ts +0 -12
- package/dist/types/components/DMonthPicker/index.d.ts +0 -2
- package/src/style/components/_d-monthpicker.scss +0 -98
package/dist/css/dynamic-ui.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* dynamic-framework 1.
|
|
2
|
+
* dynamic-framework 1.20.0
|
|
3
3
|
* bootstrap ^5.3.3
|
|
4
4
|
* license https://github.com/dynamic-framework/dynamic-ui/blob/master/libraries/dynamic-ui-react/LICENSE.md
|
|
5
5
|
*/
|
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
--bs-label-padding-y: var(--bs-ref-spacer-0);
|
|
298
298
|
--bs-label-padding-x: var(--bs-ref-spacer-2);
|
|
299
299
|
--bs-label-font-size: var(--bs-fs-small);
|
|
300
|
-
--bs-label-font-weight: var(--bs-fw-
|
|
300
|
+
--bs-label-font-weight: var(--bs-fw-normal);
|
|
301
301
|
--bs-label-color: var(--bs-gray);
|
|
302
302
|
--bs-btn-border-radius: var(--bs-border-radius-pill);
|
|
303
303
|
--bs-btn-lg-border-radius: var(--bs-border-radius-pill);
|
|
@@ -3073,13 +3073,13 @@ progress {
|
|
|
3073
3073
|
font-size: 1rem;
|
|
3074
3074
|
font-weight: var(--bs-fw-normal);
|
|
3075
3075
|
line-height: 1.5;
|
|
3076
|
-
color: var(--bs-gray);
|
|
3076
|
+
color: var(--bs-gray-900);
|
|
3077
3077
|
-webkit-appearance: none;
|
|
3078
3078
|
-moz-appearance: none;
|
|
3079
3079
|
appearance: none;
|
|
3080
3080
|
background-color: var(--bs-white);
|
|
3081
3081
|
background-clip: padding-box;
|
|
3082
|
-
border: var(--bs-border-width) solid var(--bs-
|
|
3082
|
+
border: var(--bs-border-width) solid var(--bs-gray-300);
|
|
3083
3083
|
border-radius: var(--bs-border-radius-sm);
|
|
3084
3084
|
box-shadow: 0 0 0 transparent;
|
|
3085
3085
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
@@ -3096,7 +3096,7 @@ progress {
|
|
|
3096
3096
|
cursor: pointer;
|
|
3097
3097
|
}
|
|
3098
3098
|
.form-control:focus {
|
|
3099
|
-
color: var(--bs-gray);
|
|
3099
|
+
color: var(--bs-gray-900);
|
|
3100
3100
|
background-color: var(--bs-white);
|
|
3101
3101
|
border-color: var(--bs-focus-ring-color);
|
|
3102
3102
|
outline: 0;
|
|
@@ -3130,7 +3130,7 @@ progress {
|
|
|
3130
3130
|
margin: -0.75rem -1rem;
|
|
3131
3131
|
-webkit-margin-end: 1rem;
|
|
3132
3132
|
margin-inline-end: 1rem;
|
|
3133
|
-
color: var(--bs-gray);
|
|
3133
|
+
color: var(--bs-gray-900);
|
|
3134
3134
|
background-color: var(--bs-white);
|
|
3135
3135
|
pointer-events: none;
|
|
3136
3136
|
border-color: inherit;
|
|
@@ -3146,7 +3146,7 @@ progress {
|
|
|
3146
3146
|
margin: -0.75rem -1rem;
|
|
3147
3147
|
-webkit-margin-end: 1rem;
|
|
3148
3148
|
margin-inline-end: 1rem;
|
|
3149
|
-
color: var(--bs-gray);
|
|
3149
|
+
color: var(--bs-gray-900);
|
|
3150
3150
|
background-color: var(--bs-white);
|
|
3151
3151
|
pointer-events: none;
|
|
3152
3152
|
border-color: inherit;
|
|
@@ -3270,7 +3270,7 @@ textarea.form-control-lg {
|
|
|
3270
3270
|
font-size: 1rem;
|
|
3271
3271
|
font-weight: var(--bs-fw-normal);
|
|
3272
3272
|
line-height: 1.5;
|
|
3273
|
-
color: var(--bs-gray);
|
|
3273
|
+
color: var(--bs-gray-900);
|
|
3274
3274
|
-webkit-appearance: none;
|
|
3275
3275
|
-moz-appearance: none;
|
|
3276
3276
|
appearance: none;
|
|
@@ -3279,7 +3279,7 @@ textarea.form-control-lg {
|
|
|
3279
3279
|
background-repeat: no-repeat;
|
|
3280
3280
|
background-position: right 1rem center;
|
|
3281
3281
|
background-size: 24px;
|
|
3282
|
-
border: var(--bs-border-width) solid var(--bs-
|
|
3282
|
+
border: var(--bs-border-width) solid var(--bs-gray-300);
|
|
3283
3283
|
border-radius: var(--bs-border-radius-sm);
|
|
3284
3284
|
box-shadow: none;
|
|
3285
3285
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
@@ -3305,7 +3305,7 @@ textarea.form-control-lg {
|
|
|
3305
3305
|
}
|
|
3306
3306
|
.form-select:-moz-focusring {
|
|
3307
3307
|
color: transparent;
|
|
3308
|
-
text-shadow: 0 0 0 var(--bs-gray);
|
|
3308
|
+
text-shadow: 0 0 0 var(--bs-gray-900);
|
|
3309
3309
|
}
|
|
3310
3310
|
|
|
3311
3311
|
.form-select-sm {
|
|
@@ -3692,7 +3692,7 @@ textarea.form-control-lg {
|
|
|
3692
3692
|
font-size: 1rem;
|
|
3693
3693
|
font-weight: var(--bs-fw-normal);
|
|
3694
3694
|
line-height: 1.5;
|
|
3695
|
-
color: var(--bs-gray);
|
|
3695
|
+
color: var(--bs-gray-900);
|
|
3696
3696
|
text-align: center;
|
|
3697
3697
|
white-space: nowrap;
|
|
3698
3698
|
background-color: var(--bs-white);
|
|
@@ -7530,7 +7530,7 @@ body {
|
|
|
7530
7530
|
}
|
|
7531
7531
|
|
|
7532
7532
|
.input-group {
|
|
7533
|
-
--bs-input-border-color: var(--bs-
|
|
7533
|
+
--bs-input-border-color: var(--bs-gray-300);
|
|
7534
7534
|
--bs-input-border-width: var(--bs-border-width);
|
|
7535
7535
|
--bs-input-border-radius: var(--bs-border-radius-sm);
|
|
7536
7536
|
--bs-input-focus-border-color: var(--bs-focus-ring-color);
|
|
@@ -9351,7 +9351,7 @@ label .d-icon {
|
|
|
9351
9351
|
.d-icon {
|
|
9352
9352
|
--bs-icon-color: var(--bs-icon-component-color, inherit);
|
|
9353
9353
|
--bs-icon-bg-color: var(--bs-icon-component-bg-color, inherit);
|
|
9354
|
-
--bs-icon-size: var(--bs-icon-component-size,
|
|
9354
|
+
--bs-icon-size: var(--bs-icon-component-size, var(--bs-ref-spacer-6));
|
|
9355
9355
|
--bs-icon-padding: var(--bs-icon-component-padding, 0);
|
|
9356
9356
|
--bs-icon-loading-duration: var(--bs-icon-component-loading-duration, 1.8);
|
|
9357
9357
|
display: inline-flex !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -9387,7 +9387,7 @@ label .d-icon {
|
|
|
9387
9387
|
flex-direction: column;
|
|
9388
9388
|
align-items: flex-start;
|
|
9389
9389
|
}
|
|
9390
|
-
.d-input-pin
|
|
9390
|
+
.d-input-pin .d-input-pin-group {
|
|
9391
9391
|
display: flex;
|
|
9392
9392
|
flex-direction: row;
|
|
9393
9393
|
gap: var(--bs-input-pin-form-gap);
|
|
@@ -9399,6 +9399,9 @@ label .d-icon {
|
|
|
9399
9399
|
text-align: center;
|
|
9400
9400
|
box-shadow: none;
|
|
9401
9401
|
}
|
|
9402
|
+
.d-input-pin .form-control:has(~ .input-group-text) {
|
|
9403
|
+
padding: var(--bs-ref-spacer-3) var(--bs-ref-spacer-4);
|
|
9404
|
+
}
|
|
9402
9405
|
.d-input-pin .form-control::-webkit-inner-spin-button,
|
|
9403
9406
|
.d-input-pin .form-control::-webkit-outer-spin-button {
|
|
9404
9407
|
margin: 0;
|
|
@@ -9434,6 +9437,7 @@ label .d-icon {
|
|
|
9434
9437
|
}
|
|
9435
9438
|
.d-input-pin .input-group-text {
|
|
9436
9439
|
padding-left: var(--bs-input-pin-form-gap);
|
|
9440
|
+
background-color: transparent;
|
|
9437
9441
|
}
|
|
9438
9442
|
|
|
9439
9443
|
.d-quick-action-button {
|
|
@@ -10677,35 +10681,42 @@ label .d-icon {
|
|
|
10677
10681
|
--bs-datepicker-box-shadow: var(--bs-box-shadow);
|
|
10678
10682
|
--bs-datepicker-font-size: var(--bs-ref-spacer-4);
|
|
10679
10683
|
--bs-datepicker-header-gap: var(--bs-ref-spacer-4);
|
|
10680
|
-
--bs-datepicker-header-padding: var(--bs-ref-spacer-4) var(--bs-ref-spacer-
|
|
10684
|
+
--bs-datepicker-header-padding: var(--bs-ref-spacer-4) var(--bs-ref-spacer-7);
|
|
10681
10685
|
--bs-datepicker-header-background-color: var(--bs-secondary-soft);
|
|
10682
10686
|
--bs-datepicker-header-border: 0;
|
|
10683
10687
|
--bs-datepicker-header-font-size: var(--bs-fs-6);
|
|
10688
|
+
--bs-datepicker-header-button-padding: 0;
|
|
10689
|
+
--bs-datepicker-header-select-padding: 0 var(--bs-ref-spacer-1);
|
|
10690
|
+
--bs-datepicker-header-select-font-weight: var(--bs-fw-bold);
|
|
10691
|
+
--bs-datepicker-header-select-menu-width: fit-content;
|
|
10684
10692
|
--bs-datepicker-day-names-margin: 0;
|
|
10685
10693
|
--bs-datepicker-day-names-font-size: var(--bs-ref-spacer-4);
|
|
10686
10694
|
--bs-datepicker-day-name-weight: var(--bs-fw-bold);
|
|
10687
10695
|
--bs-datepicker-day-name-margin: 0;
|
|
10688
|
-
--bs-datepicker-day-name-
|
|
10696
|
+
--bs-datepicker-day-name-padding: 0;
|
|
10697
|
+
--bs-datepicker-day-name-size: var(--bs-ref-spacer-5);
|
|
10689
10698
|
--bs-datepicker-day-name-color: var(--bs-gray-500);
|
|
10690
|
-
--bs-datepicker-month-gap:
|
|
10691
|
-
--bs-datepicker-month-padding: var(--bs-ref-spacer-4) var(--bs-ref-spacer-
|
|
10699
|
+
--bs-datepicker-month-gap: .875rem;
|
|
10700
|
+
--bs-datepicker-month-padding: var(--bs-ref-spacer-4) var(--bs-ref-spacer-7) var(--bs-ref-spacer-6);
|
|
10692
10701
|
--bs-datepicker-month-margin: 0;
|
|
10693
10702
|
--bs-datepicker-month-color: var(--bs-white);
|
|
10694
|
-
--bs-datepicker-week-gap: var(--bs-ref-spacer-
|
|
10703
|
+
--bs-datepicker-week-gap: var(--bs-ref-spacer-8);
|
|
10695
10704
|
--bs-datepicker-day-margin: 0;
|
|
10696
10705
|
--bs-datepicker-day-font-size: var(--bs-fs-small);
|
|
10697
|
-
--bs-datepicker-day-size: var(--bs-ref-spacer-
|
|
10698
|
-
--bs-datepicker-day-padding:
|
|
10706
|
+
--bs-datepicker-day-size: var(--bs-ref-spacer-5);
|
|
10707
|
+
--bs-datepicker-day-padding: 0;
|
|
10699
10708
|
--bs-datepicker-day-radius: 100%;
|
|
10700
|
-
--bs-datepicker-day-
|
|
10701
|
-
--bs-datepicker-day-color
|
|
10709
|
+
--bs-datepicker-day-color: var(--bs-gray-900);
|
|
10710
|
+
--bs-datepicker-day-disabled-color: var(--bs-gray-300);
|
|
10711
|
+
--bs-datepicker-day-color-hover: var(--bs-gray-900);
|
|
10712
|
+
--bs-datepicker-day-bg-hover: var(--bs-info-100);
|
|
10702
10713
|
--bs-datepicker-day-selected-color: var(--bs-white);
|
|
10703
10714
|
--bs-datepicker-day-selected-bg: var(--bs-secondary-500);
|
|
10704
10715
|
--bs-datepicker-day-in-range-color: var(--bs-dark);
|
|
10705
10716
|
--bs-datepicker-day-in-range-bg: var(--bs-secondary-100);
|
|
10706
10717
|
--bs-datepicker-day-outside-month-color: var(--bs-gray-400);
|
|
10707
10718
|
--bs-datepicker-day-today-font-weight: var(--bs-fw-normal);
|
|
10708
|
-
--bs-datepicker-day-today-box-shadow: 0 0 0 2px
|
|
10719
|
+
--bs-datepicker-day-today-box-shadow: 0 0 0 2px var(--bs-secondary);
|
|
10709
10720
|
--bs-datepicker-time-container-margin: 0;
|
|
10710
10721
|
--bs-datepicker-time-container-align: center;
|
|
10711
10722
|
--bs-datepicker-time-input-width: 50%;
|
|
@@ -10734,17 +10745,14 @@ label .d-icon {
|
|
|
10734
10745
|
}
|
|
10735
10746
|
.react-datepicker .react-datepicker__header .react-datepicker__day-names {
|
|
10736
10747
|
display: flex;
|
|
10737
|
-
gap: var(--bs-ref-spacer-
|
|
10748
|
+
gap: var(--bs-ref-spacer-8);
|
|
10738
10749
|
margin: var(--bs-datepicker-day-names-margin);
|
|
10739
10750
|
font-size: var(--bs-datepicker-day-names-font-size);
|
|
10740
10751
|
}
|
|
10741
10752
|
.react-datepicker .react-datepicker__header .react-datepicker__day-name {
|
|
10742
|
-
display: flex;
|
|
10743
|
-
align-items: center;
|
|
10744
|
-
justify-content: center;
|
|
10745
10753
|
width: var(--bs-datepicker-day-name-size);
|
|
10746
10754
|
height: var(--bs-datepicker-day-name-size);
|
|
10747
|
-
padding: var(--bs-datepicker-day-padding);
|
|
10755
|
+
padding: var(--bs-datepicker-day-name-padding);
|
|
10748
10756
|
margin: var(--bs-datepicker-day-name-margin);
|
|
10749
10757
|
font-weight: var(--bs-datepicker-day-name-weight);
|
|
10750
10758
|
line-height: var(--bs-datepicker-day-name-size);
|
|
@@ -10760,11 +10768,11 @@ label .d-icon {
|
|
|
10760
10768
|
padding: var(--bs-datepicker-month-padding);
|
|
10761
10769
|
margin: var(--bs-datepicker-month-margin);
|
|
10762
10770
|
}
|
|
10763
|
-
.react-datepicker .react-
|
|
10771
|
+
.react-datepicker .react-datepicker__week {
|
|
10764
10772
|
display: flex;
|
|
10765
10773
|
gap: var(--bs-datepicker-week-gap);
|
|
10766
10774
|
}
|
|
10767
|
-
.react-datepicker .react-
|
|
10775
|
+
.react-datepicker .react-datepicker__day {
|
|
10768
10776
|
display: flex;
|
|
10769
10777
|
align-items: center;
|
|
10770
10778
|
justify-content: center;
|
|
@@ -10774,6 +10782,12 @@ label .d-icon {
|
|
|
10774
10782
|
margin: var(--bs-datepicker-day-margin);
|
|
10775
10783
|
font-size: var(--bs-datepicker-day-font-size);
|
|
10776
10784
|
line-height: var(--bs-datepicker-day-size);
|
|
10785
|
+
color: var(--bs-datepicker-day-color);
|
|
10786
|
+
}
|
|
10787
|
+
.react-datepicker .react-datepicker__day.react-datepicker__day--in-range.react-datepicker__day--range-end, .react-datepicker .react-datepicker__day.react-datepicker__day--in-selecting-range.react-datepicker__day--selecting-range-end {
|
|
10788
|
+
color: var(--bs-datepicker-day-selected-color);
|
|
10789
|
+
background-color: var(--bs-datepicker-day-selected-bg);
|
|
10790
|
+
box-shadow: 0 0 0 2px var(--bs-datepicker-day-selected-bg);
|
|
10777
10791
|
}
|
|
10778
10792
|
.react-datepicker .react-datepicker__day:not(.react-datepicker__day--selected,
|
|
10779
10793
|
.react-datepicker__month-text--selected,
|
|
@@ -10791,9 +10805,13 @@ label .d-icon {
|
|
|
10791
10805
|
.react-datepicker__month-text--selected,
|
|
10792
10806
|
.react-datepicker__quarter-text--selected,
|
|
10793
10807
|
.react-datepicker__year-text--selected):hover {
|
|
10794
|
-
color: var(--bs-datepicker-day-
|
|
10795
|
-
background-color: var(--bs-datepicker-day-
|
|
10808
|
+
color: var(--bs-datepicker-day-color-hover);
|
|
10809
|
+
background-color: var(--bs-datepicker-day-bg-hover);
|
|
10796
10810
|
border-radius: var(--bs-datepicker-day-radius);
|
|
10811
|
+
box-shadow: 0 0 0 2px var(--bs-datepicker-day-bg-hover);
|
|
10812
|
+
}
|
|
10813
|
+
.react-datepicker .react-datepicker__day--disabled {
|
|
10814
|
+
color: var(--bs-datepicker-day-disabled-color);
|
|
10797
10815
|
}
|
|
10798
10816
|
.react-datepicker .react-datepicker__day--selected,
|
|
10799
10817
|
.react-datepicker .react-datepicker__month--selected,
|
|
@@ -10802,14 +10820,12 @@ label .d-icon {
|
|
|
10802
10820
|
color: var(--bs-datepicker-day-selected-color);
|
|
10803
10821
|
background-color: var(--bs-datepicker-day-selected-bg);
|
|
10804
10822
|
border-radius: var(--bs-datepicker-day-radius);
|
|
10823
|
+
box-shadow: 0 0 0 2px var(--bs-datepicker-day-selected-bg);
|
|
10805
10824
|
}
|
|
10806
10825
|
.react-datepicker .react-datepicker__day--selected.react-datepicker__day--in-range.react-datepicker__day--range-start, .react-datepicker .react-datepicker__day--selected.react-datepicker__day--in-selecting-range.react-datepicker__day--selecting-range-start {
|
|
10807
10826
|
color: var(--bs-datepicker-day-selected-color);
|
|
10808
10827
|
background-color: var(--bs-datepicker-day-selected-bg);
|
|
10809
|
-
|
|
10810
|
-
.react-datepicker .react-datepicker__day.react-datepicker__day--in-range.react-datepicker__day--range-end, .react-datepicker .react-datepicker__day.react-datepicker__day--in-selecting-range.react-datepicker__day--selecting-range-end {
|
|
10811
|
-
color: var(--bs-datepicker-day-selected-color);
|
|
10812
|
-
background-color: var(--bs-datepicker-day-selected-bg);
|
|
10828
|
+
box-shadow: 0 0 0 2px var(--bs-datepicker-day-selected-bg);
|
|
10813
10829
|
}
|
|
10814
10830
|
.react-datepicker .react-datepicker__day--in-range,
|
|
10815
10831
|
.react-datepicker .react-datepicker__month-text--in-range,
|
|
@@ -10866,7 +10882,40 @@ label .d-icon {
|
|
|
10866
10882
|
color: var(--bs-datepicker-time-input-label-color);
|
|
10867
10883
|
}
|
|
10868
10884
|
.react-datepicker .d-datepicker-header {
|
|
10869
|
-
font-size: var(--bs-
|
|
10885
|
+
font-size: var(--bs-datepicker-header-font-size);
|
|
10886
|
+
}
|
|
10887
|
+
.react-datepicker .header-button {
|
|
10888
|
+
--bs-btn-padding-y: var(--bs-datepicker-header-button-padding);
|
|
10889
|
+
--bs-btn-padding-x: var(--bs-datepicker-header-button-padding);
|
|
10890
|
+
}
|
|
10891
|
+
.react-datepicker .header-button:hover, .react-datepicker .header-button:active {
|
|
10892
|
+
color: inherit;
|
|
10893
|
+
background-color: inherit;
|
|
10894
|
+
}
|
|
10895
|
+
.react-datepicker .header-button:focus {
|
|
10896
|
+
--bs-btn-focus-outline-offset: 8px;
|
|
10897
|
+
}
|
|
10898
|
+
.react-datepicker .d-select:focus-within .input-group {
|
|
10899
|
+
border-color: transparent;
|
|
10900
|
+
box-shadow: none;
|
|
10901
|
+
}
|
|
10902
|
+
.react-datepicker .d-select .input-group {
|
|
10903
|
+
--bs-input-border-width: 0;
|
|
10904
|
+
}
|
|
10905
|
+
.react-datepicker .d-select .d-select__indicators {
|
|
10906
|
+
display: none;
|
|
10907
|
+
}
|
|
10908
|
+
.react-datepicker .d-select .d-select__control {
|
|
10909
|
+
padding: var(--bs-datepicker-header-select-padding);
|
|
10910
|
+
background-color: transparent;
|
|
10911
|
+
}
|
|
10912
|
+
.react-datepicker .d-select .d-select__single-value {
|
|
10913
|
+
font-weight: var(--bs-datepicker-header-select-font-weight);
|
|
10914
|
+
}
|
|
10915
|
+
.react-datepicker .d-select__menu {
|
|
10916
|
+
left: 50%;
|
|
10917
|
+
min-width: var(--bs-datepicker-header-select-menu-width);
|
|
10918
|
+
translate: -50%;
|
|
10870
10919
|
}
|
|
10871
10920
|
|
|
10872
10921
|
.d-datepicker-time {
|
|
@@ -10900,85 +10949,6 @@ label .d-icon {
|
|
|
10900
10949
|
background-image: var(--bs-datepicker-calendar-picker-icon);
|
|
10901
10950
|
}
|
|
10902
10951
|
|
|
10903
|
-
.react-datepicker.d-month-picker {
|
|
10904
|
-
--bs-monthpicker-header-padding: var(--bs-ref-spacer-4) var(--bs-ref-spacer-2) 0;
|
|
10905
|
-
--bs-monthpicker-font-weight: var(--bs-fw-normal);
|
|
10906
|
-
--bs-monthpicker-header-color: var(--bs-white);
|
|
10907
|
-
--bs-monthpicker-header-bg: var(--bs-dark);
|
|
10908
|
-
--bs-monthpicker-month-gap: 0;
|
|
10909
|
-
--bs-monthpicker-month-padding: var(--bs-ref-spacer-2) var(--bs-ref-spacer-6) var(--bs-ref-spacer-4);
|
|
10910
|
-
--bs-monthpicker-month-color: var(--bs-white);
|
|
10911
|
-
--bs-monthpicker-month-bg: var(--bs-dark);
|
|
10912
|
-
--bs-monthpicker-month-today-color: var(--bs-white);
|
|
10913
|
-
--bs-monthpicker-month-selected-bg: var(--bs-gray-500);
|
|
10914
|
-
--bs-monthpicker-month-selected-box-shadow: 0 0 0 1px inset var(--bs-gray-100);
|
|
10915
|
-
--bs-monthpicker-month-hover-bg: var(--bs-gray-700);
|
|
10916
|
-
--bs-monthpicker-month-wrapper-gap: var(--bs-ref-spacer-2);
|
|
10917
|
-
--bs-monthpicker-month-wrapper-font-size: var(--bs-fs-small);
|
|
10918
|
-
--bs-monthpicker-single-month-width: 46px;
|
|
10919
|
-
--bs-monthpicker-single-month-padding: var(--bs-ref-spacer-2);
|
|
10920
|
-
--bs-monthpicker-single-month-margin: 0;
|
|
10921
|
-
--bs-monthpicker-single-month-text-transform: capitalize;
|
|
10922
|
-
--bs-monthpicker-single-month-radius: var(--bs-ref-spacer-6);
|
|
10923
|
-
--bs-monthpicker-single-month-line-height: var(--bs-fs-6);
|
|
10924
|
-
--bs-monthpicker-single-month-after-display: inline;
|
|
10925
|
-
--bs-monthpicker-single-month-after-content: ".";
|
|
10926
|
-
--bs-datepicker-triangle-color: var(--bs-dark);
|
|
10927
|
-
font-family: var(--bs-datepicker-font-family);
|
|
10928
|
-
border: var(--bs-datepicker-border);
|
|
10929
|
-
box-shadow: var(--bs-datepicker-box-shadow);
|
|
10930
|
-
}
|
|
10931
|
-
.react-datepicker.d-month-picker .react-datepicker__header {
|
|
10932
|
-
padding: var(--bs-monthpicker-header-padding);
|
|
10933
|
-
font-weight: var(--bs-monthpicker-font-weight);
|
|
10934
|
-
color: var(--bs-monthpicker-header-color);
|
|
10935
|
-
background-color: var(--bs-monthpicker-header-bg);
|
|
10936
|
-
}
|
|
10937
|
-
.react-datepicker.d-month-picker .react-datepicker__header .btn-sm, .react-datepicker.d-month-picker .react-datepicker__header .btn-group-sm > .btn {
|
|
10938
|
-
--bs-btn-padding-x: 0;
|
|
10939
|
-
--bs-btn-padding-y: 0;
|
|
10940
|
-
--bs-btn-font-size: var(--bs-fs-5);
|
|
10941
|
-
}
|
|
10942
|
-
.react-datepicker.d-month-picker .react-datepicker__month.react-datepicker__monthPicker,
|
|
10943
|
-
.react-datepicker.d-month-picker .react-datepicker__header.react-datepicker-year-header {
|
|
10944
|
-
gap: var(--bs-monthpicker-month-gap);
|
|
10945
|
-
padding: var(--bs-monthpicker-month-padding);
|
|
10946
|
-
color: var(--bs-monthpicker-month-color);
|
|
10947
|
-
background-color: var(--bs-monthpicker-month-bg);
|
|
10948
|
-
}
|
|
10949
|
-
.react-datepicker.d-month-picker .react-datepicker__month--selected,
|
|
10950
|
-
.react-datepicker.d-month-picker .react-datepicker__month-text--in-range,
|
|
10951
|
-
.react-datepicker.d-month-picker .react-datepicker__month-text--in-selecting-range,
|
|
10952
|
-
.react-datepicker.d-month-picker .react-datepicker__month-text--keyboard-selected {
|
|
10953
|
-
color: var(--bs-monthpicker-month-today-color);
|
|
10954
|
-
background-color: var(--bs-monthpicker-month-selected-bg);
|
|
10955
|
-
box-shadow: var(--bs-monthpicker-month-selected-box-shadow);
|
|
10956
|
-
}
|
|
10957
|
-
.react-datepicker.d-month-picker .react-datepicker__month-text:hover {
|
|
10958
|
-
background-color: var(--bs-monthpicker-month-hover-bg);
|
|
10959
|
-
}
|
|
10960
|
-
.react-datepicker.d-month-picker .react-datepicker__month-wrapper {
|
|
10961
|
-
display: flex;
|
|
10962
|
-
gap: var(--bs-monthpicker-month-wrapper-gap);
|
|
10963
|
-
font-size: var(--bs-monthpicker-month-wrapper-font-size);
|
|
10964
|
-
}
|
|
10965
|
-
.react-datepicker.d-month-picker .react-datepicker__month-wrapper .react-datepicker__month-text {
|
|
10966
|
-
width: var(--bs-monthpicker-single-month-width);
|
|
10967
|
-
padding: var(--bs-monthpicker-single-month-padding);
|
|
10968
|
-
margin: var(--bs-monthpicker-single-month-margin);
|
|
10969
|
-
line-height: var(--bs-monthpicker-single-month-line-height);
|
|
10970
|
-
text-transform: var(--bs-monthpicker-single-month-text-transform);
|
|
10971
|
-
border-radius: var(--bs-monthpicker-single-month-radius);
|
|
10972
|
-
}
|
|
10973
|
-
.react-datepicker.d-month-picker .react-datepicker__month-wrapper .react-datepicker__month-text::after {
|
|
10974
|
-
display: var(--bs-monthpicker-single-month-after-display);
|
|
10975
|
-
content: var(--bs-monthpicker-single-month-after-content);
|
|
10976
|
-
}
|
|
10977
|
-
.react-datepicker.d-month-picker .react-datepicker__triangle::after, .react-datepicker.d-month-picker .react-datepicker__triangle::before {
|
|
10978
|
-
top: 0;
|
|
10979
|
-
border-bottom-color: var(--bs-datepicker-triangle-color);
|
|
10980
|
-
}
|
|
10981
|
-
|
|
10982
10952
|
.nav-pills,
|
|
10983
10953
|
.nav-underline {
|
|
10984
10954
|
--bs-tabs-nav-gap: var(--bs-ref-spacer-6);
|
|
@@ -11752,7 +11722,7 @@ label .d-icon {
|
|
|
11752
11722
|
1rem: 1rem;
|
|
11753
11723
|
font-weight: var(--bs-fw-normal);
|
|
11754
11724
|
line-height: 1.5;
|
|
11755
|
-
color: var(--bs-gray);
|
|
11725
|
+
color: var(--bs-gray-900);
|
|
11756
11726
|
-webkit-appearance: none;
|
|
11757
11727
|
-moz-appearance: none;
|
|
11758
11728
|
appearance: none;
|
|
@@ -11767,7 +11737,7 @@ label .d-icon {
|
|
|
11767
11737
|
}
|
|
11768
11738
|
}
|
|
11769
11739
|
.d-select .d-select__control:focus {
|
|
11770
|
-
color: var(--bs-gray);
|
|
11740
|
+
color: var(--bs-gray-900);
|
|
11771
11741
|
background-color: var(--bs-white);
|
|
11772
11742
|
outline: 0;
|
|
11773
11743
|
}
|
|
@@ -11777,6 +11747,7 @@ label .d-icon {
|
|
|
11777
11747
|
}
|
|
11778
11748
|
.d-select .d-select__menu-list {
|
|
11779
11749
|
top: calc(var(--bs-input-border-width) * 2);
|
|
11750
|
+
margin: calc(var(--bs-input-border-width) * -1);
|
|
11780
11751
|
background: var(--bs-white);
|
|
11781
11752
|
border-radius: var(--bs-input-border-radius);
|
|
11782
11753
|
box-shadow: var(--bs-select-menu-shadow);
|
|
@@ -11941,102 +11912,102 @@ label .d-icon {
|
|
|
11941
11912
|
}
|
|
11942
11913
|
|
|
11943
11914
|
.link-primary {
|
|
11944
|
-
color:
|
|
11945
|
-
-webkit-text-decoration-color:
|
|
11946
|
-
text-decoration-color:
|
|
11915
|
+
color: rgba(var(--bs-primary-500-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11916
|
+
-webkit-text-decoration-color: rgba(var(--bs-primary-500-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11917
|
+
text-decoration-color: rgba(var(--bs-primary-500-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11947
11918
|
}
|
|
11948
11919
|
.link-primary:hover, .link-primary:focus {
|
|
11949
|
-
color:
|
|
11950
|
-
-webkit-text-decoration-color:
|
|
11951
|
-
text-decoration-color:
|
|
11920
|
+
color: rgba(var(--bs-primary-600-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11921
|
+
-webkit-text-decoration-color: rgba(var(--bs-primary-600-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11922
|
+
text-decoration-color: rgba(var(--bs-primary-600-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11952
11923
|
}
|
|
11953
11924
|
|
|
11954
11925
|
.link-secondary {
|
|
11955
|
-
color:
|
|
11956
|
-
-webkit-text-decoration-color:
|
|
11957
|
-
text-decoration-color:
|
|
11926
|
+
color: rgba(var(--bs-secondary-500-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11927
|
+
-webkit-text-decoration-color: rgba(var(--bs-secondary-500-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11928
|
+
text-decoration-color: rgba(var(--bs-secondary-500-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11958
11929
|
}
|
|
11959
11930
|
.link-secondary:hover, .link-secondary:focus {
|
|
11960
|
-
color:
|
|
11961
|
-
-webkit-text-decoration-color:
|
|
11962
|
-
text-decoration-color:
|
|
11931
|
+
color: rgba(var(--bs-secondary-600-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11932
|
+
-webkit-text-decoration-color: rgba(var(--bs-secondary-600-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11933
|
+
text-decoration-color: rgba(var(--bs-secondary-600-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11963
11934
|
}
|
|
11964
11935
|
|
|
11965
11936
|
.link-success {
|
|
11966
|
-
color:
|
|
11967
|
-
-webkit-text-decoration-color:
|
|
11968
|
-
text-decoration-color:
|
|
11937
|
+
color: rgba(var(--bs-success-500-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11938
|
+
-webkit-text-decoration-color: rgba(var(--bs-success-500-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11939
|
+
text-decoration-color: rgba(var(--bs-success-500-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11969
11940
|
}
|
|
11970
11941
|
.link-success:hover, .link-success:focus {
|
|
11971
|
-
color:
|
|
11972
|
-
-webkit-text-decoration-color:
|
|
11973
|
-
text-decoration-color:
|
|
11942
|
+
color: rgba(var(--bs-success-600-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11943
|
+
-webkit-text-decoration-color: rgba(var(--bs-success-600-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11944
|
+
text-decoration-color: rgba(var(--bs-success-600-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11974
11945
|
}
|
|
11975
11946
|
|
|
11976
11947
|
.link-info {
|
|
11977
|
-
color:
|
|
11978
|
-
-webkit-text-decoration-color:
|
|
11979
|
-
text-decoration-color:
|
|
11948
|
+
color: rgba(var(--bs-info-500-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11949
|
+
-webkit-text-decoration-color: rgba(var(--bs-info-500-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11950
|
+
text-decoration-color: rgba(var(--bs-info-500-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11980
11951
|
}
|
|
11981
11952
|
.link-info:hover, .link-info:focus {
|
|
11982
|
-
color:
|
|
11983
|
-
-webkit-text-decoration-color:
|
|
11984
|
-
text-decoration-color:
|
|
11953
|
+
color: rgba(var(--bs-info-600-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11954
|
+
-webkit-text-decoration-color: rgba(var(--bs-info-600-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11955
|
+
text-decoration-color: rgba(var(--bs-info-600-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11985
11956
|
}
|
|
11986
11957
|
|
|
11987
11958
|
.link-warning {
|
|
11988
|
-
color:
|
|
11989
|
-
-webkit-text-decoration-color:
|
|
11990
|
-
text-decoration-color:
|
|
11959
|
+
color: rgba(var(--bs-warning-500-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11960
|
+
-webkit-text-decoration-color: rgba(var(--bs-warning-500-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11961
|
+
text-decoration-color: rgba(var(--bs-warning-500-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11991
11962
|
}
|
|
11992
11963
|
.link-warning:hover, .link-warning:focus {
|
|
11993
|
-
color:
|
|
11994
|
-
-webkit-text-decoration-color:
|
|
11995
|
-
text-decoration-color:
|
|
11964
|
+
color: rgba(var(--bs-warning-600-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11965
|
+
-webkit-text-decoration-color: rgba(var(--bs-warning-600-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11966
|
+
text-decoration-color: rgba(var(--bs-warning-600-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11996
11967
|
}
|
|
11997
11968
|
|
|
11998
11969
|
.link-danger {
|
|
11999
|
-
color:
|
|
12000
|
-
-webkit-text-decoration-color:
|
|
12001
|
-
text-decoration-color:
|
|
11970
|
+
color: rgba(var(--bs-danger-500-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11971
|
+
-webkit-text-decoration-color: rgba(var(--bs-danger-500-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11972
|
+
text-decoration-color: rgba(var(--bs-danger-500-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
12002
11973
|
}
|
|
12003
11974
|
.link-danger:hover, .link-danger:focus {
|
|
12004
|
-
color:
|
|
12005
|
-
-webkit-text-decoration-color:
|
|
12006
|
-
text-decoration-color:
|
|
11975
|
+
color: rgba(var(--bs-danger-600-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11976
|
+
-webkit-text-decoration-color: rgba(var(--bs-danger-600-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11977
|
+
text-decoration-color: rgba(var(--bs-danger-600-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
12007
11978
|
}
|
|
12008
11979
|
|
|
12009
11980
|
.link-light {
|
|
12010
|
-
color:
|
|
12011
|
-
-webkit-text-decoration-color:
|
|
12012
|
-
text-decoration-color:
|
|
11981
|
+
color: rgba(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11982
|
+
-webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11983
|
+
text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
12013
11984
|
}
|
|
12014
11985
|
.link-light:hover, .link-light:focus {
|
|
12015
|
-
color:
|
|
12016
|
-
-webkit-text-decoration-color:
|
|
12017
|
-
text-decoration-color:
|
|
11986
|
+
color: rgba(var(--bs-gray-300-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11987
|
+
-webkit-text-decoration-color: rgba(var(--bs-gray-300-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11988
|
+
text-decoration-color: rgba(var(--bs-gray-300-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
12018
11989
|
}
|
|
12019
11990
|
|
|
12020
11991
|
.link-dark {
|
|
12021
|
-
color:
|
|
12022
|
-
-webkit-text-decoration-color:
|
|
12023
|
-
text-decoration-color:
|
|
11992
|
+
color: rgba(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11993
|
+
-webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11994
|
+
text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
12024
11995
|
}
|
|
12025
11996
|
.link-dark:hover, .link-dark:focus {
|
|
12026
|
-
color:
|
|
12027
|
-
-webkit-text-decoration-color:
|
|
12028
|
-
text-decoration-color:
|
|
11997
|
+
color: rgba(var(--bs-gray-700-rgb), var(--bs-link-opacity, 1)) !important;
|
|
11998
|
+
-webkit-text-decoration-color: rgba(var(--bs-gray-700-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
11999
|
+
text-decoration-color: rgba(var(--bs-gray-700-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
12029
12000
|
}
|
|
12030
12001
|
|
|
12031
12002
|
.link-body-emphasis {
|
|
12032
|
-
color:
|
|
12033
|
-
-webkit-text-decoration-color:
|
|
12034
|
-
text-decoration-color:
|
|
12003
|
+
color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
|
|
12004
|
+
-webkit-text-decoration-color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
12005
|
+
text-decoration-color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
12035
12006
|
}
|
|
12036
12007
|
.link-body-emphasis:hover, .link-body-emphasis:focus {
|
|
12037
|
-
color:
|
|
12038
|
-
-webkit-text-decoration-color:
|
|
12039
|
-
text-decoration-color:
|
|
12008
|
+
color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
|
|
12009
|
+
-webkit-text-decoration-color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
|
|
12010
|
+
text-decoration-color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
|
|
12040
12011
|
}
|
|
12041
12012
|
|
|
12042
12013
|
.focus-ring:focus {
|
|
@@ -15895,6 +15866,36 @@ label .d-icon {
|
|
|
15895
15866
|
.d-sm-none {
|
|
15896
15867
|
display: none !important;
|
|
15897
15868
|
}
|
|
15869
|
+
.w-sm-25 {
|
|
15870
|
+
width: 25% !important;
|
|
15871
|
+
}
|
|
15872
|
+
.w-sm-50 {
|
|
15873
|
+
width: 50% !important;
|
|
15874
|
+
}
|
|
15875
|
+
.w-sm-75 {
|
|
15876
|
+
width: 75% !important;
|
|
15877
|
+
}
|
|
15878
|
+
.w-sm-100 {
|
|
15879
|
+
width: 100% !important;
|
|
15880
|
+
}
|
|
15881
|
+
.w-sm-auto {
|
|
15882
|
+
width: auto !important;
|
|
15883
|
+
}
|
|
15884
|
+
.h-sm-25 {
|
|
15885
|
+
height: 25% !important;
|
|
15886
|
+
}
|
|
15887
|
+
.h-sm-50 {
|
|
15888
|
+
height: 50% !important;
|
|
15889
|
+
}
|
|
15890
|
+
.h-sm-75 {
|
|
15891
|
+
height: 75% !important;
|
|
15892
|
+
}
|
|
15893
|
+
.h-sm-100 {
|
|
15894
|
+
height: 100% !important;
|
|
15895
|
+
}
|
|
15896
|
+
.h-sm-auto {
|
|
15897
|
+
height: auto !important;
|
|
15898
|
+
}
|
|
15898
15899
|
.flex-sm-fill {
|
|
15899
15900
|
flex: 1 1 auto !important;
|
|
15900
15901
|
}
|
|
@@ -17035,6 +17036,36 @@ label .d-icon {
|
|
|
17035
17036
|
.d-md-none {
|
|
17036
17037
|
display: none !important;
|
|
17037
17038
|
}
|
|
17039
|
+
.w-md-25 {
|
|
17040
|
+
width: 25% !important;
|
|
17041
|
+
}
|
|
17042
|
+
.w-md-50 {
|
|
17043
|
+
width: 50% !important;
|
|
17044
|
+
}
|
|
17045
|
+
.w-md-75 {
|
|
17046
|
+
width: 75% !important;
|
|
17047
|
+
}
|
|
17048
|
+
.w-md-100 {
|
|
17049
|
+
width: 100% !important;
|
|
17050
|
+
}
|
|
17051
|
+
.w-md-auto {
|
|
17052
|
+
width: auto !important;
|
|
17053
|
+
}
|
|
17054
|
+
.h-md-25 {
|
|
17055
|
+
height: 25% !important;
|
|
17056
|
+
}
|
|
17057
|
+
.h-md-50 {
|
|
17058
|
+
height: 50% !important;
|
|
17059
|
+
}
|
|
17060
|
+
.h-md-75 {
|
|
17061
|
+
height: 75% !important;
|
|
17062
|
+
}
|
|
17063
|
+
.h-md-100 {
|
|
17064
|
+
height: 100% !important;
|
|
17065
|
+
}
|
|
17066
|
+
.h-md-auto {
|
|
17067
|
+
height: auto !important;
|
|
17068
|
+
}
|
|
17038
17069
|
.flex-md-fill {
|
|
17039
17070
|
flex: 1 1 auto !important;
|
|
17040
17071
|
}
|
|
@@ -18175,6 +18206,36 @@ label .d-icon {
|
|
|
18175
18206
|
.d-lg-none {
|
|
18176
18207
|
display: none !important;
|
|
18177
18208
|
}
|
|
18209
|
+
.w-lg-25 {
|
|
18210
|
+
width: 25% !important;
|
|
18211
|
+
}
|
|
18212
|
+
.w-lg-50 {
|
|
18213
|
+
width: 50% !important;
|
|
18214
|
+
}
|
|
18215
|
+
.w-lg-75 {
|
|
18216
|
+
width: 75% !important;
|
|
18217
|
+
}
|
|
18218
|
+
.w-lg-100 {
|
|
18219
|
+
width: 100% !important;
|
|
18220
|
+
}
|
|
18221
|
+
.w-lg-auto {
|
|
18222
|
+
width: auto !important;
|
|
18223
|
+
}
|
|
18224
|
+
.h-lg-25 {
|
|
18225
|
+
height: 25% !important;
|
|
18226
|
+
}
|
|
18227
|
+
.h-lg-50 {
|
|
18228
|
+
height: 50% !important;
|
|
18229
|
+
}
|
|
18230
|
+
.h-lg-75 {
|
|
18231
|
+
height: 75% !important;
|
|
18232
|
+
}
|
|
18233
|
+
.h-lg-100 {
|
|
18234
|
+
height: 100% !important;
|
|
18235
|
+
}
|
|
18236
|
+
.h-lg-auto {
|
|
18237
|
+
height: auto !important;
|
|
18238
|
+
}
|
|
18178
18239
|
.flex-lg-fill {
|
|
18179
18240
|
flex: 1 1 auto !important;
|
|
18180
18241
|
}
|
|
@@ -19315,6 +19376,36 @@ label .d-icon {
|
|
|
19315
19376
|
.d-xl-none {
|
|
19316
19377
|
display: none !important;
|
|
19317
19378
|
}
|
|
19379
|
+
.w-xl-25 {
|
|
19380
|
+
width: 25% !important;
|
|
19381
|
+
}
|
|
19382
|
+
.w-xl-50 {
|
|
19383
|
+
width: 50% !important;
|
|
19384
|
+
}
|
|
19385
|
+
.w-xl-75 {
|
|
19386
|
+
width: 75% !important;
|
|
19387
|
+
}
|
|
19388
|
+
.w-xl-100 {
|
|
19389
|
+
width: 100% !important;
|
|
19390
|
+
}
|
|
19391
|
+
.w-xl-auto {
|
|
19392
|
+
width: auto !important;
|
|
19393
|
+
}
|
|
19394
|
+
.h-xl-25 {
|
|
19395
|
+
height: 25% !important;
|
|
19396
|
+
}
|
|
19397
|
+
.h-xl-50 {
|
|
19398
|
+
height: 50% !important;
|
|
19399
|
+
}
|
|
19400
|
+
.h-xl-75 {
|
|
19401
|
+
height: 75% !important;
|
|
19402
|
+
}
|
|
19403
|
+
.h-xl-100 {
|
|
19404
|
+
height: 100% !important;
|
|
19405
|
+
}
|
|
19406
|
+
.h-xl-auto {
|
|
19407
|
+
height: auto !important;
|
|
19408
|
+
}
|
|
19318
19409
|
.flex-xl-fill {
|
|
19319
19410
|
flex: 1 1 auto !important;
|
|
19320
19411
|
}
|
|
@@ -20455,6 +20546,36 @@ label .d-icon {
|
|
|
20455
20546
|
.d-xxl-none {
|
|
20456
20547
|
display: none !important;
|
|
20457
20548
|
}
|
|
20549
|
+
.w-xxl-25 {
|
|
20550
|
+
width: 25% !important;
|
|
20551
|
+
}
|
|
20552
|
+
.w-xxl-50 {
|
|
20553
|
+
width: 50% !important;
|
|
20554
|
+
}
|
|
20555
|
+
.w-xxl-75 {
|
|
20556
|
+
width: 75% !important;
|
|
20557
|
+
}
|
|
20558
|
+
.w-xxl-100 {
|
|
20559
|
+
width: 100% !important;
|
|
20560
|
+
}
|
|
20561
|
+
.w-xxl-auto {
|
|
20562
|
+
width: auto !important;
|
|
20563
|
+
}
|
|
20564
|
+
.h-xxl-25 {
|
|
20565
|
+
height: 25% !important;
|
|
20566
|
+
}
|
|
20567
|
+
.h-xxl-50 {
|
|
20568
|
+
height: 50% !important;
|
|
20569
|
+
}
|
|
20570
|
+
.h-xxl-75 {
|
|
20571
|
+
height: 75% !important;
|
|
20572
|
+
}
|
|
20573
|
+
.h-xxl-100 {
|
|
20574
|
+
height: 100% !important;
|
|
20575
|
+
}
|
|
20576
|
+
.h-xxl-auto {
|
|
20577
|
+
height: auto !important;
|
|
20578
|
+
}
|
|
20458
20579
|
.flex-xxl-fill {
|
|
20459
20580
|
flex: 1 1 auto !important;
|
|
20460
20581
|
}
|