Skip to content
This repository has been archived by the owner on Mar 31, 2022. It is now read-only.

Use primary color in drawer header, use black[500] in light theme dra… #201

Merged
merged 2 commits into from
Jun 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions angular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v6.1.1 (Unpublished)

### Fixed

- Fixed a few color issues in the `<pxb-drawer-header>` ([#184](https://github.com/pxblue/themes/issues/184)) and `<pxb-drawer-nav-item>` ([#186](https://github.com/pxblue/themes/issues/186)).

## v6.1.0 (May 28, 2021)

### Added
Expand Down
3 changes: 3 additions & 0 deletions angular/_blueTheme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,9 @@
.pxb-drawer-nav-item-active .pxb-info-list-item .pxb-info-list-item-icon-wrapper {
color: map-get($primary, 500);
}
.pxb-info-list-item .mat-list-item-content .mat-list-icon {
color: map-get($foreground, text);
}
}

/* Drawer Content */
Expand Down
4 changes: 3 additions & 1 deletion angular/_pxb-component-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@
.pxb-drawer-nav-group .mat-list-base {
color: map-get($foreground, text);
}

.pxb-drawer-header-content.mat-toolbar {
background-color: map-get($primary, 500);
}
.pxb-drawer-nav-item-active-highlight {
background-color: map-get($primary, 500);
}
Expand Down