scratch – Diff between revs 81 and 99

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 81 Rev 99
1 .fileupload-process { 1 .fileupload-process {
2 background: rgba(245, 245, 245, 1); 2 background: whitesmoke;
3 border: 0px solid rgba(255, 255, 255, 1); 3 border: 0px solid white;
4 border-radius: 4px; 4 border-radius: 4px;
5 height: 20px; 5 height: 20px;
6 } 6 }
7   7  
8 .progress-bar-custom { 8 .progress-bar-custom {
9 background: #ff99ff; 9 background: #ff99ff;
10 } 10 }
11   11  
12 #previews { 12 #previews {
13 display: table; 13 display: table;
14   14  
15 .file-row { 15 .file-row {
16 display: table-row; 16 display: table-row;
17   17  
18 > div { 18 > div {
19 display: table-cell; 19 display: table-cell;
20 vertical-align: top; 20 vertical-align: top;
21 border-top: 1px solid #ddd; 21 border-top: 1px solid #ddd;
22 padding: 1em; 22 padding: 1em;
23 background: #f9f9f9; 23 background: #f9f9f9;
24 } 24 }
25   25  
26 &:nth-child(odd) { 26 &:nth-child(odd) {
27 background: #f9f9f9; 27 background: #f9f9f9;
28   28  
29 /* border-top: 1em solid #ddd; */ 29 /* border-top: 1em solid #ddd; */
30 } 30 }
31 } 31 }
32 } 32 }
33   33  
34 #uploadpanel { 34 #uploadpanel {
35 min-height: 320px; 35 min-height: 320px;
36 border: 2px dashed #F78700; 36 border: 2px dashed #F78700;
37 border-radius: 5px; 37 border-radius: 5px;
38 box-sizing: border-box; 38 box-sizing: border-box;
39   39  
40 /* outline-offset: -24px; */ 40 /* outline-offset: -24px; */
41 background-image: url("../../img/blueprint.png"); 41 background-image: url("../../img/blueprint.png");
42 background-repeat: repeat; 42 background-repeat: repeat;
43 } 43 }
44   44  
45 #total-progress { 45 #total-progress {
46 opacity: 0; 46 opacity: 0;
47 transition: opacity 0.3s linear; 47 transition: opacity 0.3s linear;
48 background: #f5f5f5; 48 background: #f5f5f5;
49 padding: 0; 49 padding: 0;
50 margin: 0; 50 margin: 0;
51 } 51 }
52   52  
53 /* Hide the progress bar when finished */ 53 /* Hide the progress bar when finished */
54   54  
55 #previews .file-row { 55 #previews .file-row {
56 &.dz-success .progress { 56 &.dz-success .progress {
57 opacity: 0; 57 opacity: 0;
58 transition: opacity 0.3s linear; 58 transition: opacity 0.3s linear;
59 } 59 }
60   60  
61 .remove { 61 .remove {
62 display: none; 62 display: none;
63 } 63 }
64   64  
65 &.dz-success { 65 &.dz-success {
66 .start, .cancel { 66 .start, .cancel {
67 opacity: 0.3; 67 opacity: 0.3;
68 } 68 }
69   69  
70 .remove { 70 .remove {
71 display: block; 71 display: block;
72 } 72 }
73 } 73 }
74 } 74 }
75   75  
76 /* Hide the delete button initially */ 76 /* Hide the delete button initially */
77   -  
78 /* Hide the start and cancel buttons and show the delete button */ 77 /* Hide the start and cancel buttons and show the delete button */
-   78  
-   79 /*# sourceMappingURL=style.css.map */
79   80