scratch – Blame information for rev 135

Subversion Repositories:
Rev:
Rev Author Line No. Line
81 office 1 .fileupload-process {
99 office 2 background: whitesmoke;
3 border: 0px solid white;
81 office 4 border-radius: 4px;
5 height: 20px;
6 }
7  
135 office 8 .upload-details-column {
9 width: 50% !important;
10 }
11  
81 office 12 .progress-bar-custom {
13 background: #ff99ff;
14 }
15  
16 #previews {
17 display: table;
18  
19 .file-row {
20 display: table-row;
21  
22 > div {
23 display: table-cell;
24 vertical-align: top;
25 border-top: 1px solid #ddd;
26 padding: 1em;
27 background: #f9f9f9;
28 }
29  
30 &:nth-child(odd) {
31 background: #f9f9f9;
32  
33 /* border-top: 1em solid #ddd; */
34 }
35 }
36 }
37  
38 #uploadpanel {
39 min-height: 320px;
40 border: 2px dashed #F78700;
41 border-radius: 5px;
42 box-sizing: border-box;
43  
44 /* outline-offset: -24px; */
45 background-image: url("../../img/blueprint.png");
46 background-repeat: repeat;
47 }
48  
49 #total-progress {
50 opacity: 0;
51 transition: opacity 0.3s linear;
52 background: #f5f5f5;
53 padding: 0;
54 margin: 0;
55 }
56  
57 /* Hide the progress bar when finished */
58  
59 #previews .file-row {
60 &.dz-success .progress {
61 opacity: 0;
62 transition: opacity 0.3s linear;
63 }
64  
65 .remove {
66 display: none;
67 }
68  
69 &.dz-success {
70 .start, .cancel {
71 opacity: 0.3;
72 }
73  
74 .remove {
75 display: block;
76 }
77 }
78 }
79  
126 office 80 .bootstrap-tagsinput {
81 width: 100% !important;
82 }
83  
128 office 84 .input-group {
85 width: 100% !important;
86 }
81 office 87  
130 office 88 .upload-filename {
128 office 89 width: 250px;
90 white-space: nowrap;
91 overflow: hidden;
92 text-overflow: ellipsis;
93 }
94  
99 office 95 /*# sourceMappingURL=style.css.map */