scratch – Blame information for rev 21

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