1 | /*------------------------- |
---|
2 | Simple reset |
---|
3 | --------------------------*/ |
---|
4 | *{ |
---|
5 | margin:0; |
---|
6 | padding:0; |
---|
7 | } |
---|
8 | /*------------------------- |
---|
9 | General Styles |
---|
10 | --------------------------*/ |
---|
11 | html{ |
---|
12 | background-color:#ebebec; |
---|
13 | |
---|
14 | background-image:-webkit-radial-gradient(center, #ebebec, #b4b4b4); |
---|
15 | background-image:-moz-radial-gradient(center, #ebebec, #b4b4b4); |
---|
16 | background-image:radial-gradient(center, #ebebec, #b4b4b4); |
---|
17 | |
---|
18 | /* min-height:900px; */ |
---|
19 | } |
---|
20 | |
---|
21 | body{ |
---|
22 | /* font:15px/1.3 Arial, sans-serif; */ |
---|
23 | color: #4f4f4f; |
---|
24 | } |
---|
25 | |
---|
26 | a, a:visited { |
---|
27 | outline:none; |
---|
28 | color:#389dc1; |
---|
29 | } |
---|
30 | |
---|
31 | a:hover{ |
---|
32 | text-decoration:none; |
---|
33 | } |
---|
34 | |
---|
35 | section, footer, header, aside{ |
---|
36 | display: block; |
---|
37 | } |
---|
38 | |
---|
39 | /*---------------------------- |
---|
40 | The file upload form |
---|
41 | -----------------------------*/ |
---|
42 | |
---|
43 | |
---|
44 | #upload{ |
---|
45 | font-family:'PT Sans Narrow', sans-serif; |
---|
46 | background-color:#373a3d; |
---|
47 | |
---|
48 | background-image:-webkit-linear-gradient(top, #373a3d, #313437); |
---|
49 | background-image:-moz-linear-gradient(top, #373a3d, #313437); |
---|
50 | background-image:linear-gradient(top, #373a3d, #313437); |
---|
51 | |
---|
52 | width:550px; |
---|
53 | padding:30px; |
---|
54 | border-radius:3px; |
---|
55 | |
---|
56 | margin:0px auto 0px; |
---|
57 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); |
---|
58 | } |
---|
59 | |
---|
60 | #drop{ |
---|
61 | background-color: #2E3134; |
---|
62 | padding: 40px 50px; |
---|
63 | margin-bottom: 30px; |
---|
64 | border: 20px solid rgba(0, 0, 0, 0); |
---|
65 | border-radius: 3px; |
---|
66 | border-image: url('../img/border-image.png') 25 repeat; |
---|
67 | text-align: center; |
---|
68 | text-transform: uppercase; |
---|
69 | height:250px; |
---|
70 | font-size:16px; |
---|
71 | font-weight:bold; |
---|
72 | color:#7f858a; |
---|
73 | } |
---|
74 | |
---|
75 | #drop a{ |
---|
76 | background-color:#007a96; |
---|
77 | padding:12px 26px; |
---|
78 | color:#fff; |
---|
79 | font-size:14px; |
---|
80 | border-radius:2px; |
---|
81 | cursor:pointer; |
---|
82 | display:inline-block; |
---|
83 | margin-top:12px; |
---|
84 | line-height:1; |
---|
85 | } |
---|
86 | |
---|
87 | #drop a:hover{ |
---|
88 | background-color:#0986a3; |
---|
89 | } |
---|
90 | |
---|
91 | #drop input{ |
---|
92 | display:none; |
---|
93 | } |
---|
94 | |
---|
95 | #upload ul{ |
---|
96 | list-style:none; |
---|
97 | margin:0 -30px; |
---|
98 | border-top:1px solid #2b2e31; |
---|
99 | border-bottom:1px solid #3d4043; |
---|
100 | } |
---|
101 | |
---|
102 | #upload ul li{ |
---|
103 | |
---|
104 | background-color:#333639; |
---|
105 | |
---|
106 | background-image:-webkit-linear-gradient(top, #333639, #303335); |
---|
107 | background-image:-moz-linear-gradient(top, #333639, #303335); |
---|
108 | background-image:linear-gradient(top, #333639, #303335); |
---|
109 | |
---|
110 | border-top:1px solid #3d4043; |
---|
111 | border-bottom:1px solid #2b2e31; |
---|
112 | padding:15px; |
---|
113 | height: 52px; |
---|
114 | |
---|
115 | position: relative; |
---|
116 | } |
---|
117 | |
---|
118 | #upload ul li input{ |
---|
119 | display: none; |
---|
120 | } |
---|
121 | |
---|
122 | #upload ul li p{ |
---|
123 | width: 144px; |
---|
124 | overflow: hidden; |
---|
125 | white-space: nowrap; |
---|
126 | color: #EEE; |
---|
127 | font-size: 16px; |
---|
128 | font-weight: bold; |
---|
129 | position: absolute; |
---|
130 | top: 5px; |
---|
131 | left: 100px; |
---|
132 | } |
---|
133 | |
---|
134 | #upload ul li i{ |
---|
135 | font-weight: normal; |
---|
136 | font-style:normal; |
---|
137 | color:#7f7f7f; |
---|
138 | display:block; |
---|
139 | } |
---|
140 | |
---|
141 | #upload ul li canvas{ |
---|
142 | top: 0px; |
---|
143 | left: 32px; |
---|
144 | position: absolute; |
---|
145 | } |
---|
146 | |
---|
147 | #upload ul li span{ |
---|
148 | width: 15px; |
---|
149 | height: 12px; |
---|
150 | background: url('../img/icons.png') no-repeat; |
---|
151 | position: absolute; |
---|
152 | top: 18px; |
---|
153 | right: 33px; |
---|
154 | cursor:pointer; |
---|
155 | } |
---|
156 | |
---|
157 | #upload ul li.working span{ |
---|
158 | height: 16px; |
---|
159 | background-position: 0 -12px; |
---|
160 | } |
---|
161 | |
---|
162 | #upload ul li.error p{ |
---|
163 | color:red; |
---|
164 | } |
---|
165 | |
---|
166 | |
---|
167 | /*---------------------------- |
---|
168 | The Demo Footer |
---|
169 | -----------------------------*/ |
---|
170 | |
---|
171 | |
---|
172 | footer{ |
---|
173 | background-color: #080808; |
---|
174 | bottom: 0; |
---|
175 | box-shadow: 0 -1px 2px rgba(0,0,0,0.4); |
---|
176 | height: 40px; |
---|
177 | left: 0; |
---|
178 | position: fixed; |
---|
179 | width: 100%; |
---|
180 | z-index: 100000; |
---|
181 | } |
---|
182 | |
---|
183 | footer h2{ |
---|
184 | font-size: 14px; |
---|
185 | font-weight: normal; |
---|
186 | position: absolute; |
---|
187 | top:0; |
---|
188 | left: 50%; |
---|
189 | bottom:0; |
---|
190 | margin-left: -420px; |
---|
191 | padding:13px 20px 0; |
---|
192 | border:1px solid #000; |
---|
193 | border-width:0 1px; |
---|
194 | background-color:rgba(0,0,0,0.6); |
---|
195 | box-shadow:0 0 5px #000 inset; |
---|
196 | line-height: 1; |
---|
197 | margin-top: 0; |
---|
198 | } |
---|
199 | |
---|
200 | footer h2 a{ |
---|
201 | color: #EEEEEE !important; |
---|
202 | text-decoration:none !important; |
---|
203 | } |
---|
204 | |
---|
205 | footer h2 i{ |
---|
206 | font-style:normal; |
---|
207 | color:#888; |
---|
208 | } |
---|
209 | |
---|
210 | #tzine-download{ |
---|
211 | opacity:0.9; |
---|
212 | background-color:#257691; |
---|
213 | font-size:11px; |
---|
214 | text-align:center; |
---|
215 | text-transform:uppercase; |
---|
216 | width:150px; |
---|
217 | height:28px; |
---|
218 | line-height:28px; |
---|
219 | text-decoration:none !important; |
---|
220 | |
---|
221 | display: inline-block; |
---|
222 | border-radius: 2px; |
---|
223 | color: #fff !Important; |
---|
224 | font-weight: bold; |
---|
225 | box-shadow: 0 -1px 2px #1e5e74 inset; |
---|
226 | |
---|
227 | border-top:1px solid #26849c; |
---|
228 | |
---|
229 | text-shadow:1px 1px 1px #1e6176; |
---|
230 | margin-top:6px; |
---|
231 | } |
---|
232 | |
---|
233 | #tzine-download:hover{ |
---|
234 | opacity:1; |
---|
235 | } |
---|
236 | |
---|
237 | #tzine-actions{ |
---|
238 | position:absolute; |
---|
239 | top:0; |
---|
240 | width:500px; |
---|
241 | right:50%; |
---|
242 | margin-right:-420px; |
---|
243 | text-align:right; |
---|
244 | } |
---|
245 | |
---|
246 | #tzine-actions iframe{ |
---|
247 | display: inline-block; |
---|
248 | height: 21px; |
---|
249 | width: 95px; |
---|
250 | position: relative; |
---|
251 | float: left; |
---|
252 | margin-top: 11px; |
---|
253 | } |
---|
254 | |
---|
255 | |
---|
256 | |
---|
257 | |
---|
258 | |
---|
259 | /* --------------------------------Fix something from style.css ---------------------------*/ |
---|
260 | |
---|
261 | /* Bootstrap modified */ |
---|
262 | .dropdown-menu.dropdown-close { |
---|
263 | top: 100%; |
---|
264 | } |
---|
265 | #tools-bar .btn-success, #tools-bar .btn-success:focus, |
---|
266 | #tools-bar .btn-danger, #tools-bar .btn-danger:focus, |
---|
267 | #tools-bar .btn-warning, #tools-bar .btn-warning:focus, |
---|
268 | #tools-bar .btn-info, #tools-bar .btn-info:focus { |
---|
269 | background-color: transparent; |
---|
270 | border-color: transparent; |
---|
271 | } |
---|
272 | #tools-bar .btn, |
---|
273 | #tools-bar .btn-default, |
---|
274 | #tools-bar .btn:focus, |
---|
275 | #tools-bar .btn-default:focus, |
---|
276 | #tools-bar .btn:hover, |
---|
277 | #tools-bar .btn-default:hover { |
---|
278 | background-color: #F5F5F5!important; |
---|
279 | border-color: #F5F5F5; |
---|
280 | } |
---|
281 | /*.btn:hover, .btn-default:hover { |
---|
282 | border: 1px solid #666; |
---|
283 | border-width: 1px !important; |
---|
284 | border-radius: 100px !important; |
---|
285 | }*/ |
---|
286 | #tools-bar .btn { |
---|
287 | color: #666 !important; |
---|
288 | } |
---|
289 | /* End Bootstrap */ |
---|
290 | |
---|
291 | #navigation-bar { |
---|
292 | border-bottom: 1px solid #eee; |
---|
293 | padding: 10px 0; |
---|
294 | } |
---|
295 | .breadcrumb .home-icon { |
---|
296 | color: #9BB8A7; |
---|
297 | } |
---|
298 | @media only screen and (max-width: 991px) { |
---|
299 | .breadcrumb { |
---|
300 | margin-left: 10px; |
---|
301 | } |
---|
302 | } |
---|
303 | .change-file-view { |
---|
304 | padding-right: 10px; |
---|
305 | } |
---|
306 | .change-file-view li { |
---|
307 | cursor: pointer; |
---|
308 | color: #C4C4C4; |
---|
309 | font-size: 16px; |
---|
310 | } |
---|
311 | .change-file-view li:hover { |
---|
312 | color: #989797; |
---|
313 | } |
---|
314 | #file-container UL.vsgrid LI.vscell { |
---|
315 | height: 100px; |
---|
316 | } |
---|
317 | #file-container { |
---|
318 | height: calc(100% - 47px); |
---|
319 | } |
---|
320 | #status-bar { |
---|
321 | color: #666; |
---|
322 | background: #F5F5F5; |
---|
323 | padding: 3px 0 0 20px; |
---|
324 | border-top: 1px #CDCDCD solid; |
---|
325 | } |
---|
326 | #status-bar span:first-child { |
---|
327 | float: right; |
---|
328 | padding-right: 10px; |
---|
329 | } |
---|
330 | |
---|
331 | img[src=''], img:not([src]) { |
---|
332 | opacity:0; |
---|
333 | } |
---|
334 | .btn:focus { |
---|
335 | outline: none !important; |
---|
336 | } |
---|
337 | .preview .modal-content { |
---|
338 | background: transparent; |
---|
339 | border: 0; |
---|
340 | } |
---|
341 | .preview .modal-content .modal-body .bootbox-body { |
---|
342 | margin-top: 5px; |
---|
343 | color: #7F7F7F; |
---|
344 | } |
---|
345 | .preview button.bootbox-close-button { |
---|
346 | float: none; |
---|
347 | position: absolute; |
---|
348 | right: 0; |
---|
349 | font-size: 31px; |
---|
350 | font-weight: 700; |
---|
351 | line-height: 1; |
---|
352 | color: #FFF; |
---|
353 | text-shadow: 0 1px 0 #fff; |
---|
354 | border: 2px solid #FFFFFF; |
---|
355 | background: #000; |
---|
356 | border-radius: 50%; |
---|
357 | opacity: 1; |
---|
358 | z-index: 99; |
---|
359 | padding: 0 6px; |
---|
360 | } |
---|
361 | .preview button.bootbox-close-button:hover, |
---|
362 | .preview button.bootbox-close-button:focus { |
---|
363 | color: #fff; |
---|
364 | text-decoration: none; |
---|
365 | cursor: pointer; |
---|
366 | filter: alpha(opacity=100); |
---|
367 | opacity: 1; |
---|
368 | outline: 0; |
---|
369 | } |
---|
370 | .preview .modal-content .modal-footer { |
---|
371 | display: none; |
---|
372 | } |
---|
373 | .vscell { |
---|
374 | cursor: pointer; |
---|
375 | } |
---|
376 | .vstree li.home { |
---|
377 | background: url(../images/icon-set/cloud-16.png) left top no-repeat |
---|
378 | } |
---|
379 | .vstree li.directory { |
---|
380 | background: url(../images/icon-set/folder-16.png) left top no-repeat |
---|
381 | } |
---|
382 | #file-container ul.vsgrid li.vscell.selected div[class^="icon-"], |
---|
383 | #file-container ul.vsgrid li.vscell.selected div.file-name { |
---|
384 | background-color: #E4E4E4; |
---|
385 | } |
---|
386 | #file-container ul.vsgrid li.vscell div.icon-xvl { |
---|
387 | background-image: url(../images/icon-set/violet.png) !important; |
---|
388 | } |
---|
389 | #file-container ul.vsgrid li.vscell div.icon-directory { |
---|
390 | background-image: url(../images/icon-set/folder.png) !important; |
---|
391 | } |
---|
392 | #file-container ul.vsgrid li.vscell div.icon-xlsx { |
---|
393 | background-image: url(../images/icon-set/xlsx.png) !important; |
---|
394 | } |
---|
395 | #file-container ul.vsgrid li.vscell div.icon-txt { |
---|
396 | background-image: url(../images/icon-set/txt.png) !important; |
---|
397 | } |
---|
398 | #file-container ul.vsgrid li.vscell div.icon-mp4, |
---|
399 | #file-container ul.vsgrid li.vscell div.icon-flv { |
---|
400 | background-image: url(../images/icon-set/video.png) !important; |
---|
401 | } |
---|
402 | /*------------ File Manager: Grid View ----- */ |
---|
403 | #file-container ul.vsgrid li.vscell div[class^="icon-"] { |
---|
404 | width:64px; |
---|
405 | height:54px; |
---|
406 | padding: 5px; |
---|
407 | background-repeat: no-repeat; |
---|
408 | background-position: center; |
---|
409 | } |
---|
410 | #file-container ul.vsgrid li.vscell div[class^="icon-"] img { |
---|
411 | height: 100%; |
---|
412 | width: 100%; |
---|
413 | border: 1px solid #B8B8B8; |
---|
414 | } |
---|
415 | #file-container ul.vsgrid li.vscell div[class^="icon-"]:not([class="icon-directory"]) img:not([src]), |
---|
416 | #file-container ul.vsgrid li.vscell div[class^="icon-"]:not([class="icon-directory"]):empty { |
---|
417 | background-image: url(../images/icon-set/file.png); |
---|
418 | } |
---|
419 | |
---|
420 | /*------------ File Manager: List View ----- */ |
---|
421 | .list-view#file-container { |
---|
422 | padding: 0; |
---|
423 | } |
---|
424 | .list-view#file-container > ul.vsgrid { |
---|
425 | padding: 10px 0 10px 10px; |
---|
426 | } |
---|
427 | .list-view#file-container > ul.vsgrid > li.vscell { |
---|
428 | height: auto; |
---|
429 | padding: 10px 2px; |
---|
430 | border-bottom: 1px solid #eee; |
---|
431 | text-align: left; |
---|
432 | float: none; |
---|
433 | width: 100%; |
---|
434 | } |
---|
435 | .list-view#file-container > ul.vsgrid > li.vscell:hover, |
---|
436 | .list-view#file-container > ul.vsgrid > li.vscell.selected { |
---|
437 | background: rgba(87, 199, 214, 0.07); |
---|
438 | } |
---|
439 | .list-view#file-container > ul.vsgrid > li.vscell.selected { |
---|
440 | background: #E3F2FF; |
---|
441 | } |
---|
442 | .list-view#file-container ul.vsgrid li.vscell.selected div[class^="icon-"], |
---|
443 | .list-view#file-container ul.vsgrid li.vscell.selected div.file-name { |
---|
444 | background-color: transparent; |
---|
445 | } |
---|
446 | .list-view#file-container > ul.vsgrid > li.vscell > div.icon-directory { |
---|
447 | background-size: cover; |
---|
448 | } |
---|
449 | .list-view#file-container > ul.vsgrid > li.vscell > div.file-name { |
---|
450 | padding: 5px 15px; |
---|
451 | text-align: left; |
---|
452 | } |
---|
453 | .list-view#file-container > ul.vsgrid > li.vscell > div.file-name a:hover{ |
---|
454 | text-decoration: underline; |
---|
455 | } |
---|
456 | .list-view#file-container ul.vsgrid li.vscell div[class^="icon-"] img { |
---|
457 | padding: 0; |
---|
458 | } |
---|
459 | .list-view#file-container > ul.vsgrid > li.vscell > div[class^="icon-"] { |
---|
460 | width: 28px; |
---|
461 | height: 28px; |
---|
462 | float: left; |
---|
463 | background-size: cover; |
---|
464 | } |
---|