mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 09:53:28 +02:00
41 lines
684 B
CSS
41 lines
684 B
CSS
.stf-upload .btn-file {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.stf-upload .btn-file input[type=file] {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
min-width: 100%;
|
|
min-height: 100%;
|
|
font-size: 999px;
|
|
text-align: right;
|
|
opacity: 0;
|
|
outline: none;
|
|
background: white;
|
|
cursor: inherit;
|
|
display: block;
|
|
}
|
|
|
|
.stf-upload .drop-area {
|
|
text-align: center;
|
|
color: #b7b7b7;
|
|
padding: 10px;
|
|
border: 3px #ccc dashed;
|
|
border-radius: 3px;
|
|
background-color: #f6f6f6;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.stf-upload .drop-area .drop-area-text {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.stf-upload .dragover {
|
|
border-color: #157afb !important;
|
|
}
|
|
|
|
.stf-upload .upload-status {
|
|
margin-top: 15px;
|
|
} |