mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-7286] Fix topbar user info issues (#3720)
This commit is contained in:
@@ -1,11 +1,13 @@
|
|||||||
<div mat-menu-item class="aca-user-info" [routerLink]="['/profile']" title="{{ 'APP.TOOLTIPS.MY_PROFILE' | translate }}">
|
<div mat-menu-item class="aca-user-info" [routerLink]="['/profile']" title="{{ 'APP.TOOLTIPS.MY_PROFILE' | translate }}">
|
||||||
<ng-container *ngIf="user$ | async as user">
|
<ng-container *ngIf="user$ | async as user">
|
||||||
<button class="aca-user-info-button">
|
<div class="aca-user-info-content">
|
||||||
<div>{{ user.initials || 'U' }}</div>
|
<button class="aca-user-info-button">
|
||||||
</button>
|
<div>{{ user.initials || 'U' }}</div>
|
||||||
<div class="aca-user-info-details">
|
</button>
|
||||||
<div>{{ user.userName }}</div>
|
<div class="aca-user-info-details">
|
||||||
<div>{{ user.email }}</div>
|
<div>{{ user.userName }}</div>
|
||||||
|
<div>{{ user.email }}</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -3,6 +3,11 @@
|
|||||||
height: 66px;
|
height: 66px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
|
&-content {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
&-button {
|
&-button {
|
||||||
border-radius: 90%;
|
border-radius: 90%;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
border-radius: 90%;
|
border-radius: 90%;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
min-width: 32px;
|
min-width: 36px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
|
Reference in New Issue
Block a user