@genexus/mercury 0.4.19 → 0.4.21
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/mercury.scss +7 -6
- package/package.json +1 -1
package/dist/mercury.scss
CHANGED
|
@@ -542,8 +542,8 @@ Grid Item
|
|
|
542
542
|
// we should redefine '--grid-cell__padding-inline' here because when a control
|
|
543
543
|
// is inside a a tabular-grid-cell the cell padding-inline value is required to
|
|
544
544
|
// be applied on the control padding-inline.
|
|
545
|
-
padding-block: 0;
|
|
546
|
-
padding-inline: 0;
|
|
545
|
+
padding-block: 0 !important; //WA to force padding 0
|
|
546
|
+
padding-inline: 0 !important; //WA to force padding 0
|
|
547
547
|
}
|
|
548
548
|
@mixin grid-rowset-legend-padding-block() {
|
|
549
549
|
padding-block-start: var(--mer-spacing--2xs);
|
|
@@ -1947,8 +1947,8 @@ Grid Item
|
|
|
1947
1947
|
// we should redefine '--grid-cell__padding-inline' here because when a control
|
|
1948
1948
|
// is inside a a tabular-grid-cell the cell padding-inline value is required to
|
|
1949
1949
|
// be applied on the control padding-inline.
|
|
1950
|
-
padding-block: 0;
|
|
1951
|
-
padding-inline: 0;
|
|
1950
|
+
padding-block: 0 !important; //WA to force padding 0
|
|
1951
|
+
padding-inline: 0 !important; //WA to force padding 0
|
|
1952
1952
|
}
|
|
1953
1953
|
@mixin grid-rowset-legend-padding-block() {
|
|
1954
1954
|
padding-block-start: var(--mer-spacing--2xs);
|
|
@@ -3777,8 +3777,8 @@ Grid Item
|
|
|
3777
3777
|
// we should redefine '--grid-cell__padding-inline' here because when a control
|
|
3778
3778
|
// is inside a a tabular-grid-cell the cell padding-inline value is required to
|
|
3779
3779
|
// be applied on the control padding-inline.
|
|
3780
|
-
padding-block: 0;
|
|
3781
|
-
padding-inline: 0;
|
|
3780
|
+
padding-block: 0 !important; //WA to force padding 0
|
|
3781
|
+
padding-inline: 0 !important; //WA to force padding 0
|
|
3782
3782
|
}
|
|
3783
3783
|
@mixin grid-rowset-legend-padding-block() {
|
|
3784
3784
|
padding-block-start: var(--mer-spacing--2xs);
|
|
@@ -6468,6 +6468,7 @@ Body Spacing
|
|
|
6468
6468
|
// to stretch the control
|
|
6469
6469
|
display: grid;
|
|
6470
6470
|
align-items: stretch;
|
|
6471
|
+
justify-content: stretch;
|
|
6471
6472
|
}
|
|
6472
6473
|
@mixin cell-node-type-element--hover() {
|
|
6473
6474
|
outline: var(--focus__outline-width) var(--focus__outline-style)
|
package/package.json
CHANGED