02.misc.css 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. * {
  2. font-size: 13px;
  3. }
  4. body {
  5. background: #000;
  6. color: #aaa;
  7. }
  8. fieldset td {
  9. white-space: nowrap;
  10. }
  11. #folders {
  12. margin: 5px 5px 0 5px;
  13. }
  14. #files {
  15. margin-right: 5px;
  16. }
  17. /* SHARED DECLARATIONS */
  18. #toolbar a:hover,
  19. #toolbar a.hover,
  20. span.current,
  21. span.regular:hover,
  22. span.context,
  23. #clipboard div:hover,
  24. div.file:hover,
  25. #files div.selected,
  26. #files div.selected:hover,
  27. tr.selected > td,
  28. tr.selected:hover > td,
  29. #menu .list div a:hover,
  30. #toolbar a.selected {
  31. color: #fff;
  32. text-shadow:
  33. 1px 0 rgba(0,0,0,.2),
  34. -1px 0 rgba(0,0,0,.2),
  35. 0 -1px rgba(0,0,0,.2),
  36. 0 1px rgba(0,0,0,.2),
  37. 1px 1px rgba(0,0,0,.2),
  38. -1px -1px rgba(0,0,0,.2),
  39. 1px -1px rgba(0,0,0,.2),
  40. -1px 1px rgba(0,0,0,.2);
  41. }
  42. #files div {
  43. text-shadow:
  44. 1px 0 rgba(0,0,0,.2),
  45. -1px 0 rgba(0,0,0,.2),
  46. 0 -1px rgba(0,0,0,.2),
  47. 0 1px rgba(0,0,0,.2),
  48. 1px 1px rgba(0,0,0,.2),
  49. -1px -1px rgba(0,0,0,.2),
  50. 1px -1px rgba(0,0,0,.2),
  51. -1px 1px rgba(0,0,0,.2);
  52. }
  53. #files,
  54. #folders,
  55. #toolbar a.selected {
  56. color: #aaa;
  57. border: 1px solid #425064;
  58. border-radius: 4px;
  59. background: #202d3e;
  60. box-shadow: inset 0 0 3px #000, inset 0 0 6px #000, 0 0 3px #425064, 0 0 2px #425064;
  61. }
  62. /* TOOLBAR */
  63. #toolbar {
  64. padding: 5px 0;
  65. }
  66. #toolbar a {
  67. color: #949494;
  68. margin-right: 5px;
  69. border: 1px solid transparent;
  70. outline: none;
  71. display: block;
  72. float: left;
  73. border-radius: 4px;
  74. transition: .3s;
  75. padding:0;
  76. }
  77. #toolbar a > span {
  78. padding: 6px 10px 6px 26px;
  79. diaplay: block;
  80. float:left;
  81. background: no-repeat 6px center;
  82. }
  83. #toolbar a:hover,
  84. #toolbar a.hover {
  85. color: #fff;
  86. border-color: #184977;
  87. background: #4685b3;
  88. background: -webkit-linear-gradient(top, #4685b3, #184977);
  89. background: -moz-linear-gradient(top, #4685b3, #184977);
  90. background: -ms-linear-gradient(top, #4685b3, #184977);
  91. background: -o-linear-gradient(top, #4685b3, #184977);
  92. background: linear-gradient(to bottom, #4685b3, #184977);
  93. box-shadow: inset 0 0 3px #88b9da;
  94. transition: .3s;
  95. }
  96. #toolbar a[href="kcact:upload"] span {
  97. background-image: url(img/icons/upload.png);
  98. }
  99. #toolbar a[href="kcact:refresh"] span {
  100. background-image: url(img/icons/refresh.png);
  101. }
  102. #toolbar a[href="kcact:settings"] span {
  103. background-image: url(img/icons/settings.png);
  104. }
  105. #toolbar a[href="kcact:about"] span {
  106. background-image: url(img/icons/about.png);
  107. }
  108. #toolbar a[href="kcact:maximize"] span {
  109. background-image: url(img/icons/maximize.png);
  110. }
  111. /* SETTINGS BAR */
  112. #settings label {
  113. cursor: pointer;
  114. }
  115. #settings fieldset {
  116. margin-right:5px;
  117. margin-bottom: 6px;
  118. margin-top:-5px;
  119. padding:6px;
  120. }
  121. /* FOLDERS */
  122. div.folder {
  123. padding-top: 2px;
  124. margin-top: 5px;
  125. white-space: nowrap;
  126. }
  127. div.folder a {
  128. text-decoration: none;
  129. cursor: default;
  130. outline: none;
  131. color: #aaa;
  132. }
  133. span.folder {
  134. padding: 2px 3px 2px 23px;
  135. outline: none;
  136. background: no-repeat 3px center;
  137. cursor: pointer;
  138. border-radius: 3px;
  139. border: 1px solid transparent;
  140. }
  141. span.brace {
  142. width: 16px;
  143. height: 16px;
  144. outline: none;
  145. }
  146. span.current {
  147. transition: .3s;
  148. background-image: url(img/tree/folder.png);
  149. background-color: #306999;
  150. border-color: #306999;
  151. box-shadow: inset 0 0 7px #8FD6EA, inset 0 0 3px #8FD6EA, 0 0 2px #000, 0 0 1px #000;
  152. }
  153. span.regular {
  154. transition: .3s;
  155. background-image: url(img/tree/folder.png);
  156. background-color: transparent;
  157. }
  158. span.regular:hover, span.context, #clipboard div:hover {
  159. transition: .3s;
  160. background-color: #333;
  161. border-color: #777;
  162. box-shadow: inset 0 0 7px #777, inset 0 0 3px #777, 0 0 2px #000, 0 0 1px #000;
  163. }
  164. span.opened {
  165. background-image: url(img/tree/minus.png);
  166. }
  167. span.closed {
  168. background-image: url(img/tree/plus.png);
  169. }
  170. span.denied {
  171. background-image: url(img/tree/denied.png);
  172. }
  173. /* FILES */
  174. div.file {
  175. padding: 4px;
  176. margin: 3px;
  177. border: 1px solid transparent;
  178. border-radius: 4px;
  179. }
  180. div.file:hover {
  181. box-shadow: inset 0 0 7px #555, inset 0 0 3px #555, 0 0 3px #000, 0 0 6px #000;
  182. background: #000;
  183. background: -webkit-linear-gradient(top, #111, #555);
  184. background: -moz-linear-gradient(top, #111, #555);
  185. background: -ms-linear-gradient(top, #111, #555);
  186. background: -o-linear-gradient(top, #111, #555);
  187. background: linear-gradient(to bottom, #111, #555);
  188. border-color: #555;
  189. }
  190. div.file .name {
  191. margin-top: 4px;
  192. font-weight: bold;
  193. height: 16px;
  194. overflow: hidden;
  195. padding-bottom:2px;
  196. }
  197. div.file .time {
  198. font-size: 10px;
  199. }
  200. div.file .size {
  201. font-size: 10px;
  202. }
  203. #files div.selected,
  204. #files div.selected:hover {
  205. border-color: #4685b3;
  206. background: #4685b3;
  207. background: -webkit-linear-gradient(top, #4685b3, #184977);
  208. background: -moz-linear-gradient(top, #4685b3, #184977);
  209. background: -ms-linear-gradient(top, #4685b3, #184977);
  210. background: -o-linear-gradient(top, #4685b3, #184977);
  211. background: linear-gradient(to bottom, #4685b3, #184977);
  212. box-shadow: inset 0 0 7px #4e9ed4, inset 0 0 3px #4e9ed4, 0 0 3px #000, 0 0 6px #000;
  213. }
  214. tr.file > td {
  215. padding: 3px 4px;
  216. }
  217. tr.file:hover > td {
  218. background-color: #000;
  219. transition: none;
  220. }
  221. tr.selected > td,
  222. tr.selected:hover > td {
  223. transition: .3s;
  224. background-color: #2d5277;
  225. }
  226. tr.file td.name {
  227. background-position: 2px center;
  228. padding-left: 22px;
  229. }
  230. a.denied {
  231. color: #666;
  232. opacity: 0.5;
  233. filter: alpha(opacity:50);
  234. cursor: default;
  235. }
  236. a.denied:hover {
  237. background-color: #e4e3e2;
  238. border-color: transparent;
  239. box-shadow: none;
  240. }
  241. /* FILE MENU */
  242. #menu .ui-menu a span {
  243. background: left center no-repeat;
  244. padding-left: 20px;
  245. white-space: nowrap;
  246. }
  247. #menu a[href="kcact:refresh"] span {
  248. background-image: url(img/icons/refresh.png);
  249. }
  250. #menu a[href="kcact:mkdir"] span {
  251. background-image: url(img/icons/folder-new.png);
  252. }
  253. #menu a[href="kcact:mvdir"] span, #menu a[href="kcact:mv"] span {
  254. background-image: url(img/icons/rename.png);
  255. }
  256. #menu a[href="kcact:rmdir"] span, #menu a[href="kcact:rm"] span, #menu a[href="kcact:rmcbd"] span {
  257. background-image: url(img/icons/delete.png);
  258. }
  259. #menu a[href="kcact:clpbrdadd"] span {
  260. background-image: url(img/icons/clipboard-add.png);
  261. }
  262. #menu a[href="kcact:pick"] span, #menu a[href="kcact:pick_thumb"] span {
  263. background-image: url(img/icons/select.png);
  264. }
  265. #menu a[href="kcact:download"] span {
  266. background-image: url(img/icons/download.png);
  267. }
  268. #menu a[href="kcact:view"] span {
  269. background-image: url(img/icons/view.png);
  270. }
  271. #menu a[href="kcact:cpcbd"] span {
  272. background-image: url(img/icons/copy.png);
  273. }
  274. #menu a[href="kcact:mvcbd"] span {
  275. background-image: url(img/icons/move.png);
  276. }
  277. #menu a[href="kcact:clrcbd"] span {
  278. background-image: url(img/icons/clipboard-clear.png);
  279. }
  280. /* CLIPBOARD */
  281. #clipboard {
  282. margin-left:-3px;
  283. padding: 2px;
  284. }
  285. #clipboard div {
  286. background: url(img/icons/clipboard.png) no-repeat center center;
  287. border: 1px solid transparent;
  288. padding: 2px;
  289. cursor: pointer;
  290. border-radius: 4px;
  291. }
  292. #clipboard.selected div, #clipboard.selected div:hover {
  293. background-color: #306999;
  294. border-color: #306999;
  295. box-shadow: inset 0 0 7px #8FD6EA, inset 0 0 3px #8FD6EA;
  296. }
  297. #menu .list a, #menu .list a.ui-state-focus {
  298. margin: -1px 0 0 -1px;
  299. padding: 6px 10px;
  300. border: 1px solid transparent;
  301. background: none;
  302. border-radius: 0;
  303. text-shadow: none;
  304. box-shadow: none;
  305. }
  306. #menu .list a.first, #menu .list a.first.ui-state-focus {
  307. border-radius: 4px 4px 0 0;
  308. }
  309. #menu .list a:hover {
  310. border-color: #4685b3;
  311. background: #4685b3;
  312. background: -webkit-linear-gradient(top, #184977, #4685b3);
  313. background: -moz-linear-gradient(top, #184977, #4685b3);
  314. background: -ms-linear-gradient(top, #184977, #4685b3);
  315. background: -o-linear-gradient(top, #184977, #4685b3);
  316. background: linear-gradient(to bottom, #184977, #4685b3);
  317. box-shadow: inset 0 0 7px #4e9ed4, inset 0 0 3px #4e9ed4;
  318. }
  319. #menu .list {
  320. overflow:hidden;
  321. max-height: 1px;
  322. margin-bottom: -1px;
  323. padding-bottom:1px;
  324. }
  325. #menu li.div-files {
  326. margin: 0 0 1px 0;
  327. }
  328. /* ABOUT DIALOG */
  329. .about {
  330. text-align: center;
  331. }
  332. .about div.head {
  333. font-weight: bold;
  334. font-size: 12px;
  335. padding: 3px 0 8px 0;
  336. }
  337. .about div.head a {
  338. background: url(img/kcf_logo.png) no-repeat left center;
  339. padding: 0 0 0 27px;
  340. font-size: 17px;
  341. outline: none;
  342. }
  343. .about a {
  344. text-decoration: none;
  345. color: #3665b4;
  346. }
  347. .about a:hover {
  348. text-decoration: underline;
  349. }
  350. #checkver {
  351. margin: 5px 0 10px 0;
  352. }
  353. #loading, #checkver > span.loading {
  354. background: url(img/loading.gif);
  355. border: 1px solid #425064;
  356. box-shadow: inset 0 0 3px #000, inset 0 0 6px #000, 0 0 3px #425064, 0 0 2px #425064;
  357. padding: 6px 10px;
  358. border-radius: 4px;
  359. color: #aaa;
  360. }
  361. #checkver a {
  362. font-weight: normal;
  363. padding: 3px 3px 3px 20px;
  364. background: url(img/icons/download.png) no-repeat left center;
  365. }
  366. /* IMAGE VIEWER */
  367. .ui-dialog-content.kcfImageViewer {
  368. background: #000;
  369. cursor: pointer;
  370. }
  371. .kcfImageViewer .img {
  372. background: url(img/bg_transparent.png);
  373. }
  374. /* MISC */
  375. #loading {
  376. margin-right: 5px;
  377. }
  378. #loadingDirs {
  379. padding: 5px 0 1px 24px;
  380. }
  381. #files.drag {
  382. background: #ddebf8;
  383. }
  384. #resizer {
  385. background: #fff;
  386. }
  387. /* FIX FIELDSET BORDER RADIUS BUG ON IE */
  388. body.msie fieldset,
  389. body.trident.rv fieldset {
  390. border-radius: 0;
  391. }