scratch – Blame information for rev 99

Subversion Repositories:
Rev:
Rev Author Line No. Line
81 office 1 #previews {
2 display: table;
3  
4 .file-row {
5 display: table-row;
6  
7 > div {
8 display: table-cell;
9 vertical-align: top;
10 border-top: 1px solid #ddd;
11 padding: 1em;
12 background: #f9f9f9;
13 }
14  
15 &:nth-child(odd) {
16 background: #f9f9f9;
17  
18 /* border-top: 1em solid #ddd; */
19 }
20 }
21 }
22  
23 #editorpanel {
24 border: 2pt solid #ecf0f1;
25 }
26  
27 #total-progress {
28 opacity: 0;
29 transition: opacity 0.3s linear;
30 }
31  
32 /* Hide the progress bar when finished */
33  
34 #previews .file-row {
35 &.dz-success .progress {
36 opacity: 0;
37 transition: opacity 0.3s linear;
38 }
39  
40 .remove {
41 display: none;
42 }
43  
44 &.dz-success {
45 .start, .cancel {
46 opacity: 0.3;
47 }
48  
49 .remove {
50 display: block;
51 }
52 }
53 }
54  
55 /* Hide the delete button initially */
99 office 56 /* Hide the start and cancel buttons and show the delete button */
81 office 57  
99 office 58 /*# sourceMappingURL=style.css.map */