scratch – Blame information for rev 99

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