Skip to content

Commit de1acc8

Browse files
authored
Merge pull request #3133 from IgniteUI/mpopov/broken-sample-2885
style(sample): use css-vars mixin to add the themes
2 parents 0a92b9c + 4699aa9 commit de1acc8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/app/grid/grid-editing-style-sample/grid-editing-style-sample.component.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ $color-palette: palette($primary: $white, $secondary: $blue);
77

88
$grid-theme: grid-theme(
99
$cell-editing-background: $blue,
10-
$cell-active-border-color: $white,
10+
$cell-active-border-color: $blue,
1111
$cell-edited-value-color: $white,
1212
$edit-mode-color: color($color-palette, "secondary", 200)
1313
);
@@ -38,11 +38,11 @@ $input-theme: input-group-theme(
3838
:host {
3939
::ng-deep {
4040
.igx-grid__tbody{
41-
@include input-group($input-theme);
41+
@include css-vars($input-theme);
4242
}
43-
@include checkbox($checkbox-theme);
44-
@include calendar($datepicker-theme);
45-
@include grid($grid-theme);
43+
@include css-vars($checkbox-theme);
44+
@include css-vars($datepicker-theme);
45+
@include css-vars($grid-theme);
4646
}
4747
}
4848

0 commit comments

Comments
 (0)