Skip to content
Snippets Groups Projects
Verified Commit bb1fa936 authored by Damien's avatar Damien
Browse files

FEAT #12196 TIME 0:25 Opacity when not allowed

parent fca02ee7
No related branches found
No related tags found
No related merge requests found
......@@ -181,7 +181,7 @@
</ng-container>
<mat-header-row *matHeaderRowDef="usersDisplayedColumns"></mat-header-row>
<mat-row *matRowDef="let row; columns: usersDisplayedColumns;" matTooltip="{{lang.view}}" [matTooltipDisabled]="!row.allowed"
[ngStyle]="{'cursor': row.allowed ? 'pointer' : ''}" (click)="goToUserAdmin(row)">
[ngStyle]="{'cursor': row.allowed ? 'pointer' : '', 'opacity': row.allowed ? '1' : '0.6'}" (click)="goToUserAdmin(row)">
</mat-row>
</mat-table>
</mat-tab>
......
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