Commit 64bf86d3 authored by Mathias Chouet's avatar Mathias Chouet :spaghetti:
Browse files

Curseur "pointer" sur les champs d'upload de fichiers

Showing with 6 additions and 2 deletions
+6 -2
......@@ -88,7 +88,7 @@
<div fxHide.xs fxFlex.gt-xs="0 0 16px"></div>
<mat-form-field class="values-file" fxFlex.gt-xs="1 0 auto" fxFlex.lt-sm="1 0 100%">
<mat-form-field class="values-file file-input-field" fxFlex.gt-xs="1 0 auto" fxFlex.lt-sm="1 0 100%">
<ngx-mat-file-input #valuesFile [placeholder]="uitextImportFile"
(change)="onFileSelected($event)" formControlName="file">
</ngx-mat-file-input>
......
......@@ -4,7 +4,7 @@
<div mat-dialog-content>
<mat-form-field>
<mat-form-field class="file-input-field">
<ngx-mat-file-input id="session-file-input" #sessionFile formControlName="file"[placeholder]="uitextLoadSessionFilename"
(change)="onFileSelected($event)"></ngx-mat-file-input>
<button mat-icon-button matSuffix *ngIf="!sessionFile.empty" (click)="sessionFile.clear($event)">
......
......@@ -44,6 +44,10 @@ mat-form-field {
}
}
.file-input-field {
cursor: pointer;
}
.eight-em-bottom-padding {
padding-bottom: 8em;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment