2018-11-14 10:55:11 +08:00
|
|
|
.file-uploader-container {
|
|
|
|
display: flex;
|
2019-02-20 11:54:25 +08:00
|
|
|
/* flex: 1; */
|
2018-11-14 10:55:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.file-uploader {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 99999px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.uploader-list-view {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
position: fixed;
|
|
|
|
right: 1px;
|
|
|
|
bottom: 1px;
|
|
|
|
width: 35rem;
|
2019-01-08 11:26:20 +08:00
|
|
|
height: 20rem;
|
2018-11-14 10:55:11 +08:00
|
|
|
border: 1px solid #ddd;
|
|
|
|
border-radius: 3px;
|
|
|
|
box-shadow: 0 0 6px #ddd;
|
2018-12-21 15:40:59 +08:00
|
|
|
background-color: #fff;
|
2019-01-08 11:53:53 +08:00
|
|
|
z-index: 1050;
|
2018-11-14 10:55:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.uploader-list-header {
|
|
|
|
background-color: #f0f0f0;
|
|
|
|
padding: 0.375rem 0.625rem;
|
|
|
|
font-size: 1rem;
|
|
|
|
line-height: 1.5;
|
|
|
|
color: #322;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
min-height: 2.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.uploader-list-header .uploader-options span{
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 0.25rem;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #b8b8b8;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.uploader-list-content {
|
2019-08-15 14:52:08 +08:00
|
|
|
padding: 0rem 1rem 1.25rem;
|
2018-11-14 10:55:11 +08:00
|
|
|
background-color: #fff;
|
2018-11-28 12:41:49 +08:00
|
|
|
overflow: auto;
|
2019-01-08 11:26:20 +08:00
|
|
|
}
|
|
|
|
|
2019-08-15 14:52:08 +08:00
|
|
|
.file-upload-item {
|
|
|
|
height: 44px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-progress .progress-container {
|
|
|
|
height: 24px;
|
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-progress .progress {
|
|
|
|
height: 5px;
|
2019-01-08 11:26:20 +08:00
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
|
2019-08-15 14:52:08 +08:00
|
|
|
.upload-progress .progress .progress-bar {
|
2019-01-08 11:26:20 +08:00
|
|
|
color: #e83;
|
2019-02-12 10:50:02 +08:00
|
|
|
}
|
|
|
|
|
2019-08-15 14:52:08 +08:00
|
|
|
.upload-progress .progress-text {
|
|
|
|
margin-top: 2px;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 12px;
|
|
|
|
color: #666666;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-operation .saving {
|
2019-02-12 10:50:02 +08:00
|
|
|
color: #ee8204;
|
|
|
|
word-wrap: break-word;
|
2019-08-15 14:52:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.disabled-link {
|
|
|
|
color: #999999;
|
2018-11-14 10:55:11 +08:00
|
|
|
}
|