Skip to content
Snippets Groups Projects
Verified Commit 6925e3b5 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX #11319 TIME 0:15 fix csss display name

parent 3c6743e1
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<button *ngIf="checkClose()" class="closePanel" mat-icon-button type="button" (tap)="snavLeftComponent.close();"> <button *ngIf="checkClose()" class="closePanel" mat-icon-button type="button" (tap)="snavLeftComponent.close();">
<mat-icon fontSet="fas" fontIcon="fa-arrow-left fa-2x"></mat-icon> <mat-icon fontSet="fas" fontIcon="fa-arrow-left fa-2x"></mat-icon>
</button> </button>
<div class="user" style="color: #F99830"> <div class="user" style="color: #F99830" title="{{authService.user.firstname}} {{authService.user.lastname}}">
{{authService.user.firstname}} {{authService.user.lastname}} {{authService.user.firstname}} {{authService.user.lastname}}
</div> </div>
<div *ngIf="authService.user.picture" class="avatar" <div *ngIf="authService.user.picture" class="avatar"
......
...@@ -52,6 +52,13 @@ ...@@ -52,6 +52,13 @@
padding-top: 10px; padding-top: 10px;
font-weight: bold; font-weight: bold;
font-size: 20px; font-size: 20px;
position: absolute;
max-width: 250px;
right: 0px;
white-space: pre;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 10px;
} }
.logout-button { .logout-button {
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<button *ngIf="checkClose()" class="closePanel" mat-icon-button type="button" (tap)="snavLeftComponent.close();"> <button *ngIf="checkClose()" class="closePanel" mat-icon-button type="button" (tap)="snavLeftComponent.close();">
<mat-icon fontSet="fas" fontIcon="fa-arrow-left fa-2x"></mat-icon> <mat-icon fontSet="fas" fontIcon="fa-arrow-left fa-2x"></mat-icon>
</button> </button>
<div class="user" style="color: #F99830"> <div class="user" style="color: #F99830" title="{{authService.user.firstname}} {{authService.user.lastname}}">
{{authService.user.firstname}} {{authService.user.lastname}} {{authService.user.firstname}} {{authService.user.lastname}}
</div> </div>
<div *ngIf="authService.user.picture" class="avatar" <div *ngIf="authService.user.picture" class="avatar"
......
...@@ -153,6 +153,13 @@ ...@@ -153,6 +153,13 @@
padding-top: 10px; padding-top: 10px;
font-weight: bold; font-weight: bold;
font-size: 20px; font-size: 20px;
position: absolute;
max-width: 250px;
right: 0px;
white-space: pre;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 10px;
} }
.logout-button { .logout-button {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment