You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
567 B
38 lines
567 B
3 years ago
|
.uploadbox {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
position: relative;
|
||
|
width: 75%;
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
|
||
|
button {
|
||
|
margin-bottom: 8px;
|
||
|
width: 110px;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
opacity: 0;
|
||
|
width: 110px;
|
||
|
height: 32px;
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
margin-bottom: 0;
|
||
|
li{
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
li:hover {
|
||
|
text-decoration: underline;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
}
|
||
|
}
|