scratch

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 80  →  ?path2? @ 81
/css/text/style.css
@@ -1,46 +1,36 @@
#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; */
}
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 {
border: 2pt solid #ecf0f1;
}
border: 2pt solid #ecf0f1; }
 
#total-progress {
opacity: 0;
transition: opacity 0.3s linear;
}
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;
}
opacity: 0;
transition: opacity 0.3s linear; }
#previews .file-row .remove {
display: none; }
#previews .file-row.dz-success .start, #previews .file-row.dz-success .cancel {
opacity: 0.3; }
#previews .file-row.dz-success .remove {
display: block; }
 
/* Hide the delete button initially */
#previews .file-row .remove {
display: none;
}
/* Hide the start and cancel buttons and show the delete button */
 
/* 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;
}
/*# sourceMappingURL=style.css.map */
/css/text/style.css.map
@@ -0,0 +1,7 @@
{
"version": 3,
"mappings": "AAAA,SAAU;EACR,OAAO,EAAE,KAAK;EAEd,mBAAU;IACR,OAAO,EAAE,SAAS;IAElB,yBAAM;MACJ,OAAO,EAAE,UAAU;MACnB,cAAc,EAAE,GAAG;MACnB,UAAU,EAAE,cAAc;MAC1B,OAAO,EAAE,GAAG;MACZ,UAAU,EAAE,OAAO;IAGrB,kCAAiB;MACf,UAAU,EAAE,OAAO;MAEnB,iCAAiC;;AAKvC,YAAa;EACX,MAAM,EAAE,iBAAiB;;AAG3B,eAAgB;EACd,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,mBAAmB;;AAGjC,yCAAyC;AAGvC,wCAAuB;EACrB,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,mBAAmB;AAGjC,2BAAQ;EACN,OAAO,EAAE,IAAI;AAIb,6EAAgB;EACd,OAAO,EAAE,GAAG;AAGd,sCAAQ;EACN,OAAO,EAAE,KAAK;;AAKpB,sCAAsC;AAEtC,kEAAkE",
"sources": ["style.scss"],
"names": [],
"file": "style.css"
}
/css/text/style.scss
@@ -0,0 +1,57 @@
#previews {
display: table;
 
.file-row {
display: table-row;
 
> div {
display: table-cell;
vertical-align: top;
border-top: 1px solid #ddd;
padding: 1em;
background: #f9f9f9;
}
 
&:nth-child(odd) {
background: #f9f9f9;
 
/* border-top: 1em solid #ddd; */
}
}
}
 
#editorpanel {
border: 2pt solid #ecf0f1;
}
 
#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;
}
 
.remove {
display: none;
}
 
&.dz-success {
.start, .cancel {
opacity: 0.3;
}
 
.remove {
display: block;
}
}
}
 
/* Hide the delete button initially */
 
/* Hide the start and cancel buttons and show the delete button */