Skip to content

Commit 1aa4698

Browse files
committed
refactor(grid): fluent icon color
1 parent 0d418b7 commit 1aa4698

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

projects/igniteui-angular/src/lib/core/styles/components/grid/_grid-theme.scss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@
888888
@include css-vars((
889889
name: 'igx-grid-row',
890890
row-ghost-background: map.get($theme, 'row-ghost-background'),
891-
row-drag-color: map.get($theme, 'row-drago-color')
891+
row-drag-color: map.get($theme, 'row-drag-color')
892892
));
893893
}
894894
}
@@ -1000,7 +1000,11 @@
10001000
}
10011001

10021002
%igx-icon--error {
1003-
color: color($color: 'gray', $variant: 500);
1003+
@if $variant == 'fluent' and $theme-variant == 'light' {
1004+
color: color($color: 'gray', $variant: 600);
1005+
} @else {
1006+
color: color($color: 'gray', $variant: 500);
1007+
}
10041008
}
10051009
}
10061010

0 commit comments

Comments
 (0)