scratch – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
2 office 1 #previews {
2 display: table;
3 }
4 #previews .file-row {
5 display: table-row;
6 }
7 #previews .file-row > div {
8 display: table-cell;
9 vertical-align: top;
20 office 10 border-top: 1em solid #ddd;
11 padding: 1em;
2 office 12 }
13 #previews .file-row:nth-child(odd) {
14 background: #f9f9f9;
15 }
16  
17 #total-progress {
18 opacity: 0;
19 transition: opacity 0.3s linear;
20 }
21  
22 /* Hide the progress bar when finished */
23 #previews .file-row.dz-success .progress {
24 opacity: 0;
25 transition: opacity 0.3s linear;
26 }
27  
28 /* Hide the delete button initially */
29 #previews .file-row .delete {
30 display: none;
31 }
32  
33 /* Hide the start and cancel buttons and show the delete button */
34 #previews .file-row.dz-success .start,
35 #previews .file-row.dz-success .cancel {
20 office 36 opacity: 0.3;
2 office 37 }
38 #previews .file-row.dz-success .delete {
39 display: block;
40 }