Browse Source

Task/improve styling in user detail dialog of admin control (#6992)

* Improve styling

* Update changelog
pull/6942/head
Thomas Kaul 3 days ago
committed by GitHub
parent
commit
37a70f23ce
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      CHANGELOG.md
  2. 4
      apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html
  3. 4
      apps/client/src/app/components/user-detail-dialog/user-detail-dialog.component.scss
  4. 4
      apps/client/src/app/components/user-detail-dialog/user-detail-dialog.html

3
CHANGELOG.md

@ -14,13 +14,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Centralized the asset profile override logic for manual adjustments - Centralized the asset profile override logic for manual adjustments
- Improved the styling in the user detail dialog of the admin control panel’s users section
- Refactored the backend logging to use the instance-based `Logger` - Refactored the backend logging to use the instance-based `Logger`
- Improved the language localization for Ukrainian (`uk`) - Improved the language localization for Ukrainian (`uk`)
### Fixed ### Fixed
- Fixed an issue where the asset profile override (asset class and asset sub class) was not applied to the data enhancers when gathering asset profiles - Fixed an issue where the asset profile override (asset class and asset sub class) was not applied to the data enhancers when gathering asset profiles
- Fixed a layout issue in the asset profile dialog of the admin control by truncating long titles - Fixed a layout issue in the asset profile dialog of the admin control panel by truncating long titles
## 3.7.0 - 2026-06-02 ## 3.7.0 - 2026-06-02

4
apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html

@ -1,5 +1,5 @@
<div class="d-flex flex-column h-100"> <div class="d-flex flex-column h-100">
<h1 class="align-items-center d-flex mb-3" mat-dialog-title> <div class="align-items-center d-flex mb-3" mat-dialog-title>
<span class="flex-grow-1 text-truncate">{{ <span class="flex-grow-1 text-truncate">{{
assetProfile?.name ?? data.symbol assetProfile?.name ?? data.symbol
}}</span> }}</span>
@ -87,7 +87,7 @@
<ng-container i18n>Delete</ng-container> <ng-container i18n>Delete</ng-container>
</button> </button>
</mat-menu> </mat-menu>
</h1> </div>
<div class="flex-grow-1" mat-dialog-content> <div class="flex-grow-1" mat-dialog-content>
<gf-line-chart <gf-line-chart

4
apps/client/src/app/components/user-detail-dialog/user-detail-dialog.component.scss

@ -4,4 +4,8 @@
.mat-mdc-dialog-content { .mat-mdc-dialog-content {
max-height: unset; max-height: unset;
} }
.mat-mdc-dialog-title {
padding-right: 0.5rem !important;
}
} }

4
apps/client/src/app/components/user-detail-dialog/user-detail-dialog.html

@ -1,6 +1,6 @@
<div class="d-flex justify-content-end"> <div class="align-items-center d-flex justify-content-end" mat-dialog-title>
<button <button
class="mx-1 no-min-width px-2" class="ml-1 no-min-width px-2"
mat-button mat-button
type="button" type="button"
[matMenuTriggerFor]="userDetailActionsMenu" [matMenuTriggerFor]="userDetailActionsMenu"

Loading…
Cancel
Save