2019-11-13 17:46:25 +09:00
|
|
|
@mixin ellipsis($row) {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
@if $row == 1 {
|
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
|
|
|
word-wrap: normal;
|
|
|
|
} @else if $row >= 2 {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: $row;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-05 13:46:17 +09:00
|
|
|
.ucap-file-upload-queue-container {
|
2019-10-21 13:36:58 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2019-11-13 17:46:25 +09:00
|
|
|
.file-upload-item {
|
|
|
|
min-width: 200px;
|
2019-11-20 17:31:08 +09:00
|
|
|
margin: 0 1%;
|
2019-11-13 17:46:25 +09:00
|
|
|
margin-bottom: 10px;
|
2019-11-20 17:31:08 +09:00
|
|
|
width: 48%;
|
2019-11-13 17:46:25 +09:00
|
|
|
border-radius: 3px;
|
2019-11-20 17:31:08 +09:00
|
|
|
background-color:#f9f9f9;
|
|
|
|
border:1px solid #dddddd;
|
2019-11-13 17:46:25 +09:00
|
|
|
.file-upload-info {
|
|
|
|
padding: 10px;
|
|
|
|
svg {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
.file-upload-name {
|
2019-11-20 17:31:08 +09:00
|
|
|
height: 20px;
|
2019-11-13 17:46:25 +09:00
|
|
|
@include ellipsis(2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.file-upload-progress {
|
|
|
|
padding: 6px 10px;
|
|
|
|
}
|
|
|
|
}
|
2019-10-21 13:36:58 +09:00
|
|
|
}
|