@dynamic-framework/ui-react 1.20.0 → 1.22.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 +235 -23
- package/dist/css/dynamic-ui-non-root.min.css +2 -2
- package/dist/css/dynamic-ui-root.css +124 -86
- package/dist/css/dynamic-ui-root.min.css +2 -2
- package/dist/css/dynamic-ui.css +358 -108
- package/dist/css/dynamic-ui.min.css +2 -2
- package/package.json +10 -3
- package/src/style/abstracts/_utilities.scss +8 -1
- package/src/style/abstracts/variables/_colors.scss +110 -65
- package/src/style/abstracts/variables/_typography.scss +47 -12
- package/src/style/base/_type.scss +5 -0
- package/src/style/components/_d-tabs.scss +11 -7
- package/src/style/root/_root.scss +7 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* dynamic-framework 1.
|
|
2
|
+
* dynamic-framework 1.22.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
|
*/
|
|
@@ -2499,7 +2499,7 @@ textarea.form-control-lg {
|
|
|
2499
2499
|
}
|
|
2500
2500
|
|
|
2501
2501
|
.form-select {
|
|
2502
|
-
--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%
|
|
2502
|
+
--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
|
|
2503
2503
|
display: block;
|
|
2504
2504
|
width: 100%;
|
|
2505
2505
|
padding: 0.75rem 3rem 0.75rem 1rem;
|
|
@@ -2645,7 +2645,7 @@ textarea.form-control-lg {
|
|
|
2645
2645
|
padding-left: 3.5em;
|
|
2646
2646
|
}
|
|
2647
2647
|
.form-switch .form-check-input {
|
|
2648
|
-
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg viewBox='-4 -4 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='0.5' y='0.5' width='15' height='15' rx='7.5' fill='%23fff' stroke='%
|
|
2648
|
+
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg viewBox='-4 -4 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='0.5' y='0.5' width='15' height='15' rx='7.5' fill='%23fff' stroke='%23adb5bd'/%3e%3c/svg%3e");
|
|
2649
2649
|
width: 3em;
|
|
2650
2650
|
margin-left: -3.5em;
|
|
2651
2651
|
background-image: var(--bs-form-switch-bg);
|
|
@@ -2659,11 +2659,11 @@ textarea.form-control-lg {
|
|
|
2659
2659
|
}
|
|
2660
2660
|
}
|
|
2661
2661
|
.form-switch .form-check-input:focus {
|
|
2662
|
-
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg viewBox='-4 -4 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='0.5' y='0.5' width='15' height='15' rx='7.5' fill='%23fff' stroke='%
|
|
2662
|
+
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg viewBox='-4 -4 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='0.5' y='0.5' width='15' height='15' rx='7.5' fill='%23fff' stroke='%23adb5bd'/%3e%3c/svg%3e");
|
|
2663
2663
|
}
|
|
2664
2664
|
.form-switch .form-check-input:checked {
|
|
2665
2665
|
background-position: right center;
|
|
2666
|
-
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg viewBox='-4 -4 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='0.5' y='0.5' width='15' height='15' rx='7.5' fill='%23fff' stroke='%
|
|
2666
|
+
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg viewBox='-4 -4 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='0.5' y='0.5' width='15' height='15' rx='7.5' fill='%23fff' stroke='%23adb5bd'/%3e%3c/svg%3e");
|
|
2667
2667
|
}
|
|
2668
2668
|
.form-switch.form-check-reverse {
|
|
2669
2669
|
padding-right: 3.5em;
|
|
@@ -4318,7 +4318,7 @@ textarea.form-control-lg {
|
|
|
4318
4318
|
--bs-accordion-btn-padding-y: var(--bs-ref-spacer-6);
|
|
4319
4319
|
--bs-accordion-btn-color: var(--bs-body-color);
|
|
4320
4320
|
--bs-accordion-btn-bg: var(--bs-accordion-bg);
|
|
4321
|
-
--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%
|
|
4321
|
+
--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
|
|
4322
4322
|
--bs-accordion-btn-icon-width: 1.25rem;
|
|
4323
4323
|
--bs-accordion-btn-icon-transform: rotate(-180deg);
|
|
4324
4324
|
--bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
|
|
@@ -6575,6 +6575,10 @@ textarea.form-control-lg {
|
|
|
6575
6575
|
line-height: var(--bs-heading-line-height);
|
|
6576
6576
|
}
|
|
6577
6577
|
|
|
6578
|
+
[class*=fs-body-] {
|
|
6579
|
+
font-size: var(--bs-fs-body-font-size);
|
|
6580
|
+
}
|
|
6581
|
+
|
|
6578
6582
|
.list-unstyled {
|
|
6579
6583
|
padding-left: 0;
|
|
6580
6584
|
list-style: none;
|
|
@@ -6639,14 +6643,14 @@ body {
|
|
|
6639
6643
|
.form-switch {
|
|
6640
6644
|
--bs-input-switch-bg: var(--bs-gray-300);
|
|
6641
6645
|
--bs-input-switch-border-color: var(--bs-gray-500);
|
|
6642
|
-
--bs-input-switch-dot: url("data:image/svg+xml,%3csvg viewBox='-4 -4 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='0.5' y='0.5' width='15' height='15' rx='7.5' fill='%23fff' stroke='%
|
|
6646
|
+
--bs-input-switch-dot: url("data:image/svg+xml,%3csvg viewBox='-4 -4 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='0.5' y='0.5' width='15' height='15' rx='7.5' fill='%23fff' stroke='%23adb5bd'/%3e%3c/svg%3e");
|
|
6643
6647
|
--bs-input-switch-hover-border-color: var(--bs-focus-ring-color);
|
|
6644
6648
|
--bs-input-switch-focus-outline-color: var(--bs-focus-ring-color);
|
|
6645
6649
|
--bs-input-switch-active-border-color: var(--bs-focus-ring-color);
|
|
6646
6650
|
--bs-input-switch-active-bg: var(--bs-focus-ring-color);
|
|
6647
6651
|
--bs-input-switch-disabled-border-color: var(--bs-gray-300);
|
|
6648
6652
|
--bs-input-switch-disabled-bg: var(--bs-gray-100);
|
|
6649
|
-
--bs-input-switch-disabled-dot: url("data:image/svg+xml,%3csvg viewBox='-4 -4 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='0.5' y='0.5' width='15' height='15' rx='7.5' fill='%23fff' stroke='%
|
|
6653
|
+
--bs-input-switch-disabled-dot: url("data:image/svg+xml,%3csvg viewBox='-4 -4 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='0.5' y='0.5' width='15' height='15' rx='7.5' fill='%23fff' stroke='%23dee2e6'/%3e%3c/svg%3e");
|
|
6650
6654
|
--bs-input-switch-label-color: var(--bs-gray);
|
|
6651
6655
|
--bs-input-switch-active-label-color: var(--bs-gray-700);
|
|
6652
6656
|
}
|
|
@@ -7521,7 +7525,7 @@ body {
|
|
|
7521
7525
|
--bs-btn-hover-border-color: transparent;
|
|
7522
7526
|
--bs-btn-active-color: var(--bs-link-hover-color);
|
|
7523
7527
|
--bs-btn-active-border-color: transparent;
|
|
7524
|
-
--bs-btn-disabled-color: #
|
|
7528
|
+
--bs-btn-disabled-color: #6c757d;
|
|
7525
7529
|
--bs-btn-disabled-border-color: transparent;
|
|
7526
7530
|
--bs-btn-box-shadow: 0 0 0 #000;
|
|
7527
7531
|
--bs-btn-focus-shadow-rgb: 222, 61, 120;
|
|
@@ -7611,10 +7615,10 @@ body {
|
|
|
7611
7615
|
--bs-alert-link-color: var(--bs-white);
|
|
7612
7616
|
}
|
|
7613
7617
|
.alert.alert-warning {
|
|
7614
|
-
--bs-alert-color: var(--bs-
|
|
7618
|
+
--bs-alert-color: var(--bs-gray-700);
|
|
7615
7619
|
--bs-alert-bg: var(--bs-warning);
|
|
7616
7620
|
--bs-alert-border-color: var(--bs-warning);
|
|
7617
|
-
--bs-alert-link-color: var(--bs-
|
|
7621
|
+
--bs-alert-link-color: var(--bs-gray-700);
|
|
7618
7622
|
}
|
|
7619
7623
|
.alert.alert-danger {
|
|
7620
7624
|
--bs-alert-color: var(--bs-white);
|
|
@@ -7876,7 +7880,7 @@ label .d-icon {
|
|
|
7876
7880
|
--bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-info));
|
|
7877
7881
|
}
|
|
7878
7882
|
.tooltip.tooltip-warning {
|
|
7879
|
-
--bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-
|
|
7883
|
+
--bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-gray-700));
|
|
7880
7884
|
--bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-warning));
|
|
7881
7885
|
}
|
|
7882
7886
|
.tooltip.tooltip-danger {
|
|
@@ -10186,12 +10190,18 @@ label .d-icon {
|
|
|
10186
10190
|
}
|
|
10187
10191
|
|
|
10188
10192
|
.nav-pills,
|
|
10193
|
+
.nav-tabs,
|
|
10189
10194
|
.nav-underline {
|
|
10190
|
-
--bs-tabs-nav-gap: var(--bs-ref-spacer-6);
|
|
10191
|
-
--bs-tabs-nav-padding-x: var(--bs-ref-spacer-6);
|
|
10192
|
-
--bs-tabs-nav-padding-y: var(--bs-ref-spacer-4);
|
|
10193
|
-
|
|
10194
|
-
|
|
10195
|
+
--bs-nav-tabs-nav-gap: var(--bs-ref-spacer-6);
|
|
10196
|
+
--bs-nav-tabs-nav-padding-x: var(--bs-ref-spacer-6);
|
|
10197
|
+
--bs-nav-tabs-nav-padding-y: var(--bs-ref-spacer-4);
|
|
10198
|
+
--bs-nav-tabs-link-border-active-font-weight: var(--bs-fw-bold);
|
|
10199
|
+
}
|
|
10200
|
+
|
|
10201
|
+
.nav-pills,
|
|
10202
|
+
.nav-underline {
|
|
10203
|
+
gap: var(--bs-nav-tabs-nav-gap);
|
|
10204
|
+
padding: var(--bs-nav-tabs-nav-padding-y) var(--bs-nav-tabs-nav-padding-x);
|
|
10195
10205
|
}
|
|
10196
10206
|
.nav-pills.flex-column,
|
|
10197
10207
|
.nav-underline.flex-column {
|
|
@@ -10202,11 +10212,8 @@ label .d-icon {
|
|
|
10202
10212
|
width: 100%;
|
|
10203
10213
|
}
|
|
10204
10214
|
|
|
10205
|
-
.nav-tabs {
|
|
10206
|
-
--bs-tabs-link-border-active-font-weight: var(--bs-fw-bold);
|
|
10207
|
-
}
|
|
10208
10215
|
.nav-tabs .nav-link.active {
|
|
10209
|
-
font-weight: var(--bs-tabs-link-border-active-font-weight);
|
|
10216
|
+
font-weight: var(--bs-nav-tabs-link-border-active-font-weight);
|
|
10210
10217
|
border-bottom-color: transparent;
|
|
10211
10218
|
}
|
|
10212
10219
|
.nav-tabs .nav-link:not(.active):is(:hover, :focus) {
|
|
@@ -10899,7 +10906,7 @@ label .d-icon {
|
|
|
10899
10906
|
|
|
10900
10907
|
.d-select {
|
|
10901
10908
|
--bs-select-gap: 0.5rem;
|
|
10902
|
-
--bs-select-menu-shadow: 0 8px 12px 0 rgba(
|
|
10909
|
+
--bs-select-menu-shadow: 0 8px 12px 0 rgba(33, 37, 41, 0.05);
|
|
10903
10910
|
--bs-select-option-focus-bg: var(--bs-gray-100);
|
|
10904
10911
|
--bs-select-option-selected-color: var(--bs-secondary);
|
|
10905
10912
|
--bs-select-option-selected-bg: var(--bs-gray-100);
|
|
@@ -11108,7 +11115,7 @@ label .d-icon {
|
|
|
11108
11115
|
}
|
|
11109
11116
|
|
|
11110
11117
|
.text-bg-warning {
|
|
11111
|
-
color: var(--bs-
|
|
11118
|
+
color: var(--bs-gray-700) !important;
|
|
11112
11119
|
background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
|
|
11113
11120
|
}
|
|
11114
11121
|
|
|
@@ -11885,6 +11892,11 @@ label .d-icon {
|
|
|
11885
11892
|
border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
|
|
11886
11893
|
}
|
|
11887
11894
|
|
|
11895
|
+
.border-gray-50 {
|
|
11896
|
+
--bs-border-opacity: 1;
|
|
11897
|
+
border-color: rgba(var(--bs-gray-50-rgb), var(--bs-border-opacity)) !important;
|
|
11898
|
+
}
|
|
11899
|
+
|
|
11888
11900
|
.border-gray-100 {
|
|
11889
11901
|
--bs-border-opacity: 1;
|
|
11890
11902
|
border-color: rgba(var(--bs-gray-100-rgb), var(--bs-border-opacity)) !important;
|
|
@@ -13584,6 +13596,11 @@ label .d-icon {
|
|
|
13584
13596
|
color: inherit !important;
|
|
13585
13597
|
}
|
|
13586
13598
|
|
|
13599
|
+
.text-primary-50 {
|
|
13600
|
+
--bs-text-opacity: 1;
|
|
13601
|
+
color: rgba(var(--bs-primary-50-rgb), var(--bs-text-opacity)) !important;
|
|
13602
|
+
}
|
|
13603
|
+
|
|
13587
13604
|
.text-primary-100 {
|
|
13588
13605
|
--bs-text-opacity: 1;
|
|
13589
13606
|
color: rgba(var(--bs-primary-100-rgb), var(--bs-text-opacity)) !important;
|
|
@@ -13629,6 +13646,11 @@ label .d-icon {
|
|
|
13629
13646
|
color: rgba(var(--bs-primary-900-rgb), var(--bs-text-opacity)) !important;
|
|
13630
13647
|
}
|
|
13631
13648
|
|
|
13649
|
+
.text-secondary-50 {
|
|
13650
|
+
--bs-text-opacity: 1;
|
|
13651
|
+
color: rgba(var(--bs-secondary-50-rgb), var(--bs-text-opacity)) !important;
|
|
13652
|
+
}
|
|
13653
|
+
|
|
13632
13654
|
.text-secondary-100 {
|
|
13633
13655
|
--bs-text-opacity: 1;
|
|
13634
13656
|
color: rgba(var(--bs-secondary-100-rgb), var(--bs-text-opacity)) !important;
|
|
@@ -13674,6 +13696,11 @@ label .d-icon {
|
|
|
13674
13696
|
color: rgba(var(--bs-secondary-900-rgb), var(--bs-text-opacity)) !important;
|
|
13675
13697
|
}
|
|
13676
13698
|
|
|
13699
|
+
.text-success-50 {
|
|
13700
|
+
--bs-text-opacity: 1;
|
|
13701
|
+
color: rgba(var(--bs-success-50-rgb), var(--bs-text-opacity)) !important;
|
|
13702
|
+
}
|
|
13703
|
+
|
|
13677
13704
|
.text-success-100 {
|
|
13678
13705
|
--bs-text-opacity: 1;
|
|
13679
13706
|
color: rgba(var(--bs-success-100-rgb), var(--bs-text-opacity)) !important;
|
|
@@ -13719,6 +13746,11 @@ label .d-icon {
|
|
|
13719
13746
|
color: rgba(var(--bs-success-900-rgb), var(--bs-text-opacity)) !important;
|
|
13720
13747
|
}
|
|
13721
13748
|
|
|
13749
|
+
.text-info-50 {
|
|
13750
|
+
--bs-text-opacity: 1;
|
|
13751
|
+
color: rgba(var(--bs-info-50-rgb), var(--bs-text-opacity)) !important;
|
|
13752
|
+
}
|
|
13753
|
+
|
|
13722
13754
|
.text-info-100 {
|
|
13723
13755
|
--bs-text-opacity: 1;
|
|
13724
13756
|
color: rgba(var(--bs-info-100-rgb), var(--bs-text-opacity)) !important;
|
|
@@ -13764,6 +13796,11 @@ label .d-icon {
|
|
|
13764
13796
|
color: rgba(var(--bs-info-900-rgb), var(--bs-text-opacity)) !important;
|
|
13765
13797
|
}
|
|
13766
13798
|
|
|
13799
|
+
.text-warning-50 {
|
|
13800
|
+
--bs-text-opacity: 1;
|
|
13801
|
+
color: rgba(var(--bs-warning-50-rgb), var(--bs-text-opacity)) !important;
|
|
13802
|
+
}
|
|
13803
|
+
|
|
13767
13804
|
.text-warning-100 {
|
|
13768
13805
|
--bs-text-opacity: 1;
|
|
13769
13806
|
color: rgba(var(--bs-warning-100-rgb), var(--bs-text-opacity)) !important;
|
|
@@ -13809,6 +13846,11 @@ label .d-icon {
|
|
|
13809
13846
|
color: rgba(var(--bs-warning-900-rgb), var(--bs-text-opacity)) !important;
|
|
13810
13847
|
}
|
|
13811
13848
|
|
|
13849
|
+
.text-danger-50 {
|
|
13850
|
+
--bs-text-opacity: 1;
|
|
13851
|
+
color: rgba(var(--bs-danger-50-rgb), var(--bs-text-opacity)) !important;
|
|
13852
|
+
}
|
|
13853
|
+
|
|
13812
13854
|
.text-danger-100 {
|
|
13813
13855
|
--bs-text-opacity: 1;
|
|
13814
13856
|
color: rgba(var(--bs-danger-100-rgb), var(--bs-text-opacity)) !important;
|
|
@@ -13854,6 +13896,11 @@ label .d-icon {
|
|
|
13854
13896
|
color: rgba(var(--bs-danger-900-rgb), var(--bs-text-opacity)) !important;
|
|
13855
13897
|
}
|
|
13856
13898
|
|
|
13899
|
+
.text-gray-50 {
|
|
13900
|
+
--bs-text-opacity: 1;
|
|
13901
|
+
color: rgba(var(--bs-gray-50-rgb), var(--bs-text-opacity)) !important;
|
|
13902
|
+
}
|
|
13903
|
+
|
|
13857
13904
|
.text-gray-100 {
|
|
13858
13905
|
--bs-text-opacity: 1;
|
|
13859
13906
|
color: rgba(var(--bs-gray-100-rgb), var(--bs-text-opacity)) !important;
|
|
@@ -14187,6 +14234,11 @@ label .d-icon {
|
|
|
14187
14234
|
background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
|
|
14188
14235
|
}
|
|
14189
14236
|
|
|
14237
|
+
.bg-primary-50 {
|
|
14238
|
+
--bs-bg-opacity: 1;
|
|
14239
|
+
background-color: rgba(var(--bs-primary-50-rgb), var(--bs-bg-opacity)) !important;
|
|
14240
|
+
}
|
|
14241
|
+
|
|
14190
14242
|
.bg-primary-100 {
|
|
14191
14243
|
--bs-bg-opacity: 1;
|
|
14192
14244
|
background-color: rgba(var(--bs-primary-100-rgb), var(--bs-bg-opacity)) !important;
|
|
@@ -14232,6 +14284,11 @@ label .d-icon {
|
|
|
14232
14284
|
background-color: rgba(var(--bs-primary-900-rgb), var(--bs-bg-opacity)) !important;
|
|
14233
14285
|
}
|
|
14234
14286
|
|
|
14287
|
+
.bg-secondary-50 {
|
|
14288
|
+
--bs-bg-opacity: 1;
|
|
14289
|
+
background-color: rgba(var(--bs-secondary-50-rgb), var(--bs-bg-opacity)) !important;
|
|
14290
|
+
}
|
|
14291
|
+
|
|
14235
14292
|
.bg-secondary-100 {
|
|
14236
14293
|
--bs-bg-opacity: 1;
|
|
14237
14294
|
background-color: rgba(var(--bs-secondary-100-rgb), var(--bs-bg-opacity)) !important;
|
|
@@ -14277,6 +14334,11 @@ label .d-icon {
|
|
|
14277
14334
|
background-color: rgba(var(--bs-secondary-900-rgb), var(--bs-bg-opacity)) !important;
|
|
14278
14335
|
}
|
|
14279
14336
|
|
|
14337
|
+
.bg-success-50 {
|
|
14338
|
+
--bs-bg-opacity: 1;
|
|
14339
|
+
background-color: rgba(var(--bs-success-50-rgb), var(--bs-bg-opacity)) !important;
|
|
14340
|
+
}
|
|
14341
|
+
|
|
14280
14342
|
.bg-success-100 {
|
|
14281
14343
|
--bs-bg-opacity: 1;
|
|
14282
14344
|
background-color: rgba(var(--bs-success-100-rgb), var(--bs-bg-opacity)) !important;
|
|
@@ -14322,6 +14384,11 @@ label .d-icon {
|
|
|
14322
14384
|
background-color: rgba(var(--bs-success-900-rgb), var(--bs-bg-opacity)) !important;
|
|
14323
14385
|
}
|
|
14324
14386
|
|
|
14387
|
+
.bg-info-50 {
|
|
14388
|
+
--bs-bg-opacity: 1;
|
|
14389
|
+
background-color: rgba(var(--bs-info-50-rgb), var(--bs-bg-opacity)) !important;
|
|
14390
|
+
}
|
|
14391
|
+
|
|
14325
14392
|
.bg-info-100 {
|
|
14326
14393
|
--bs-bg-opacity: 1;
|
|
14327
14394
|
background-color: rgba(var(--bs-info-100-rgb), var(--bs-bg-opacity)) !important;
|
|
@@ -14367,6 +14434,11 @@ label .d-icon {
|
|
|
14367
14434
|
background-color: rgba(var(--bs-info-900-rgb), var(--bs-bg-opacity)) !important;
|
|
14368
14435
|
}
|
|
14369
14436
|
|
|
14437
|
+
.bg-warning-50 {
|
|
14438
|
+
--bs-bg-opacity: 1;
|
|
14439
|
+
background-color: rgba(var(--bs-warning-50-rgb), var(--bs-bg-opacity)) !important;
|
|
14440
|
+
}
|
|
14441
|
+
|
|
14370
14442
|
.bg-warning-100 {
|
|
14371
14443
|
--bs-bg-opacity: 1;
|
|
14372
14444
|
background-color: rgba(var(--bs-warning-100-rgb), var(--bs-bg-opacity)) !important;
|
|
@@ -14412,6 +14484,11 @@ label .d-icon {
|
|
|
14412
14484
|
background-color: rgba(var(--bs-warning-900-rgb), var(--bs-bg-opacity)) !important;
|
|
14413
14485
|
}
|
|
14414
14486
|
|
|
14487
|
+
.bg-danger-50 {
|
|
14488
|
+
--bs-bg-opacity: 1;
|
|
14489
|
+
background-color: rgba(var(--bs-danger-50-rgb), var(--bs-bg-opacity)) !important;
|
|
14490
|
+
}
|
|
14491
|
+
|
|
14415
14492
|
.bg-danger-100 {
|
|
14416
14493
|
--bs-bg-opacity: 1;
|
|
14417
14494
|
background-color: rgba(var(--bs-danger-100-rgb), var(--bs-bg-opacity)) !important;
|
|
@@ -14457,6 +14534,11 @@ label .d-icon {
|
|
|
14457
14534
|
background-color: rgba(var(--bs-danger-900-rgb), var(--bs-bg-opacity)) !important;
|
|
14458
14535
|
}
|
|
14459
14536
|
|
|
14537
|
+
.bg-gray-50 {
|
|
14538
|
+
--bs-bg-opacity: 1;
|
|
14539
|
+
background-color: rgba(var(--bs-gray-50-rgb), var(--bs-bg-opacity)) !important;
|
|
14540
|
+
}
|
|
14541
|
+
|
|
14460
14542
|
.bg-gray-100 {
|
|
14461
14543
|
--bs-bg-opacity: 1;
|
|
14462
14544
|
background-color: rgba(var(--bs-gray-100-rgb), var(--bs-bg-opacity)) !important;
|
|
@@ -14517,6 +14599,41 @@ label .d-icon {
|
|
|
14517
14599
|
background-color: rgba(var(--bs-secondary-soft-rgb), var(--bs-bg-opacity)) !important;
|
|
14518
14600
|
}
|
|
14519
14601
|
|
|
14602
|
+
.bg-surface-gray {
|
|
14603
|
+
--bs-bg-opacity: 1;
|
|
14604
|
+
background-color: rgba(var(--bs-surface-gray-rgb), var(--bs-bg-opacity)) !important;
|
|
14605
|
+
}
|
|
14606
|
+
|
|
14607
|
+
.bg-surface-primary {
|
|
14608
|
+
--bs-bg-opacity: 1;
|
|
14609
|
+
background-color: rgba(var(--bs-surface-primary-rgb), var(--bs-bg-opacity)) !important;
|
|
14610
|
+
}
|
|
14611
|
+
|
|
14612
|
+
.bg-surface-secondary {
|
|
14613
|
+
--bs-bg-opacity: 1;
|
|
14614
|
+
background-color: rgba(var(--bs-surface-secondary-rgb), var(--bs-bg-opacity)) !important;
|
|
14615
|
+
}
|
|
14616
|
+
|
|
14617
|
+
.bg-surface-success {
|
|
14618
|
+
--bs-bg-opacity: 1;
|
|
14619
|
+
background-color: rgba(var(--bs-surface-success-rgb), var(--bs-bg-opacity)) !important;
|
|
14620
|
+
}
|
|
14621
|
+
|
|
14622
|
+
.bg-surface-info {
|
|
14623
|
+
--bs-bg-opacity: 1;
|
|
14624
|
+
background-color: rgba(var(--bs-surface-info-rgb), var(--bs-bg-opacity)) !important;
|
|
14625
|
+
}
|
|
14626
|
+
|
|
14627
|
+
.bg-surface-warning {
|
|
14628
|
+
--bs-bg-opacity: 1;
|
|
14629
|
+
background-color: rgba(var(--bs-surface-warning-rgb), var(--bs-bg-opacity)) !important;
|
|
14630
|
+
}
|
|
14631
|
+
|
|
14632
|
+
.bg-surface-danger {
|
|
14633
|
+
--bs-bg-opacity: 1;
|
|
14634
|
+
background-color: rgba(var(--bs-surface-danger-rgb), var(--bs-bg-opacity)) !important;
|
|
14635
|
+
}
|
|
14636
|
+
|
|
14520
14637
|
.bg-opacity-10 {
|
|
14521
14638
|
--bs-bg-opacity: 0.1;
|
|
14522
14639
|
}
|
|
@@ -15039,6 +15156,26 @@ label .d-icon {
|
|
|
15039
15156
|
--bs-display-font-size: var(--bs-fs-display-6);
|
|
15040
15157
|
}
|
|
15041
15158
|
|
|
15159
|
+
.fs-body-large {
|
|
15160
|
+
--bs-fs-body-font-size: var(--bs-fs-body-large);
|
|
15161
|
+
}
|
|
15162
|
+
|
|
15163
|
+
.fs-body-medium {
|
|
15164
|
+
--bs-fs-body-font-size: var(--bs-fs-body-medium);
|
|
15165
|
+
}
|
|
15166
|
+
|
|
15167
|
+
.fs-body-normal {
|
|
15168
|
+
--bs-fs-body-font-size: var(--bs-fs-body-normal);
|
|
15169
|
+
}
|
|
15170
|
+
|
|
15171
|
+
.fs-body-small {
|
|
15172
|
+
--bs-fs-body-font-size: var(--bs-fs-body-small);
|
|
15173
|
+
}
|
|
15174
|
+
|
|
15175
|
+
.fs-body-tiny {
|
|
15176
|
+
--bs-fs-body-font-size: var(--bs-fs-body-tiny);
|
|
15177
|
+
}
|
|
15178
|
+
|
|
15042
15179
|
@media (min-width: 576px) {
|
|
15043
15180
|
.float-sm-start {
|
|
15044
15181
|
float: left !important;
|
|
@@ -16208,6 +16345,21 @@ label .d-icon {
|
|
|
16208
16345
|
.display-sm-6 {
|
|
16209
16346
|
--bs-display-font-size: var(--bs-fs-display-6);
|
|
16210
16347
|
}
|
|
16348
|
+
.fs-body-sm-large {
|
|
16349
|
+
--bs-fs-body-font-size: var(--bs-fs-body-large);
|
|
16350
|
+
}
|
|
16351
|
+
.fs-body-sm-medium {
|
|
16352
|
+
--bs-fs-body-font-size: var(--bs-fs-body-medium);
|
|
16353
|
+
}
|
|
16354
|
+
.fs-body-sm-normal {
|
|
16355
|
+
--bs-fs-body-font-size: var(--bs-fs-body-normal);
|
|
16356
|
+
}
|
|
16357
|
+
.fs-body-sm-small {
|
|
16358
|
+
--bs-fs-body-font-size: var(--bs-fs-body-small);
|
|
16359
|
+
}
|
|
16360
|
+
.fs-body-sm-tiny {
|
|
16361
|
+
--bs-fs-body-font-size: var(--bs-fs-body-tiny);
|
|
16362
|
+
}
|
|
16211
16363
|
}
|
|
16212
16364
|
@media (min-width: 768px) {
|
|
16213
16365
|
.float-md-start {
|
|
@@ -17378,6 +17530,21 @@ label .d-icon {
|
|
|
17378
17530
|
.display-md-6 {
|
|
17379
17531
|
--bs-display-font-size: var(--bs-fs-display-6);
|
|
17380
17532
|
}
|
|
17533
|
+
.fs-body-md-large {
|
|
17534
|
+
--bs-fs-body-font-size: var(--bs-fs-body-large);
|
|
17535
|
+
}
|
|
17536
|
+
.fs-body-md-medium {
|
|
17537
|
+
--bs-fs-body-font-size: var(--bs-fs-body-medium);
|
|
17538
|
+
}
|
|
17539
|
+
.fs-body-md-normal {
|
|
17540
|
+
--bs-fs-body-font-size: var(--bs-fs-body-normal);
|
|
17541
|
+
}
|
|
17542
|
+
.fs-body-md-small {
|
|
17543
|
+
--bs-fs-body-font-size: var(--bs-fs-body-small);
|
|
17544
|
+
}
|
|
17545
|
+
.fs-body-md-tiny {
|
|
17546
|
+
--bs-fs-body-font-size: var(--bs-fs-body-tiny);
|
|
17547
|
+
}
|
|
17381
17548
|
}
|
|
17382
17549
|
@media (min-width: 992px) {
|
|
17383
17550
|
.float-lg-start {
|
|
@@ -18548,6 +18715,21 @@ label .d-icon {
|
|
|
18548
18715
|
.display-lg-6 {
|
|
18549
18716
|
--bs-display-font-size: var(--bs-fs-display-6);
|
|
18550
18717
|
}
|
|
18718
|
+
.fs-body-lg-large {
|
|
18719
|
+
--bs-fs-body-font-size: var(--bs-fs-body-large);
|
|
18720
|
+
}
|
|
18721
|
+
.fs-body-lg-medium {
|
|
18722
|
+
--bs-fs-body-font-size: var(--bs-fs-body-medium);
|
|
18723
|
+
}
|
|
18724
|
+
.fs-body-lg-normal {
|
|
18725
|
+
--bs-fs-body-font-size: var(--bs-fs-body-normal);
|
|
18726
|
+
}
|
|
18727
|
+
.fs-body-lg-small {
|
|
18728
|
+
--bs-fs-body-font-size: var(--bs-fs-body-small);
|
|
18729
|
+
}
|
|
18730
|
+
.fs-body-lg-tiny {
|
|
18731
|
+
--bs-fs-body-font-size: var(--bs-fs-body-tiny);
|
|
18732
|
+
}
|
|
18551
18733
|
}
|
|
18552
18734
|
@media (min-width: 1200px) {
|
|
18553
18735
|
.float-xl-start {
|
|
@@ -19718,6 +19900,21 @@ label .d-icon {
|
|
|
19718
19900
|
.display-xl-6 {
|
|
19719
19901
|
--bs-display-font-size: var(--bs-fs-display-6);
|
|
19720
19902
|
}
|
|
19903
|
+
.fs-body-xl-large {
|
|
19904
|
+
--bs-fs-body-font-size: var(--bs-fs-body-large);
|
|
19905
|
+
}
|
|
19906
|
+
.fs-body-xl-medium {
|
|
19907
|
+
--bs-fs-body-font-size: var(--bs-fs-body-medium);
|
|
19908
|
+
}
|
|
19909
|
+
.fs-body-xl-normal {
|
|
19910
|
+
--bs-fs-body-font-size: var(--bs-fs-body-normal);
|
|
19911
|
+
}
|
|
19912
|
+
.fs-body-xl-small {
|
|
19913
|
+
--bs-fs-body-font-size: var(--bs-fs-body-small);
|
|
19914
|
+
}
|
|
19915
|
+
.fs-body-xl-tiny {
|
|
19916
|
+
--bs-fs-body-font-size: var(--bs-fs-body-tiny);
|
|
19917
|
+
}
|
|
19721
19918
|
}
|
|
19722
19919
|
@media (min-width: 1400px) {
|
|
19723
19920
|
.float-xxl-start {
|
|
@@ -20888,6 +21085,21 @@ label .d-icon {
|
|
|
20888
21085
|
.display-xxl-6 {
|
|
20889
21086
|
--bs-display-font-size: var(--bs-fs-display-6);
|
|
20890
21087
|
}
|
|
21088
|
+
.fs-body-xxl-large {
|
|
21089
|
+
--bs-fs-body-font-size: var(--bs-fs-body-large);
|
|
21090
|
+
}
|
|
21091
|
+
.fs-body-xxl-medium {
|
|
21092
|
+
--bs-fs-body-font-size: var(--bs-fs-body-medium);
|
|
21093
|
+
}
|
|
21094
|
+
.fs-body-xxl-normal {
|
|
21095
|
+
--bs-fs-body-font-size: var(--bs-fs-body-normal);
|
|
21096
|
+
}
|
|
21097
|
+
.fs-body-xxl-small {
|
|
21098
|
+
--bs-fs-body-font-size: var(--bs-fs-body-small);
|
|
21099
|
+
}
|
|
21100
|
+
.fs-body-xxl-tiny {
|
|
21101
|
+
--bs-fs-body-font-size: var(--bs-fs-body-tiny);
|
|
21102
|
+
}
|
|
20891
21103
|
}
|
|
20892
21104
|
@media print {
|
|
20893
21105
|
.d-print-inline {
|