Skip to content

Commit 43a1c8b

Browse files
authored
Merge pull request #8502 from IgniteUI/mpopov/fix-for-8483--dark-action-strip
Fix fluent and bootstrap dark themes for action strip component
2 parents 58335b9 + 75d37ce commit 43a1c8b

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

projects/igniteui-angular/src/lib/core/styles/themes/schemas/dark/_action-strip.scss

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,24 @@ $_dark-action-strip: extend(
2828
/// Generates a dark fluent action strip schema.
2929
/// @type {Map}
3030
/// @requires {function} extend
31-
/// @requires $_fluent-action-strip
32-
$_dark-fluent-action-strip: extend($_fluent-action-strip);
31+
/// @requires $_dark-action-strip
32+
$_dark-fluent-action-strip: extend(
33+
$_dark-action-strip,
34+
(
35+
variant: 'fluent'
36+
)
37+
);
3338

3439
/// Generates a dark bootstrap action strip schema.
3540
/// @type {Map}
3641
/// @requires {function} extend
37-
/// @requires $_bootstrap-action-strip
38-
$_dark-bootstrap-action-strip: extend($_bootstrap-action-strip);
42+
/// @requires $_dark-action-strip
43+
$_dark-bootstrap-action-strip: extend(
44+
$_dark-action-strip,
45+
(
46+
variant: 'bootstrap'
47+
)
48+
);
3949

4050
/// Generates a dark indigo action strip schema.
4151
/// @type {Map}

0 commit comments

Comments
 (0)