Fix layout of file input

[type=file] input is hidden now by opacity:0 css style.
But it still overlaps the input label and warning tooltip.
This commit fixed this by hiding the input with display:none.

Closes-Bug: #1571641

Change-Id: Ia24586289c7fe775c6b052f390a99f6e774255a2
This commit is contained in:
Julia Aranovich 2016-04-19 17:12:59 +03:00 committed by Vitaly Kramskikh
parent 090652ac79
commit f001c87b64
1 changed files with 1 additions and 1 deletions

View File

@ -1219,7 +1219,7 @@ input[type=range] {
float: left;
}
input[type=file] {
opacity: 0;
display: none;
position: absolute;
}
&:not(.disabled) input.file-name[readonly] {