Skip to content

Commit

Permalink
fix: fix slider toggle bar color.
Browse files Browse the repository at this point in the history
This commit fixes a regression on the slider toggle bar color
  • Loading branch information
JeanMeche committed Sep 6, 2023
1 parent b100de4 commit 7a257cd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Changelog

## v9.0.0 (TBD)
## v9.0.1 (Unreleased)

- Fix slide-toggle bar color

### Fixed

- Fixed Angular 15 themes should match the legacy themes issue ([#156](https://github.com/etn-ccis/blui-angular-themes/issues/156)).

## v9.0.0 (July 3, 2023)

### Changed

Expand Down
6 changes: 3 additions & 3 deletions _blueTheme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -405,15 +405,15 @@
/* Slide Toggle */
$slideTogglePrimary: (
thumb: map-get($primary, 500),
bar: map-get($primary, 50),
bar: map-get($primary, 200),
);
$slideToggleAccent: (
thumb: map-get($accent, 500),
bar: map-get($accent, 50),
bar: map-get($accent, 200),
);
$slideToggleWarn: (
thumb: map-get($warn, 500),
bar: map-get($warn, 50),
bar: map-get($warn, 200),
);
$inactiveThumb: map-get(blui.$blui-white, 50);
@include slide-toggle.blui-mat-slide-toggle(
Expand Down

0 comments on commit 7a257cd

Please sign in to comment.