Skip to content

Commit dab31e9

Browse files
committed
fix(grid): exclude bool columns from fixed-width td cell styles
Add `$not: bool` modifier exclusion to the fixed-width, non-resizable td selector so boolean column cells no longer pick up the `fw` modifier styles meant only for other fixed-width columns.
1 parent 9548d1e commit dab31e9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

projects/igniteui-angular/grids/themes/_base.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ $z-grid-loading: 10003;
646646
flex-grow: 1;
647647
justify-content: center;
648648

649-
.igx-icon {
649+
> .igx-icon {
650650
--component-size: 1;
651651
}
652652

@@ -662,7 +662,7 @@ $z-grid-loading: 10003;
662662
}
663663

664664
// Cell for fixed width columns (non-resizable)
665-
@include e(td, $m: fw) {
665+
@include e(td, $m: fw, $not: bool) {
666666
flex-grow: 0;
667667
outline-style: none;
668668

0 commit comments

Comments
 (0)