scratch – Blame information for rev

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;
10 border-top: 1px solid #ddd;
11 padding: 8px;
12 }
13 #previews .file-row:nth-child(odd) {
14 background: #f9f9f9;
15 }
16  
17  
18 #total-progress {
19 opacity: 0;
20 transition: opacity 0.3s linear;
21 }
22  
23 /* Hide the progress bar when finished */
24 #previews .file-row.dz-success .progress {
25 opacity: 0;
26 transition: opacity 0.3s linear;
27 }
28  
29 /* Hide the delete button initially */
30 #previews .file-row .delete {
31 display: none;
32 }
33  
34 /* Hide the start and cancel buttons and show the delete button */
35 #previews .file-row.dz-success .start,
36 #previews .file-row.dz-success .cancel {
37 display: none;
38 }
39 #previews .file-row.dz-success .delete {
40 display: block;
41 }