diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e572e30..77e804f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Added + +- Made the system message expandable + ### Changed - Skipped creating queue jobs for asset profiles with `MANUAL` data source not having a scraper configuration diff --git a/apps/client/src/app/app.component.html b/apps/client/src/app/app.component.html index cdf0ba6b..a832b849 100644 --- a/apps/client/src/app/app.component.html +++ b/apps/client/src/app/app.component.html @@ -31,7 +31,8 @@ >
diff --git a/apps/client/src/app/app.component.scss b/apps/client/src/app/app.component.scss index 6d6ac063..20e455cc 100644 --- a/apps/client/src/app/app.component.scss +++ b/apps/client/src/app/app.component.scss @@ -13,9 +13,10 @@ margin-top: -0.5rem; .info-message { - background-color: rgba(0, 0, 0, $alpha-hover); + background-color: rgba(var(--palette-foreground-text), 0.05); border-radius: 2rem; font-size: 80%; + max-width: 100%; .a { color: rgba(var(--palette-primary-500), 1); @@ -30,3 +31,13 @@ line-height: 1; } } + +:host-context(.is-dark-theme) { + main { + .info-message-container { + .info-message { + background-color: rgba(var(--palette-foreground-text-dark), 0.05); + } + } + } +} diff --git a/apps/client/src/app/app.component.ts b/apps/client/src/app/app.component.ts index d2369dda..2fc84b6a 100644 --- a/apps/client/src/app/app.component.ts +++ b/apps/client/src/app/app.component.ts @@ -100,6 +100,10 @@ export class AppComponent implements OnDestroy, OnInit { this.tokenStorageService.signOut(); } + public onShowSystemMessage() { + alert(this.info.systemMessage); + } + public onSignOut() { this.tokenStorageService.signOut(); this.userService.remove();