Feature/make system message expandable (#1861)

* Make system message expandable

* Update changelog
pull/1862/head
Thomas Kaul 2 years ago committed by GitHub
parent 290a07fe79
commit 8a3a6308a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
### Added
- Made the system message expandable
### Changed ### Changed
- Skipped creating queue jobs for asset profiles with `MANUAL` data source not having a scraper configuration - Skipped creating queue jobs for asset profiles with `MANUAL` data source not having a scraper configuration

@ -31,7 +31,8 @@
> >
<div <div
*ngIf="!canCreateAccount && info?.systemMessage && user" *ngIf="!canCreateAccount && info?.systemMessage && user"
class="d-inline-block info-message px-3 py-2" class="cursor-pointer d-inline-block info-message px-3 py-2 text-truncate"
(click)="onShowSystemMessage()"
> >
{{ info.systemMessage }} {{ info.systemMessage }}
</div> </div>

@ -13,9 +13,10 @@
margin-top: -0.5rem; margin-top: -0.5rem;
.info-message { .info-message {
background-color: rgba(0, 0, 0, $alpha-hover); background-color: rgba(var(--palette-foreground-text), 0.05);
border-radius: 2rem; border-radius: 2rem;
font-size: 80%; font-size: 80%;
max-width: 100%;
.a { .a {
color: rgba(var(--palette-primary-500), 1); color: rgba(var(--palette-primary-500), 1);
@ -30,3 +31,13 @@
line-height: 1; line-height: 1;
} }
} }
:host-context(.is-dark-theme) {
main {
.info-message-container {
.info-message {
background-color: rgba(var(--palette-foreground-text-dark), 0.05);
}
}
}
}

@ -100,6 +100,10 @@ export class AppComponent implements OnDestroy, OnInit {
this.tokenStorageService.signOut(); this.tokenStorageService.signOut();
} }
public onShowSystemMessage() {
alert(this.info.systemMessage);
}
public onSignOut() { public onSignOut() {
this.tokenStorageService.signOut(); this.tokenStorageService.signOut();
this.userService.remove(); this.userService.remove();

Loading…
Cancel
Save