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

fix css administration

parent 93236a76
No related branches found
No related tags found
No related merge requests found
...@@ -20,48 +20,48 @@ ...@@ -20,48 +20,48 @@
</div> </div>
<mat-card *ngIf="!loading" class="card-app-content"> <mat-card *ngIf="!loading" class="card-app-content">
<div class="row adminArea"> <div class="row adminArea">
<mat-card class="col-md-6 adminArea_1" *ngIf="organisationServices"> <div class="col-md-6 adminArea_1" *ngIf="organisationServices">
<div style="font-size: 20px; <div style="font-size: 20px;
font-weight: bolder; font-weight: bolder;
opacity: 0.2; opacity: 0.2;
text-align: center">ORGANISATION</div> text-align: center">ORGANISATION</div>
<button style="white-space:inherit;height: 130px;line-height:20px;" class="col-md-4 col-xs-6" mat-button color="primary" matTooltip="{{modService.comment}}" *ngFor="let modService of organisationServices" <button style="white-space:inherit;height: 100px;line-height:20px;" class="col-md-4 col-xs-6" mat-button color="primary" matTooltip="{{modService.comment}}" *ngFor="let modService of organisationServices"
(click)="goToSpecifiedAdministration(modService)"> (click)="goToSpecifiedAdministration(modService)">
<i class="{{modService.style}} fa-4x"></i> <i class="{{modService.style}} fa-4x"></i>
<br/>{{modService.name}}</button> <br/>{{modService.name}}</button>
</mat-card> </div>
<mat-card class="col-md-6 adminArea_2" *ngIf="productionServices"> <div class="col-md-6 adminArea_2" *ngIf="productionServices">
<div style="font-size: 20px; <div style="font-size: 20px;
font-weight: bolder; font-weight: bolder;
opacity: 0.2; opacity: 0.2;
text-align: center">PRODUCTION</div> text-align: center">PRODUCTION</div>
<button style="white-space:inherit;height: 130px;line-height:20px;" class="col-md-4 col-xs-6" mat-button color="primary" matTooltip="{{modService.comment}}" *ngFor="let modService of productionServices" <button style="white-space:inherit;height: 100px;line-height:20px;" class="col-md-4 col-xs-6" mat-button color="primary" matTooltip="{{modService.comment}}" *ngFor="let modService of productionServices"
(click)="goToSpecifiedAdministration(modService)"> (click)="goToSpecifiedAdministration(modService)">
<i class="{{modService.style}} fa-4x"></i> <i class="{{modService.style}} fa-4x"></i>
<br/>{{modService.name}}</button> <br/>{{modService.name}}</button>
</mat-card> </div>
<mat-card class="col-md-6 adminArea_3" *ngIf="classementServices"> <div class="col-md-6 adminArea_3" *ngIf="classementServices">
<div style="font-size: 20px; <div style="font-size: 20px;
font-weight: bolder; font-weight: bolder;
opacity: 0.2; opacity: 0.2;
text-align: center">CLASSEMENT</div> text-align: center">CLASSEMENT</div>
<button style="white-space:inherit;height: 130px;line-height:20px;" class="col-md-4 col-xs-6" mat-button color="primary" matTooltip="{{modService.comment}}" *ngFor="let modService of classementServices" <button style="white-space:inherit;height: 100px;line-height:20px;" class="col-md-4 col-xs-6" mat-button color="primary" matTooltip="{{modService.comment}}" *ngFor="let modService of classementServices"
(click)="goToSpecifiedAdministration(modService)"> (click)="goToSpecifiedAdministration(modService)">
<i class="{{modService.style}} fa-4x"></i> <i class="{{modService.style}} fa-4x"></i>
<br/>{{modService.name}}</button> <br/>{{modService.name}}</button>
</mat-card> </div>
<mat-card class="col-md-6 adminArea_4" *ngIf="supervisionServices"> <div class="col-md-6 adminArea_4" *ngIf="supervisionServices">
<div style="font-size: 20px; <div style="font-size: 20px;
font-weight: bolder; font-weight: bolder;
opacity: 0.2; opacity: 0.2;
text-align: center">SUPERVISION</div> text-align: center">SUPERVISION</div>
<button style="white-space:inherit;height: 130px;line-height:20px;" class="col-md-4 col-xs-6" mat-button color="primary" matTooltip="{{modService.comment}}" *ngFor="let modService of supervisionServices" <button style="white-space:inherit;height: 100px;line-height:20px;" class="col-md-4 col-xs-6" mat-button color="primary" matTooltip="{{modService.comment}}" *ngFor="let modService of supervisionServices"
(click)="goToSpecifiedAdministration(modService)"> (click)="goToSpecifiedAdministration(modService)">
<i class="{{modService.style}} fa-4x"></i> <i class="{{modService.style}} fa-4x"></i>
<br/>{{modService.name}}</button> <br/>{{modService.name}}</button>
</mat-card> </div>
</div> </div>
</mat-card> </mat-card>
</mat-sidenav-content> </mat-sidenav-content>
......
This diff is collapsed.
...@@ -78,6 +78,7 @@ $theme: mat-light-theme($primary, $accent, $warn); ...@@ -78,6 +78,7 @@ $theme: mat-light-theme($primary, $accent, $warn);
} }
.adminArea_1{ .adminArea_1{
flex: 1;
overflow: hidden; overflow: hidden;
padding:20px; padding:20px;
} }
......
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