Skip to content
Snippets Groups Projects
Commit 3c08bbe6 authored by Pegane Nestor's avatar Pegane Nestor
Browse files

FEAT #287 css modified for columnn priority_default

parent 99d78a7f
No related branches found
No related tags found
No related merge requests found
...@@ -77,14 +77,14 @@ ...@@ -77,14 +77,14 @@
</mat-cell> </mat-cell>
</ng-container> </ng-container>
<ng-container matColumnDef="default_priority"> <ng-container matColumnDef="default_priority">
<mat-header-cell *matHeaderCellDef mat-sort-header [class.hide-for-mobile]="mobileQuery.matches">{{lang.defaultPriority}}</mat-header-cell> <mat-header-cell *matHeaderCellDef mat-sort-header [class.hide-for-mobile]="mobileQuery.matches" >{{lang.defaultPriority}}</mat-header-cell>
<mat-cell *matCellDef="let element" [class.hide-for-mobile]="mobileQuery.matches"> <mat-cell *matCellDef="let element" [class.hide-for-mobile]="mobileQuery.matches">
<span *ngIf="element.default_priority" color="primary" class="fa fa-check fa-2x"></span> <span *ngIf="element.default_priority" color="primary" class="fa fa-check fa-2x"></span>
</mat-cell> </mat-cell>
</ng-container> </ng-container>
<ng-container matColumnDef="actions"> <ng-container matColumnDef="actions">
<mat-header-cell *matHeaderCellDef></mat-header-cell> <mat-header-cell *matHeaderCellDef></mat-header-cell>
<mat-cell *matCellDef="let element" style="text-align: right;"> <mat-cell *matCellDef="let element" style="text-align:right;">
<button mat-icon-button color="warn" matTooltip="{{lang.delete}}" (click)="$event.stopPropagation();deletePriority(element.id)"> <button mat-icon-button color="warn" matTooltip="{{lang.delete}}" (click)="$event.stopPropagation();deletePriority(element.id)">
<mat-icon class="fa fa-trash fa-2x" aria-hidden="true"></mat-icon> <mat-icon class="fa fa-trash fa-2x" aria-hidden="true"></mat-icon>
</button> </button>
......
...@@ -309,4 +309,14 @@ h1.admin-app-name { ...@@ -309,4 +309,14 @@ h1.admin-app-name {
.headerMaarch.mat-menu-panel { .headerMaarch.mat-menu-panel {
background: #135f7f !important; background: #135f7f !important;
}
.mat-column-default_priority {
display:flex;
justify-content:center;
}
.mat-column-working_days {
display:flex;
justify-content:right;
} }
\ No newline at end of file
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