cx 24.10.2 → 24.10.3
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/manifest.js +745 -745
- package/dist/widgets.css +8 -8
- package/package.json +1 -1
- package/src/widgets/grid/Grid.scss +2 -2
package/dist/widgets.css
CHANGED
|
@@ -4900,24 +4900,24 @@ th.cxe-calendar-display {
|
|
|
4900
4900
|
padding-top: 15px;
|
|
4901
4901
|
}
|
|
4902
4902
|
|
|
4903
|
-
.cxe-grid-group-caption.cxs-level-1 {
|
|
4903
|
+
.cxe-grid-group-caption.cxs-level-1 td {
|
|
4904
4904
|
font-weight: bold;
|
|
4905
4905
|
font-size: 115%;
|
|
4906
4906
|
}
|
|
4907
4907
|
|
|
4908
|
-
.cxe-grid-group-caption.cxs-level-2 {
|
|
4908
|
+
.cxe-grid-group-caption.cxs-level-2 td {
|
|
4909
4909
|
font-weight: bold;
|
|
4910
4910
|
font-size: 130%;
|
|
4911
4911
|
border-bottom: 1px solid grey;
|
|
4912
4912
|
}
|
|
4913
4913
|
|
|
4914
|
-
.cxe-grid-group-caption.cxs-level-3 {
|
|
4914
|
+
.cxe-grid-group-caption.cxs-level-3 td {
|
|
4915
4915
|
font-weight: bold;
|
|
4916
4916
|
font-size: 145%;
|
|
4917
4917
|
border-bottom: 1px solid grey;
|
|
4918
4918
|
}
|
|
4919
4919
|
|
|
4920
|
-
.cxe-grid-group-caption.cxs-level-4 {
|
|
4920
|
+
.cxe-grid-group-caption.cxs-level-4 td {
|
|
4921
4921
|
font-weight: bold;
|
|
4922
4922
|
font-size: 160%;
|
|
4923
4923
|
border-bottom: 1px solid grey;
|
|
@@ -4930,24 +4930,24 @@ th.cxe-calendar-display {
|
|
|
4930
4930
|
padding: 5px;
|
|
4931
4931
|
}
|
|
4932
4932
|
|
|
4933
|
-
.cxe-grid-group-footer.cxs-level-1 {
|
|
4933
|
+
.cxe-grid-group-footer.cxs-level-1 td {
|
|
4934
4934
|
font-weight: bold;
|
|
4935
4935
|
border-top: 1px solid #bfbfbf;
|
|
4936
4936
|
}
|
|
4937
4937
|
|
|
4938
|
-
.cxe-grid-group-footer.cxs-level-2 {
|
|
4938
|
+
.cxe-grid-group-footer.cxs-level-2 td {
|
|
4939
4939
|
font-weight: bold;
|
|
4940
4940
|
font-size: 110%;
|
|
4941
4941
|
border-top: 1px solid grey;
|
|
4942
4942
|
}
|
|
4943
4943
|
|
|
4944
|
-
.cxe-grid-group-footer.cxs-level-3 {
|
|
4944
|
+
.cxe-grid-group-footer.cxs-level-3 td {
|
|
4945
4945
|
font-weight: bold;
|
|
4946
4946
|
font-size: 120%;
|
|
4947
4947
|
border-top: 1px solid grey;
|
|
4948
4948
|
}
|
|
4949
4949
|
|
|
4950
|
-
.cxe-grid-group-footer.cxs-level-4 {
|
|
4950
|
+
.cxe-grid-group-footer.cxs-level-4 td {
|
|
4951
4951
|
font-weight: bold;
|
|
4952
4952
|
font-size: 130%;
|
|
4953
4953
|
border-top: 1px solid grey;
|
package/package.json
CHANGED
|
@@ -464,7 +464,7 @@
|
|
|
464
464
|
}
|
|
465
465
|
|
|
466
466
|
@for $i from 1 through 4 {
|
|
467
|
-
.#{$element}#{$name}-group-caption.#{$state}level-#{$i} {
|
|
467
|
+
.#{$element}#{$name}-group-caption.#{$state}level-#{$i} td {
|
|
468
468
|
@include cx-add-state-rules($cx-grid-group-caption-level-style-map, level-#{$i});
|
|
469
469
|
}
|
|
470
470
|
}
|
|
@@ -479,7 +479,7 @@
|
|
|
479
479
|
}
|
|
480
480
|
|
|
481
481
|
@for $i from 1 through 4 {
|
|
482
|
-
.#{$element}#{$name}-group-footer.#{$state}level-#{$i} {
|
|
482
|
+
.#{$element}#{$name}-group-footer.#{$state}level-#{$i} td {
|
|
483
483
|
@include cx-add-state-rules($cx-grid-group-footer-level-style-map, level-#{$i});
|
|
484
484
|
}
|
|
485
485
|
}
|