1 | body {
|
---|
2 | background: #e0dfde;
|
---|
3 | }
|
---|
4 |
|
---|
5 | input {
|
---|
6 | margin: 0;
|
---|
7 | }
|
---|
8 |
|
---|
9 | input[type="radio"], input[type="checkbox"], label {
|
---|
10 | cursor: pointer;
|
---|
11 | }
|
---|
12 |
|
---|
13 | input[type="text"] {
|
---|
14 | border: 1px solid #d3d3d3;
|
---|
15 | background: #fff;
|
---|
16 | padding: 2px;
|
---|
17 | margin: 0;
|
---|
18 | border-radius: 4px;
|
---|
19 | -moz-border-radius: 4px;
|
---|
20 | -webkit-border-radius: 4px;
|
---|
21 | box-shadow: 0 -1px 0 rgba(0,0,0,0.5);
|
---|
22 | -moz-box-shadow: 0 -1px 0 rgba(0,0,0,0.5);
|
---|
23 | -webkit-box-shadow: 0 -1px 0 rgba(0,0,0,0.5);
|
---|
24 | outline-width: 0;
|
---|
25 | }
|
---|
26 |
|
---|
27 | input[type="text"]:hover {
|
---|
28 | box-shadow: 0 -1px 0 rgba(0,0,0,0.2);
|
---|
29 | -moz-box-shadow: 0 -1px 0 rgba(0,0,0,0.2);
|
---|
30 | -webkit-box-shadow: 0 -1px 0 rgba(0,0,0,0.2);
|
---|
31 | }
|
---|
32 |
|
---|
33 | input[type="text"]:focus {
|
---|
34 | border-color: #3687e2;
|
---|
35 | box-shadow: 0 0 3px rgba(54,135,226,1);
|
---|
36 | -moz-box-shadow: 0 0 3px rgba(54,135,226,1);
|
---|
37 | -webkit-box-shadow: 0 0 3px rgba(54,135,226,1);
|
---|
38 | }
|
---|
39 |
|
---|
40 | input[type="button"], input[type="submit"], input[type="reset"], button {
|
---|
41 | outline-width: 0;
|
---|
42 | background: #edeceb;
|
---|
43 | border: 1px solid #fff;
|
---|
44 | border-radius: 5px;
|
---|
45 | -moz-border-radius: 5px;
|
---|
46 | -webkit-border-radius: 5px;
|
---|
47 | box-shadow: 0 1px 1px rgba(0,0,0,0.6);
|
---|
48 | -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.6);
|
---|
49 | -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.6);
|
---|
50 | color: #222;
|
---|
51 | }
|
---|
52 |
|
---|
53 | input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover, button:hover {
|
---|
54 | box-shadow: 0 0 1px rgba(0,0,0,0.6);
|
---|
55 | -moz-box-shadow: 0 0 1px rgba(0,0,0,0.6);
|
---|
56 | -webkit-box-shadow: 0 0 1px rgba(0,0,0,0.6);
|
---|
57 | }
|
---|
58 |
|
---|
59 | input[type="button"]:focus, input[type="submit"]:focus, input[type="reset"]:focus, button:focus {
|
---|
60 | box-shadow: 0 0 5px rgba(54,135,226,1);
|
---|
61 | -moz-box-shadow: 0 0 5px rgba(54,135,226,1);
|
---|
62 | -webkit-box-shadow: 0 0 5px rgba(54,135,226,1);
|
---|
63 | }
|
---|
64 |
|
---|
65 | fieldset {
|
---|
66 | margin: 0 5px 5px 0px;
|
---|
67 | padding: 5px;
|
---|
68 | border: 1px solid #afadaa;
|
---|
69 | border-radius: 4px;
|
---|
70 | -moz-border-radius: 4px;
|
---|
71 | -webkit-border-radius: 4px;
|
---|
72 | cursor: default;
|
---|
73 | }
|
---|
74 |
|
---|
75 | fieldset td {
|
---|
76 | white-space: nowrap;
|
---|
77 | }
|
---|
78 |
|
---|
79 | legend {
|
---|
80 | margin: 0;
|
---|
81 | padding:0 3px;
|
---|
82 | font-weight: bold;
|
---|
83 | }
|
---|
84 |
|
---|
85 | #folders {
|
---|
86 | margin: 4px 4px 0 4px;
|
---|
87 | background: #f8f7f6;
|
---|
88 | border: 1px solid #adaba9;
|
---|
89 | border-radius: 6px;
|
---|
90 | -moz-border-radius: 6px;
|
---|
91 | -webkit-border-radius: 6px;
|
---|
92 | }
|
---|
93 |
|
---|
94 | #files {
|
---|
95 | float: left;
|
---|
96 | margin: 0 4px 0 0;
|
---|
97 | background: #f8f7f6;
|
---|
98 | border: 1px solid #adaba9;
|
---|
99 | border-radius: 6px;
|
---|
100 | -moz-border-radius: 6px;
|
---|
101 | -webkit-border-radius: 6px;
|
---|
102 | }
|
---|
103 |
|
---|
104 | #files.drag {
|
---|
105 | background: #ddebf8;
|
---|
106 | }
|
---|
107 |
|
---|
108 | #topic {
|
---|
109 | padding-left: 12px;
|
---|
110 | }
|
---|
111 |
|
---|
112 |
|
---|
113 | div.folder {
|
---|
114 | padding-top: 2px;
|
---|
115 | margin-top: 4px;
|
---|
116 | white-space: nowrap;
|
---|
117 | }
|
---|
118 |
|
---|
119 | div.folder a {
|
---|
120 | text-decoration: none;
|
---|
121 | cursor: default;
|
---|
122 | outline: none;
|
---|
123 | color: #000;
|
---|
124 | }
|
---|
125 |
|
---|
126 | span.folder {
|
---|
127 | padding: 2px 3px 2px 23px;
|
---|
128 | outline: none;
|
---|
129 | background: no-repeat 3px center;
|
---|
130 | cursor: pointer;
|
---|
131 | border-radius: 3px;
|
---|
132 | -moz-border-radius: 3px;
|
---|
133 | -webkit-border-radius: 3px;
|
---|
134 | border: 1px solid transparent;
|
---|
135 | }
|
---|
136 |
|
---|
137 | span.brace {
|
---|
138 | width: 16px;
|
---|
139 | height: 16px;
|
---|
140 | outline: none;
|
---|
141 | }
|
---|
142 |
|
---|
143 | span.current {
|
---|
144 | background-image: url(img/tree/folder_current.png);
|
---|
145 | background-color: #5b9bda;
|
---|
146 | border-color: #2973bd;
|
---|
147 | color: #fff;
|
---|
148 | }
|
---|
149 |
|
---|
150 | span.regular {
|
---|
151 | background-image: url(img/tree/folder.png);
|
---|
152 | background-color: #f8f7f6;
|
---|
153 | }
|
---|
154 |
|
---|
155 | span.regular:hover, span.context {
|
---|
156 | background-color: #ddebf8;
|
---|
157 | border-color: #cee0f4;
|
---|
158 | color: #000;
|
---|
159 | }
|
---|
160 |
|
---|
161 | span.opened {
|
---|
162 | background-image: url(img/tree/minus.png);
|
---|
163 | }
|
---|
164 |
|
---|
165 | span.closed {
|
---|
166 | background-image: url(img/tree/plus.png);
|
---|
167 | }
|
---|
168 |
|
---|
169 | span.denied {
|
---|
170 | background-image: url(img/tree/denied.png);
|
---|
171 | }
|
---|
172 |
|
---|
173 | div.file {
|
---|
174 | padding: 4px;
|
---|
175 | margin: 3px;
|
---|
176 | border: 1px solid #aaa;
|
---|
177 | border-radius: 4px;
|
---|
178 | -moz-border-radius: 4px;
|
---|
179 | -webkit-border-radius: 4px;
|
---|
180 | background: #fff;
|
---|
181 | }
|
---|
182 |
|
---|
183 | div.file:hover {
|
---|
184 | background: #ddebf8;
|
---|
185 | border-color: #a7bed7;
|
---|
186 | }
|
---|
187 |
|
---|
188 | div.file .name {
|
---|
189 | margin-top: 4px;
|
---|
190 | font-weight: bold;
|
---|
191 | height: 16px;
|
---|
192 | overflow: hidden;
|
---|
193 | }
|
---|
194 |
|
---|
195 | div.file .time {
|
---|
196 | font-size: 10px;
|
---|
197 | }
|
---|
198 |
|
---|
199 | div.file .size {
|
---|
200 | font-size: 10px;
|
---|
201 | }
|
---|
202 |
|
---|
203 | #files div.selected,
|
---|
204 | #files div.selected:hover {
|
---|
205 | background-color: #5b9bda;
|
---|
206 | border-color: #2973bd;
|
---|
207 | color: #fff;
|
---|
208 | }
|
---|
209 |
|
---|
210 | tr.file > td {
|
---|
211 | padding: 3px 4px;
|
---|
212 | background-color: #f8f7f6
|
---|
213 | }
|
---|
214 |
|
---|
215 | tr.file:hover > td {
|
---|
216 | background-color: #ddebf8;
|
---|
217 | }
|
---|
218 |
|
---|
219 | tr.selected > td,
|
---|
220 | tr.selected:hover > td {
|
---|
221 | background-color: #5b9bda;
|
---|
222 | color: #fff;
|
---|
223 | }
|
---|
224 |
|
---|
225 | #toolbar {
|
---|
226 | padding: 5px 0;
|
---|
227 | border-radius: 3px;
|
---|
228 | -moz-border-radius: 3px;
|
---|
229 | -webkit-border-radius: 3px;
|
---|
230 | }
|
---|
231 |
|
---|
232 | #toolbar a {
|
---|
233 | color: #000;
|
---|
234 | padding: 4px 4px 4px 24px;
|
---|
235 | margin-right: 5px;
|
---|
236 | border: 1px solid transparent;
|
---|
237 | background: no-repeat 2px center;
|
---|
238 | outline: none;
|
---|
239 | display: block;
|
---|
240 | float: left;
|
---|
241 | border-radius: 4px;
|
---|
242 | -moz-border-radius: 4px;
|
---|
243 | -webkit-border-radius: 4px;
|
---|
244 | }
|
---|
245 |
|
---|
246 | #toolbar a:hover,
|
---|
247 | #toolbar a.hover {
|
---|
248 | background-color: #cfcfcf;
|
---|
249 | border-color: #afadaa;
|
---|
250 | box-shadow: inset 0 0 3px rgba(175,173,170,1);
|
---|
251 | -moz-box-shadow: inset 0 0 3px rgba(175,173,170,1);
|
---|
252 | -webkit-box-shadow: inset 0 0 3px rgba(175,173,170,1);
|
---|
253 | }
|
---|
254 |
|
---|
255 | #toolbar a.selected {
|
---|
256 | background-color: #eeeeff;
|
---|
257 | border-color: #3687e2;
|
---|
258 | box-shadow: inset 0 0 3px rgba(54,135,226,1);
|
---|
259 | -moz-box-shadow: inset 0 0 3px rgba(54,135,226,1);
|
---|
260 | -webkit-box-shadow: inset 0 0 3px rgba(54,135,226,1);
|
---|
261 | }
|
---|
262 |
|
---|
263 | #toolbar a[href="kcact:upload"] {
|
---|
264 | background-image: url(img/icons/upload.png);
|
---|
265 | }
|
---|
266 |
|
---|
267 | #toolbar a[href="kcact:refresh"] {
|
---|
268 | background-image: url(img/icons/refresh.png);
|
---|
269 | }
|
---|
270 |
|
---|
271 | #toolbar a[href="kcact:settings"] {
|
---|
272 | background-image: url(img/icons/settings.png);
|
---|
273 | }
|
---|
274 |
|
---|
275 | #toolbar a[href="kcact:about"] {
|
---|
276 | background-image: url(img/icons/about.png);
|
---|
277 | }
|
---|
278 |
|
---|
279 | #toolbar a[href="kcact:maximize"] {
|
---|
280 | background-image: url(img/icons/maximize.png);
|
---|
281 | }
|
---|
282 |
|
---|
283 | #settings {
|
---|
284 | background: #e0dfde;
|
---|
285 | }
|
---|
286 |
|
---|
287 | .box, #loading, #alert {
|
---|
288 | padding: 5px;
|
---|
289 | border: 1px solid #3687e2;
|
---|
290 | background: #e0dfde;
|
---|
291 | border-radius: 5px;
|
---|
292 | -moz-border-radius: 5px;
|
---|
293 | -webkit-border-radius: 5px;
|
---|
294 | }
|
---|
295 |
|
---|
296 | .box, #alert {
|
---|
297 | padding: 8px;
|
---|
298 | border-color: #fff;
|
---|
299 | -moz-box-shadow: 0 0 8px rgba(255,255,255,1);
|
---|
300 | -webkit-box-shadow: 0 0 8px rgba(255,255,255,1);
|
---|
301 | box-shadow: 0 0 8px rgba(255,255,255,1);
|
---|
302 | }
|
---|
303 |
|
---|
304 | #loading {
|
---|
305 | background-image: url(img/loading.gif);
|
---|
306 | font-weight: bold;
|
---|
307 | margin-right: 4px;
|
---|
308 | box-shadow: 0 0 3px rgba(54,135,226,1);
|
---|
309 | -moz-box-shadow: 0 0 3px rgba(54,135,226,1);
|
---|
310 | -webkit-box-shadow: 0 0 3px rgba(54,135,226,1);
|
---|
311 | }
|
---|
312 |
|
---|
313 | #alert div.message, #dialog div.question {
|
---|
314 | padding: 0 0 0 40px;
|
---|
315 | }
|
---|
316 |
|
---|
317 | #alert {
|
---|
318 | background: #e0dfde url(img/alert.png) no-repeat 8px 29px;
|
---|
319 | }
|
---|
320 |
|
---|
321 | #dialog div.question {
|
---|
322 | background: #e0dfde url(img/confirm.png) no-repeat 0 0;
|
---|
323 | }
|
---|
324 |
|
---|
325 | #alert div.ok, #dialog div.buttons {
|
---|
326 | padding-top: 5px;
|
---|
327 | text-align: right;
|
---|
328 | }
|
---|
329 |
|
---|
330 | .menu {
|
---|
331 | padding: 2px;
|
---|
332 | border: 1px solid #acaaa7;
|
---|
333 | background: #e4e3e2;
|
---|
334 | opacity: 0.95;
|
---|
335 | }
|
---|
336 |
|
---|
337 | .menu a {
|
---|
338 | text-decoration: none;
|
---|
339 | padding: 3px 3px 3px 22px;
|
---|
340 | background: no-repeat 2px center;
|
---|
341 | color: #000;
|
---|
342 | margin: 0;
|
---|
343 | background-color: #e4e3e2;
|
---|
344 | outline: none;
|
---|
345 | border: 1px solid transparent;
|
---|
346 | border-radius: 4px;
|
---|
347 | -moz-border-radius: 4px;
|
---|
348 | -webkit-border-radius: 4px;
|
---|
349 | }
|
---|
350 |
|
---|
351 | .menu .delimiter {
|
---|
352 | border-top: 1px solid #acaaa7;
|
---|
353 | padding-bottom: 3px;
|
---|
354 | margin: 3px 2px 0 2px;
|
---|
355 | }
|
---|
356 |
|
---|
357 | .menu a:hover {
|
---|
358 | background-color: #cfcfcf;
|
---|
359 | border-color: #afadaa;
|
---|
360 | box-shadow: inset 0 0 3px rgba(175,173,170,1);
|
---|
361 | -moz-box-shadow: inset 0 0 3px rgba(175,173,170,1);
|
---|
362 | -webkit-box-shadow: inset 0 0 3px rgba(175,173,170,1);
|
---|
363 | }
|
---|
364 |
|
---|
365 | .menu a[href="kcact:refresh"] {
|
---|
366 | background-image: url(img/icons/refresh.png);
|
---|
367 | }
|
---|
368 |
|
---|
369 | .menu a[href="kcact:mkdir"] {
|
---|
370 | background-image: url(img/icons/folder-new.png);
|
---|
371 | }
|
---|
372 |
|
---|
373 | .menu a[href="kcact:mvdir"], .menu a[href="kcact:mv"] {
|
---|
374 | background-image: url(img/icons/rename.png);
|
---|
375 | }
|
---|
376 |
|
---|
377 | .menu a[href="kcact:rmdir"], .menu a[href="kcact:rm"], .menu a[href="kcact:rmcbd"] {
|
---|
378 | background-image: url(img/icons/delete.png);
|
---|
379 | }
|
---|
380 |
|
---|
381 | .menu a[href="kcact:clpbrdadd"] {
|
---|
382 | background-image: url(img/icons/clipboard-add.png);
|
---|
383 | }
|
---|
384 |
|
---|
385 | .menu a[href="kcact:pick"], .menu a[href="kcact:pick_thumb"] {
|
---|
386 | background-image: url(img/icons/select.png);
|
---|
387 | }
|
---|
388 |
|
---|
389 | .menu a[href="kcact:download"] {
|
---|
390 | background-image: url(img/icons/download.png);
|
---|
391 | }
|
---|
392 |
|
---|
393 | .menu a[href="kcact:view"] {
|
---|
394 | background-image: url(img/icons/view.png);
|
---|
395 | }
|
---|
396 |
|
---|
397 | .menu a[href="kcact:cpcbd"] {
|
---|
398 | background-image: url(img/icons/copy.png);
|
---|
399 | }
|
---|
400 |
|
---|
401 | .menu a[href="kcact:mvcbd"] {
|
---|
402 | background-image: url(img/icons/move.png);
|
---|
403 | }
|
---|
404 |
|
---|
405 | .menu a[href="kcact:clrcbd"] {
|
---|
406 | background-image: url(img/icons/clipboard-clear.png);
|
---|
407 | }
|
---|
408 |
|
---|
409 | a.denied {
|
---|
410 | color: #666;
|
---|
411 | opacity: 0.5;
|
---|
412 | filter: alpha(opacity:50);
|
---|
413 | cursor: default;
|
---|
414 | }
|
---|
415 |
|
---|
416 | a.denied:hover {
|
---|
417 | background-color: #e4e3e2;
|
---|
418 | border-color: transparent;
|
---|
419 | box-shadow: none;
|
---|
420 | -moz-box-shadow: none;
|
---|
421 | -webkit-box-shadow: none;
|
---|
422 | }
|
---|
423 |
|
---|
424 | #dialog {
|
---|
425 | -moz-box-shadow: 0 0 5px rgba(0,0,0,0.5);
|
---|
426 | -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.5);
|
---|
427 | box-shadow: 0 0 5px rgba(0,0,0,0.5);
|
---|
428 | }
|
---|
429 |
|
---|
430 | #dialog input[type="text"] {
|
---|
431 | margin: 5px 0;
|
---|
432 | width: 200px;
|
---|
433 | }
|
---|
434 |
|
---|
435 | #dialog div.slideshow {
|
---|
436 | border: 1px solid #000;
|
---|
437 | padding: 5px 5px 3px 5px;
|
---|
438 | background: #000;
|
---|
439 | -moz-box-shadow: 0 0 8px rgba(255,255,255,1);
|
---|
440 | -webkit-box-shadow: 0 0 8px rgba(255,255,255,1);
|
---|
441 | box-shadow: 0 0 8px rgba(255,255,255,1);
|
---|
442 | }
|
---|
443 |
|
---|
444 | #dialog img {
|
---|
445 | padding: 0;
|
---|
446 | margin: 0;
|
---|
447 | background: url(img/bg_transparent.png);
|
---|
448 | }
|
---|
449 |
|
---|
450 | #loadingDirs {
|
---|
451 | padding: 5px 0 1px 24px;
|
---|
452 | }
|
---|
453 |
|
---|
454 | .about {
|
---|
455 | text-align: center;
|
---|
456 | }
|
---|
457 |
|
---|
458 | .about div.head {
|
---|
459 | font-weight: bold;
|
---|
460 | font-size: 12px;
|
---|
461 | padding: 3px 0 8px 0;
|
---|
462 | }
|
---|
463 |
|
---|
464 | .about div.head a {
|
---|
465 | background: url(img/kcf_logo.png) no-repeat left center;
|
---|
466 | padding: 0 0 0 27px;
|
---|
467 | font-size: 17px;
|
---|
468 | }
|
---|
469 |
|
---|
470 | .about a {
|
---|
471 | text-decoration: none;
|
---|
472 | color: #0055ff;
|
---|
473 | }
|
---|
474 |
|
---|
475 | .about a:hover {
|
---|
476 | text-decoration: underline;
|
---|
477 | }
|
---|
478 |
|
---|
479 | .about button {
|
---|
480 | margin-top: 8px;
|
---|
481 | }
|
---|
482 |
|
---|
483 | #clipboard {
|
---|
484 | padding: 0 4px 1px 0;
|
---|
485 | }
|
---|
486 |
|
---|
487 | #clipboard div {
|
---|
488 | background: url(img/icons/clipboard.png) no-repeat center center;
|
---|
489 | border: 1px solid transparent;
|
---|
490 | padding: 1px;
|
---|
491 | cursor: pointer;
|
---|
492 | border-radius: 4px;
|
---|
493 | -moz-border-radius: 4px;
|
---|
494 | -webkit-border-radius: 4px;
|
---|
495 | }
|
---|
496 |
|
---|
497 | #clipboard div:hover {
|
---|
498 | background-color: #bfbdbb;
|
---|
499 | border-color: #a9a59f;
|
---|
500 | }
|
---|
501 |
|
---|
502 | #clipboard.selected div, #clipboard.selected div:hover {
|
---|
503 | background-color: #c9c7c4;
|
---|
504 | border-color: #3687e2;
|
---|
505 | }
|
---|
506 |
|
---|
507 | #checkver {
|
---|
508 | padding-bottom: 8px;
|
---|
509 | }
|
---|
510 | #checkver > span {
|
---|
511 | padding: 2px;
|
---|
512 | border: 1px solid transparent;
|
---|
513 | border-radius: 5px;
|
---|
514 | -moz-border-radius: 5px;
|
---|
515 | -webkit-border-radius: 5px;
|
---|
516 | }
|
---|
517 |
|
---|
518 | #checkver > span.loading {
|
---|
519 | background: url(img/loading.gif);
|
---|
520 | border: 1px solid #3687e2;
|
---|
521 | box-shadow: 0 0 3px rgba(54,135,226,1);
|
---|
522 | -moz-box-shadow: 0 0 3px rgba(54,135,226,1);
|
---|
523 | -webkit-box-shadow: 0 0 3px rgba(54,135,226,1);
|
---|
524 | }
|
---|
525 |
|
---|
526 | #checkver span {
|
---|
527 | padding: 3px;
|
---|
528 | }
|
---|
529 |
|
---|
530 | #checkver a {
|
---|
531 | font-weight: normal;
|
---|
532 | padding: 3px 3px 3px 20px;
|
---|
533 | background: url(img/icons/download.png) no-repeat left center;
|
---|
534 | }
|
---|
535 |
|
---|
536 | div.title {
|
---|
537 | overflow: auto;
|
---|
538 | text-align: center;
|
---|
539 | margin: -3px -5px 5px -5px;
|
---|
540 | padding-left: 19px;
|
---|
541 | padding-bottom: 2px;
|
---|
542 | border-bottom: 1px solid #bbb;
|
---|
543 | font-weight: bold;
|
---|
544 | cursor: move;
|
---|
545 | }
|
---|
546 |
|
---|
547 | .about div.title {
|
---|
548 | cursor: default;
|
---|
549 | }
|
---|
550 |
|
---|
551 | span.close, span.clicked {
|
---|
552 | float: right;
|
---|
553 | width: 19px;
|
---|
554 | height: 19px;
|
---|
555 | background: url(img/icons/close.png);
|
---|
556 | margin-top: -3px;
|
---|
557 | cursor: default;
|
---|
558 | }
|
---|
559 |
|
---|
560 | span.close:hover {
|
---|
561 | background: url(img/icons/close-hover.png);
|
---|
562 | }
|
---|
563 |
|
---|
564 | span.clicked:hover {
|
---|
565 | background: url(img/icons/close-clicked.png);
|
---|
566 | }
|
---|