Skip to content

Commit 4294595

Browse files
authored
Merge pull request #7815 from IgniteUI/mpopov/dropdown-header-contrast
fix(dropdown): header contrast color in dark theme
2 parents 84536a6 + 8687862 commit 4294595

File tree

1 file changed

+9
-1
lines changed
  • projects/igniteui-angular/src/lib/core/styles/themes/schemas/dark

1 file changed

+9
-1
lines changed

projects/igniteui-angular/src/lib/core/styles/themes/schemas/dark/_drop-down.scss

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,14 @@ $_dark-bootstrap-drop-down: extend(
4848

4949
/// Generates a dark indigo drop-down schema.
5050
/// @type {Map}
51+
/// @prop {Map} header-text-color [igx-contrast-color: 'surface'] - The drop-down header text color.
5152
/// @requires {function} extend
5253
/// @requires $_indigo-drop-down
53-
$_dark-indigo-drop-down: extend($_indigo-drop-down);
54+
$_dark-indigo-drop-down: extend(
55+
$_indigo-drop-down,
56+
(
57+
header-text-color: (
58+
igx-contrast-color: 'surface'
59+
),
60+
)
61+
);

0 commit comments

Comments
 (0)