scratch – Blame information for rev 81

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