Bugfix/fix color of spinner in filter component (#873)

* Fix color for dark mode

* Update changelog
pull/875/head
Thomas Kaul 3 years ago committed by GitHub
parent b6cd007ad4
commit 1f0bd5a7db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Fixed
- Fixed the color of the spinner in the activities filter component (dark mode)
## 1.143.0 - 26.04.2022 ## 1.143.0 - 26.04.2022
### Changed ### Changed

@ -8,8 +8,10 @@
border-top: 0 solid transparent !important; border-top: 0 solid transparent !important;
} }
.mat-spinner circle { .mat-spinner {
stroke: rgba(var(--dark-dividers)); circle {
stroke: rgba(var(--dark-dividers));
}
} }
} }
@ -24,7 +26,11 @@
color: rgba(var(--light-primary-text)); color: rgba(var(--light-primary-text));
} }
.mat-spinner circle { ::ng-deep {
stroke: rgba(var(--light-dividers)); .mat-spinner {
circle {
stroke: rgba(var(--light-dividers));
}
}
} }
} }

Loading…
Cancel
Save