scratch – Blame information for rev 32

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