2018-07-12 16:43:17 +00:00
|
|
|
@import (reference) './colortheme-all.less';
|
2018-07-12 17:13:04 +00:00
|
|
|
@import (reference) './modal.less';
|
2017-09-04 13:09:54 +00:00
|
|
|
|
|
|
|
.fileupload_main () {
|
|
|
|
/* Upload status table */
|
2018-07-12 17:13:04 +00:00
|
|
|
modal_main();
|
2017-09-04 13:09:54 +00:00
|
|
|
#cp-fileupload {
|
|
|
|
.modal_base();
|
|
|
|
position: absolute;
|
|
|
|
left: 10vw; right: 10vw;
|
|
|
|
bottom: 10vh;
|
|
|
|
opacity: 0.9;
|
|
|
|
box-sizing: border-box;
|
2017-09-13 15:43:17 +00:00
|
|
|
z-index: 1000000; //Z file upload table container
|
2017-09-04 13:09:54 +00:00
|
|
|
display: none;
|
|
|
|
#cp-fileupload-table {
|
|
|
|
width: 80vw;
|
|
|
|
tr:nth-child(1) {
|
|
|
|
background-color: darken(@colortheme_modal-bg, 20%);
|
|
|
|
td {
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 0.25em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@upload_pad_h: 0.25em;
|
|
|
|
@upload_pad_v: 0.5em;
|
|
|
|
|
|
|
|
td {
|
|
|
|
padding: @upload_pad_h @upload_pad_v;
|
|
|
|
}
|
2017-09-25 10:44:05 +00:00
|
|
|
.cp-fileupload-table-link {
|
|
|
|
.fa {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
2017-09-04 13:09:54 +00:00
|
|
|
.cp-fileupload-table-progress {
|
|
|
|
width: 200px;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.cp-fileupload-table-progress-container {
|
|
|
|
position: absolute;
|
|
|
|
width: 0px;
|
|
|
|
left: @upload_pad_v;
|
|
|
|
top: @upload_pad_h; bottom: @upload_pad_h;
|
|
|
|
background-color: rgba(0,0,255,0.3);
|
2017-09-13 15:43:17 +00:00
|
|
|
z-index: -1; //Z file upload progress container
|
2017-09-04 13:09:54 +00:00
|
|
|
}
|
|
|
|
.cp-fileupload-table-cancel { text-align: center; }
|
|
|
|
.fa.cancel {
|
|
|
|
color: rgb(255, 0, 115);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|