scratch – Blame information for rev 76

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