Skip to content

Commit 2cd4de7

Browse files
committed
fix(*): themes
1 parent 75cdc50 commit 2cd4de7

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
$label-hover-color: null
4747
) {
4848
$name: 'igx-grid-summary';
49+
$selector: '.igx-grid-summary';
4950
$grid-summary-schema: ();
5051

5152
@if map-has-key($schema, $name) {
@@ -70,6 +71,7 @@
7071

7172
@return extend($theme, (
7273
name: $name,
74+
selector: $selector,
7375
palette: $palette,
7476
background-color: $background-color,
7577
focus-background-color: $focus-background-color,

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,14 @@
10351035
}
10361036

10371037
&%igx-grid__tr--ghost {
1038+
@include igx-css-vars((
1039+
name: 'igx-grid-row',
1040+
row-ghost-background: map-get($theme, 'row-ghost-background'),
1041+
row-drag-color: map-get($theme, 'row-drago-color')
1042+
));
1043+
10381044
background: --var($theme, 'row-ghost-background');
1045+
color: --var($theme, 'row-drag-color');
10391046
z-index: 1;
10401047
}
10411048
}

projects/igniteui-angular/src/lib/slider/slider.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1285,7 +1285,7 @@ export class IgxSliderComponent implements
12851285
}
12861286

12871287
const renderCallbackExecution = !this.continuous ? this.generateTickMarks(
1288-
isIE() ? 'white' : 'var(--igx-slider-track-step-color, white)', interval) : null;
1288+
isIE() ? 'white' : 'var(--igx-slider-track-step-color, var(--track-step-color, white))', interval) : null;
12891289
this.renderer.setStyle(this.ticks.nativeElement, 'background', renderCallbackExecution);
12901290
}
12911291

0 commit comments

Comments
 (0)