Skip to content

Commit 87606dd

Browse files
committed
fix(grid): update summary label hover cover in indigo theme
1 parent eb8316b commit 87606dd

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

projects/igniteui-angular/src/lib/core/styles/themes/schemas/dark/_grid-summary.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ $_dark-bootstrap-grid-summary: extend($_bootstrap-grid-summary);
3030
/// @property {Color} background-color [igx-color: 'surface'] - The summaries background color is inherited form igx-grid__tfoot.
3131
/// @property {Map} focus-background-color [igx-color: ('grays', 100)] - The background color when a summary item is on focus.
3232
/// @property {Map} label-color [igx-color: ('primary', 200)] - The summaries label color.
33+
/// @property {map} label-hover-color [igx-color: ('primary', 100)] - The summaries hover label color.
3334
/// @property {Color} result-color [igx-color: 'surface'] - The summaries value/result color.
3435
/// @property {Map} pinned-border-color [igx-color: ('primary', 200)] - The border color of the summary panel.
3536
/// @requires {function} extend
@@ -49,6 +50,10 @@ $_dark-indigo-grid-summary: extend(
4950
igx-color: ('primary', 200),
5051
),
5152

53+
label-hover-color: (
54+
igx-color: ('primary', 100),
55+
),
56+
5257
result-color: (
5358
igx-color: 'surface',
5459
),

projects/igniteui-angular/src/lib/core/styles/themes/schemas/light/_grid-summary.scss

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/// Generates a light grid-summary schema.
1010
/// @type {Map}
1111
///
12-
/// @property {Color} background-color [inherit] - The summaries background color is inherited form igx-grid__tfoot.
12+
/// @property {Color} background-color [inherit] - The summaries background color is inherited from the grid footer.
1313
/// @property {Map} focus-background-color [igx-color: ('grays', 100)] - The background color when a summary item is on focus.
1414
/// @property {map} label-color [igx-color: ('primary', 500)] - The summaries label color.
1515
/// @property {map} label-hover-color [igx-color: ('primary', 700)] - The summaries hover label color.
@@ -54,7 +54,7 @@ $_light-grid-summary: extend(
5454
/// Generates a fluent grid-summary schema.
5555
/// @type {Map}
5656
///
57-
/// @property {Color} background-color [ igx-color: ('surface')] - The summaries background color is inherited form igx-grid__tfoot
57+
/// @property {Color} background-color [ igx-color: ('surface')] - The summaries background color is inherited from the grid footer.
5858
/// @property {map} border-color [ igx-color: ('grays', 100)] - The summaries border color.
5959
/// @property {map} pinned-border-color [igx-color: ('grays', 300), hexrgba: #fff] - The border color of the summary panel.
6060
///
@@ -86,7 +86,8 @@ $_bootstrap-grid-summary: extend($_light-grid-summary);
8686

8787
/// Generates an indigo grid-summary schema.
8888
/// @type {Map}
89-
/// @property {Color} background-color [igx-color: ('grays', 100), to-opaque: ()] - The summaries background color is inherited form igx-grid__tfoot.
89+
/// @property {Color} background-color [igx-color: ('grays', 100), to-opaque: ()] - The summaries background color is inherited from the grid footer.
90+
/// @property {map} label-hover-color [igx-color: ('primary', 900)] - The summaries hover label color.
9091
/// @property {map} border-color [igx-color: ('primary', 50)] - The summaries border color.
9192
/// @property {map} pinned-border-color [igx-color: ('primary', 200)] - The border color of the summary panel.
9293
/// @requires {function} extend
@@ -101,6 +102,10 @@ $_indigo-grid-summary: extend(
101102
to-opaque: ()
102103
),
103104

105+
label-hover-color: (
106+
igx-color: ('primary', 900)
107+
),
108+
104109
border-color: (
105110
igx-color: ('primary', 50)
106111
),

0 commit comments

Comments
 (0)