Fixed bug on button attach_file

This commit is contained in:
apapachristou 2019-05-29 16:44:18 +03:00
parent 59c347f88c
commit 87d3c89476
2 changed files with 12 additions and 1 deletions

View File

@ -4,7 +4,7 @@
<h4>{{'DMP-UPLOAD.TITLE' | translate}}</h4>
</div>
<div class="col-auto">
<button mat-icon-button class="col-auto" (click)="fileInput.click()" type="button">
<button class="col-auto attach-file" (click)="fileInput.click()" type="button">
<mat-icon color="primary">attach_file</mat-icon>
</button>
<input class="hidden" #fileInput type="file" (change)="uploadFile($event)" accept="text/xml">

View File

@ -19,3 +19,14 @@
margin: -4px;
}
}
.attach-file {
border: none;
color: #aaaaaa;
cursor: pointer;
background-color: #ffffff00;
}
.attach-file :hover {
color: #667eff
}