scratch – Diff between revs 81 and 99

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