Skip to content

Commit a74130e

Browse files
fix(scrollbar): thumb not visible in dark bootstrap theme (#12293)
Co-authored-by: Simeon Simeonoff <[email protected]>
1 parent 6bc92f6 commit a74130e

File tree

1 file changed

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

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ $dark-fluent-scrollbar: $fluent-scrollbar;
2323

2424
/// Generates a dark bootstrap scrollbar schema.
2525
/// @type {Map}
26-
/// @property {Map} thumb-background [color: ('gray', 50)] - The background color used for the thumb.
27-
/// @property {Color} track-background [color: ('gray', 50, .3)] - The background color used for the track.
26+
/// @property {Map} thumb-background [color: ('gray', 200, .5)] - The background color used for the thumb.
27+
/// @property {Color} track-background [color: ('gray', 100, .5)] - The background color used for the track.
2828
/// @requires {function} extend
2929
/// @requires $light-scrollbar
3030
$dark-bootstrap-scrollbar: extend(
3131
$bootstrap-scrollbar,
3232
(
3333
thumb-background: (
34-
color: ('gray', 50)
34+
color: ('gray', 200, .5)
3535
),
3636

3737
track-background: (
38-
color: ('gray', 50, .3)
38+
color: ('gray', 100, .5)
3939
),
4040
)
4141
);

0 commit comments

Comments
 (0)