scratch – Blame information for rev 74

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