scratch

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 31  →  ?path2? @ 32
/quickload/css/text/style.css
@@ -0,0 +1,52 @@
#previews {
display: table;
}
#previews .file-row {
display: table-row;
}
#previews .file-row > div {
display: table-cell;
vertical-align: top;
border-top: 1px solid #ddd;
padding: 1em;
background: #f9f9f9;
}
#previews .file-row:nth-child(odd) {
background: #f9f9f9;
/* border-top: 1em solid #ddd; */
}
 
#editorpanel {
/*min-height: 240px;*/
border: 2px dashed #F78700;
border-radius: 5px;
box-sizing: border-box;
/* outline-offset: -24px; */
/*background-image: url("../../img/blueprint.png");
background-repeat: repeat;*/
}
 
#total-progress {
opacity: 0;
transition: opacity 0.3s linear;
}
 
/* Hide the progress bar when finished */
#previews .file-row.dz-success .progress {
opacity: 0;
transition: opacity 0.3s linear;
}
 
/* Hide the delete button initially */
#previews .file-row .remove {
display: none;
}
 
/* Hide the start and cancel buttons and show the delete button */
#previews .file-row.dz-success .start,
#previews .file-row.dz-success .cancel {
opacity: 0.3;
}
#previews .file-row.dz-success .remove {
display: block;
}