moka.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591
  1. @import "reset.css";
  2. @import url("http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,latin-ext");
  3. .no-select {
  4. -webkit-touch-callout: none;
  5. -webkit-user-select: none;
  6. -khtml-user-select: none;
  7. -moz-user-select: none;
  8. -ms-user-select: none;
  9. user-select: none;
  10. }
  11. .mk_default {
  12. font-size: 12px;
  13. font-family: "Open Sans";
  14. color: #444444;
  15. text-shadow: 0 1px 0 white;
  16. padding: 0;
  17. margin: 0;
  18. }
  19. .mk_absolute {
  20. position: absolute;
  21. display: block;
  22. overflow: hidden;
  23. }
  24. .mk_overlay {
  25. position: fixed;
  26. top: 0;
  27. left: 0;
  28. right: 0;
  29. bottom: 0;
  30. z-index: 1000;
  31. background: transparent;
  32. }
  33. .moka_view {
  34. position: absolute;
  35. display: block;
  36. overflow: hidden;
  37. }
  38. .moka_view.mk_label {
  39. font-size: 12px;
  40. font-family: "Open Sans";
  41. color: #444444;
  42. text-shadow: 0 1px 0 white;
  43. padding: 0;
  44. margin: 0;
  45. color: #333333;
  46. padding: 4px;
  47. }
  48. .moka_view.mk_label.mk_heading {
  49. font-weight: bold;
  50. }
  51. .moka_view.mk_label.mk_heading.level1 {
  52. font-size: 2em;
  53. }
  54. .moka_view.mk_label.mk_heading.level2 {
  55. font-size: 1.8em;
  56. }
  57. .moka_view.mk_label.mk_heading.level3 {
  58. font-size: 1.6em;
  59. }
  60. .moka_view.mk_label.mk_heading.level4 {
  61. font-size: 1.4em;
  62. }
  63. .moka_view.mk_label.mk_heading.level5 {
  64. font-size: 1.2em;
  65. }
  66. .moka_view.mk_pane.mk_panel {
  67. background: #eeeeee;
  68. border-color: #888888;
  69. border-style: solid;
  70. }
  71. .moka_view.mk_modal {
  72. z-index: 1001;
  73. background: transparent;
  74. border: 0 none;
  75. }
  76. .moka_view.mk_modal:focus {
  77. outline: 0 none;
  78. }
  79. .moka_view.mk_scroll .mk_scroll_rail {
  80. position: absolute;
  81. z-index: 1;
  82. }
  83. .moka_view.mk_scroll .mk_scroll_rail .mk_scrollbar {
  84. position: absolute;
  85. -webkit-border-radius: 8px;
  86. -moz-border-radius: 8px;
  87. border-radius: 8px;
  88. -webkit-transition: background 0.2s ease-out;
  89. -moz-transition: background 0.2s ease-out;
  90. -o-transition: background 0.2s ease-out;
  91. transition: background 0.2s ease-out;
  92. opacity: 0.6;
  93. }
  94. .moka_view.mk_scroll .mk_scroll_rail .mk_scrollbar:hover,
  95. .moka_view.mk_scroll .mk_scroll_rail .mk_scrollbar.ui-draggable-dragging {
  96. background: #333333;
  97. }
  98. .moka_view.mk_scroll .mk_scroll_rail.vertical {
  99. top: 0;
  100. right: 0;
  101. bottom: 0;
  102. width: 10px;
  103. }
  104. .moka_view.mk_scroll .mk_scroll_rail.vertical .mk_scrollbar {
  105. width: 8px;
  106. }
  107. .moka_view.mk_scroll .mk_scroll_rail.horizontal {
  108. bottom: 0;
  109. left: 0;
  110. right: 0;
  111. height: 10px;
  112. }
  113. .moka_view.mk_scroll .mk_scroll_rail.horizontal .mk_scrollbar {
  114. height: 8px;
  115. }
  116. .moka_view.mk_scroll:hover .mk_scrollbar {
  117. background: rgba(0, 0, 0, 0.4);
  118. }
  119. .moka_view .mk_control,
  120. .moka_view .mk_control:active,
  121. .moka_view .mk_control:focus {
  122. font-size: 12px;
  123. font-family: "Open Sans";
  124. color: #444444;
  125. text-shadow: 0 1px 0 white;
  126. padding: 0;
  127. margin: 0;
  128. position: absolute;
  129. display: block;
  130. overflow: hidden;
  131. -webkit-border-radius: 3px;
  132. -moz-border-radius: 3px;
  133. border-radius: 3px;
  134. border: 1px solid #919191;
  135. -webkit-box-shadow: inset 0 0 3px 0 #c3c3c3;
  136. -moz-box-shadow: inset 0 0 3px 0 #c3c3c3;
  137. box-shadow: inset 0 0 3px 0 #c3c3c3;
  138. background-color: white;
  139. background: -webkit-linear-gradient(top, #eee 0%, white 6px);
  140. background: -moz-linear-gradient(top, #eee 0%, white 6px);
  141. background: -ms-linear-gradient(top, #eee 0%, white 6px);
  142. background: -o-linear-gradient(top, #eee 0%, white 6px);
  143. background: linear-gradient(top, #eee 0%, white 6px);
  144. }
  145. .moka_view .mk_control:focus,
  146. .moka_view .mk_control:active:focus,
  147. .moka_view .mk_control:focus:focus {
  148. outline: 0;
  149. }
  150. .moka_view .mk_control::-moz-focus-inner,
  151. .moka_view .mk_control:active::-moz-focus-inner,
  152. .moka_view .mk_control:focus::-moz-focus-inner {
  153. border: 0;
  154. }
  155. .moka_view.mk_button {
  156. font-size: 12px;
  157. font-family: "Open Sans";
  158. color: #444444;
  159. text-shadow: 0 1px 0 white;
  160. padding: 0;
  161. margin: 0;
  162. position: absolute;
  163. display: block;
  164. overflow: hidden;
  165. -webkit-border-radius: 3px;
  166. -moz-border-radius: 3px;
  167. border-radius: 3px;
  168. border: 1px solid #919191;
  169. -webkit-box-shadow: inset 0 0 3px 0 #c3c3c3;
  170. -moz-box-shadow: inset 0 0 3px 0 #c3c3c3;
  171. box-shadow: inset 0 0 3px 0 #c3c3c3;
  172. background-color: white;
  173. background: -webkit-linear-gradient(top, #eee 0%, white 6px);
  174. background: -moz-linear-gradient(top, #eee 0%, white 6px);
  175. background: -ms-linear-gradient(top, #eee 0%, white 6px);
  176. background: -o-linear-gradient(top, #eee 0%, white 6px);
  177. background: linear-gradient(top, #eee 0%, white 6px);
  178. -webkit-touch-callout: none;
  179. -webkit-user-select: none;
  180. -khtml-user-select: none;
  181. -moz-user-select: none;
  182. -ms-user-select: none;
  183. user-select: none;
  184. -webkit-box-shadow: 0 1px 1px 0 #d8d8d8;
  185. -moz-box-shadow: 0 1px 1px 0 #d8d8d8;
  186. box-shadow: 0 1px 1px 0 #d8d8d8;
  187. background: #fafafa;
  188. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dedede), color-stop(1, #ffffff));
  189. background: -ms-linear-gradient(bottom, #dedede, #ffffff);
  190. background: -moz-linear-gradient(center bottom, #dedede 0%, #ffffff 100%);
  191. background: -o-linear-gradient(#ffffff, #dedede);
  192. background: linear-gradient(#ffffff, #dedede);
  193. }
  194. .moka_view.mk_button:focus {
  195. outline: 0;
  196. }
  197. .moka_view.mk_button::-moz-focus-inner {
  198. border: 0;
  199. }
  200. .moka_view.mk_button.default {
  201. background: #9ec4eb;
  202. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #9ec4eb), color-stop(1, #deeaf8));
  203. background: -ms-linear-gradient(bottom, #9ec4eb, #deeaf8);
  204. background: -moz-linear-gradient(center bottom, #9ec4eb 0%, #deeaf8 100%);
  205. background: -o-linear-gradient(#deeaf8, #9ec4eb);
  206. background: linear-gradient(#deeaf8, #9ec4eb);
  207. text-shadow: 0 1px 0 #eeeeee;
  208. }
  209. .moka_view.mk_button.default:active {
  210. background: #9ec4eb;
  211. border-color: #4a90d9;
  212. }
  213. .moka_view.mk_button:focus {
  214. border-color: #4a90d9;
  215. box-shadow: 0 0 5px #4a90d9;
  216. }
  217. .moka_view.mk_button:active {
  218. background: #dddddd;
  219. -webkit-box-shadow: inset 0 0 3px 0 #888888;
  220. -moz-box-shadow: inset 0 0 3px 0 #888888;
  221. box-shadow: inset 0 0 3px 0 #888888;
  222. border-color: #947c7c;
  223. }
  224. .moka_view.mk_input,
  225. .moka_view.mk_textarea {
  226. font-size: 12px;
  227. font-family: "Open Sans";
  228. color: #444444;
  229. text-shadow: 0 1px 0 white;
  230. padding: 0;
  231. margin: 0;
  232. position: absolute;
  233. display: block;
  234. overflow: hidden;
  235. -webkit-border-radius: 3px;
  236. -moz-border-radius: 3px;
  237. border-radius: 3px;
  238. border: 1px solid #919191;
  239. -webkit-box-shadow: inset 0 0 3px 0 #c3c3c3;
  240. -moz-box-shadow: inset 0 0 3px 0 #c3c3c3;
  241. box-shadow: inset 0 0 3px 0 #c3c3c3;
  242. background-color: white;
  243. background: -webkit-linear-gradient(top, #eee 0%, white 6px);
  244. background: -moz-linear-gradient(top, #eee 0%, white 6px);
  245. background: -ms-linear-gradient(top, #eee 0%, white 6px);
  246. background: -o-linear-gradient(top, #eee 0%, white 6px);
  247. background: linear-gradient(top, #eee 0%, white 6px);
  248. resize: none;
  249. padding: 0 4px;
  250. text-shadow: 0 0 0;
  251. }
  252. .moka_view.mk_input:focus,
  253. .moka_view.mk_textarea:focus {
  254. outline: 0;
  255. }
  256. .moka_view.mk_input::-moz-focus-inner,
  257. .moka_view.mk_textarea::-moz-focus-inner {
  258. border: 0;
  259. }
  260. .moka_view.mk_input:focus,
  261. .moka_view.mk_textarea:focus {
  262. -webkit-box-shadow: inset 0 0 3px 0 #888888;
  263. -moz-box-shadow: inset 0 0 3px 0 #888888;
  264. box-shadow: inset 0 0 3px 0 #888888;
  265. border-color: #4a90d9;
  266. }
  267. .moka_view.mk_checkbox {
  268. -webkit-touch-callout: none;
  269. -webkit-user-select: none;
  270. -khtml-user-select: none;
  271. -moz-user-select: none;
  272. -ms-user-select: none;
  273. user-select: none;
  274. background: url('../images/moka/check.png') 50% 50% no-repeat;
  275. height: 16px;
  276. width: 16px;
  277. }
  278. .moka_view.mk_checkbox:focus {
  279. outline: 0;
  280. }
  281. .moka_view.mk_checkbox.checked {
  282. background-image: url('../images/moka/check-active.png');
  283. }
  284. .moka_view.mk_switch {
  285. font-size: 12px;
  286. font-family: "Open Sans";
  287. color: #444444;
  288. text-shadow: 0 1px 0 white;
  289. padding: 0;
  290. margin: 0;
  291. position: absolute;
  292. display: block;
  293. overflow: hidden;
  294. -webkit-border-radius: 3px;
  295. -moz-border-radius: 3px;
  296. border-radius: 3px;
  297. border: 1px solid #919191;
  298. -webkit-box-shadow: inset 0 0 3px 0 #c3c3c3;
  299. -moz-box-shadow: inset 0 0 3px 0 #c3c3c3;
  300. box-shadow: inset 0 0 3px 0 #c3c3c3;
  301. background-color: white;
  302. background: -webkit-linear-gradient(top, #eee 0%, white 6px);
  303. background: -moz-linear-gradient(top, #eee 0%, white 6px);
  304. background: -ms-linear-gradient(top, #eee 0%, white 6px);
  305. background: -o-linear-gradient(top, #eee 0%, white 6px);
  306. background: linear-gradient(top, #eee 0%, white 6px);
  307. -webkit-touch-callout: none;
  308. -webkit-user-select: none;
  309. -khtml-user-select: none;
  310. -moz-user-select: none;
  311. -ms-user-select: none;
  312. user-select: none;
  313. -webkit-box-shadow: 0 1px 1px 0 #d8d8d8;
  314. -moz-box-shadow: 0 1px 1px 0 #d8d8d8;
  315. box-shadow: 0 1px 1px 0 #d8d8d8;
  316. background: #fafafa;
  317. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dedede), color-stop(1, #ffffff));
  318. background: -ms-linear-gradient(bottom, #dedede, #ffffff);
  319. background: -moz-linear-gradient(center bottom, #dedede 0%, #ffffff 100%);
  320. background: -o-linear-gradient(#ffffff, #dedede);
  321. background: linear-gradient(#ffffff, #dedede);
  322. -webkit-border-radius: 20px;
  323. -moz-border-radius: 20px;
  324. border-radius: 20px;
  325. vertical-align: middle;
  326. display: inline-block;
  327. height: 20px;
  328. width: 39px;
  329. background: url('../images/moka/switch.png') 100% 50% no-repeat;
  330. -webkit-transition: background 0.2s ease-out;
  331. -moz-transition: background 0.2s ease-out;
  332. -o-transition: background 0.2s ease-out;
  333. transition: background 0.2s ease-out;
  334. border-color: #6f6f6f;
  335. }
  336. .moka_view.mk_switch:focus {
  337. outline: 0;
  338. }
  339. .moka_view.mk_switch::-moz-focus-inner {
  340. border: 0;
  341. }
  342. .moka_view.mk_switch.default {
  343. background: #9ec4eb;
  344. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #9ec4eb), color-stop(1, #deeaf8));
  345. background: -ms-linear-gradient(bottom, #9ec4eb, #deeaf8);
  346. background: -moz-linear-gradient(center bottom, #9ec4eb 0%, #deeaf8 100%);
  347. background: -o-linear-gradient(#deeaf8, #9ec4eb);
  348. background: linear-gradient(#deeaf8, #9ec4eb);
  349. text-shadow: 0 1px 0 #eeeeee;
  350. }
  351. .moka_view.mk_switch.default:active {
  352. background: #9ec4eb;
  353. border-color: #4a90d9;
  354. }
  355. .moka_view.mk_switch:focus {
  356. border-color: #4a90d9;
  357. box-shadow: 0 0 5px #4a90d9;
  358. }
  359. .moka_view.mk_switch:active {
  360. background: #dddddd;
  361. -webkit-box-shadow: inset 0 0 3px 0 #888888;
  362. -moz-box-shadow: inset 0 0 3px 0 #888888;
  363. box-shadow: inset 0 0 3px 0 #888888;
  364. border-color: #947c7c;
  365. }
  366. .moka_view.mk_switch:active {
  367. background: url('../images/moka/switch.png') 100% 50% no-repeat;
  368. }
  369. .moka_view.mk_switch.checked {
  370. background: url('../images/moka/switch.png') 0% 50% no-repeat;
  371. }
  372. .moka_view.mk_list {
  373. cursor: default;
  374. -webkit-touch-callout: none;
  375. -webkit-user-select: none;
  376. -khtml-user-select: none;
  377. -moz-user-select: none;
  378. -ms-user-select: none;
  379. user-select: none;
  380. font-size: 12px;
  381. font-family: "Open Sans";
  382. color: #444444;
  383. text-shadow: 0 1px 0 white;
  384. margin: 0;
  385. position: absolute;
  386. display: block;
  387. overflow: hidden;
  388. -webkit-border-radius: 3px;
  389. -moz-border-radius: 3px;
  390. border-radius: 3px;
  391. border: 1px solid #919191;
  392. -webkit-box-shadow: inset 0 0 3px 0 #c3c3c3;
  393. -moz-box-shadow: inset 0 0 3px 0 #c3c3c3;
  394. box-shadow: inset 0 0 3px 0 #c3c3c3;
  395. background-color: white;
  396. background: -webkit-linear-gradient(top, #eee 0%, white 6px);
  397. background: -moz-linear-gradient(top, #eee 0%, white 6px);
  398. background: -ms-linear-gradient(top, #eee 0%, white 6px);
  399. background: -o-linear-gradient(top, #eee 0%, white 6px);
  400. background: linear-gradient(top, #eee 0%, white 6px);
  401. padding: 0;
  402. background: white;
  403. }
  404. .moka_view.mk_list:focus {
  405. outline: 0;
  406. }
  407. .moka_view.mk_list::-moz-focus-inner {
  408. border: 0;
  409. }
  410. .moka_view.mk_list:focus {
  411. outline: 0;
  412. border-color: #4a90d9;
  413. }
  414. .moka_view.mk_list:focus li.selected {
  415. background: #74aae2;
  416. color: white;
  417. }
  418. .moka_view.mk_list li {
  419. line-height: 2em;
  420. padding: 0 4px;
  421. text-shadow: 0 0 0;
  422. }
  423. .moka_view.mk_list li.selected {
  424. background: #dddddd;
  425. }
  426. .moka_view.mk_list.mk_sourcelist {
  427. background: transparent;
  428. border: 0;
  429. -webkit-border-radius: 0;
  430. -moz-border-radius: 0;
  431. border-radius: 0;
  432. -webkit-box-shadow: 0 0 0;
  433. -moz-box-shadow: 0 0 0;
  434. box-shadow: 0 0 0;
  435. }
  436. .moka_view.mk_list.mk_sourcelist li {
  437. border-top: 1px solid transparent;
  438. border-bottom: 1px solid transparent;
  439. padding: 0 14px;
  440. }
  441. .moka_view.mk_list.mk_sourcelist:focus li.selected,
  442. .moka_view.mk_list.mk_sourcelist li.selected {
  443. text-shadow: 0 1px 0 #333333;
  444. background: #74aae2;
  445. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #74aae2), color-stop(1, #9ec4eb));
  446. background: -ms-linear-gradient(bottom, #74aae2, #9ec4eb);
  447. background: -moz-linear-gradient(center bottom, #74aae2 0%, #9ec4eb 100%);
  448. background: -o-linear-gradient(#9ec4eb, #74aae2);
  449. background: linear-gradient(#9ec4eb, #74aae2);
  450. border-top: 1px solid #4a90d9;
  451. border-bottom: 1px solid #4a90d9;
  452. color: white;
  453. font-weight: bold;
  454. }
  455. .moka_view .mk_icon {
  456. vertical-align: middle;
  457. margin: -100px 2px;
  458. position: relative;
  459. top: -1px;
  460. }
  461. .moka_view.mk_dropdown {
  462. font-size: 12px;
  463. font-family: "Open Sans";
  464. color: #444444;
  465. text-shadow: 0 1px 0 white;
  466. padding: 0;
  467. margin: 0;
  468. position: absolute;
  469. display: block;
  470. overflow: hidden;
  471. -webkit-border-radius: 3px;
  472. -moz-border-radius: 3px;
  473. border-radius: 3px;
  474. border: 1px solid #919191;
  475. -webkit-box-shadow: inset 0 0 3px 0 #c3c3c3;
  476. -moz-box-shadow: inset 0 0 3px 0 #c3c3c3;
  477. box-shadow: inset 0 0 3px 0 #c3c3c3;
  478. background-color: white;
  479. background: -webkit-linear-gradient(top, #eee 0%, white 6px);
  480. background: -moz-linear-gradient(top, #eee 0%, white 6px);
  481. background: -ms-linear-gradient(top, #eee 0%, white 6px);
  482. background: -o-linear-gradient(top, #eee 0%, white 6px);
  483. background: linear-gradient(top, #eee 0%, white 6px);
  484. -webkit-touch-callout: none;
  485. -webkit-user-select: none;
  486. -khtml-user-select: none;
  487. -moz-user-select: none;
  488. -ms-user-select: none;
  489. user-select: none;
  490. -webkit-box-shadow: 0 1px 1px 0 #d8d8d8;
  491. -moz-box-shadow: 0 1px 1px 0 #d8d8d8;
  492. box-shadow: 0 1px 1px 0 #d8d8d8;
  493. background: #fafafa;
  494. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dedede), color-stop(1, #ffffff));
  495. background: -ms-linear-gradient(bottom, #dedede, #ffffff);
  496. background: -moz-linear-gradient(center bottom, #dedede 0%, #ffffff 100%);
  497. background: -o-linear-gradient(#ffffff, #dedede);
  498. background: linear-gradient(#ffffff, #dedede);
  499. text-align: left;
  500. padding: 0 8px;
  501. }
  502. .moka_view.mk_dropdown:focus {
  503. outline: 0;
  504. }
  505. .moka_view.mk_dropdown::-moz-focus-inner {
  506. border: 0;
  507. }
  508. .moka_view.mk_dropdown.default {
  509. background: #9ec4eb;
  510. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #9ec4eb), color-stop(1, #deeaf8));
  511. background: -ms-linear-gradient(bottom, #9ec4eb, #deeaf8);
  512. background: -moz-linear-gradient(center bottom, #9ec4eb 0%, #deeaf8 100%);
  513. background: -o-linear-gradient(#deeaf8, #9ec4eb);
  514. background: linear-gradient(#deeaf8, #9ec4eb);
  515. text-shadow: 0 1px 0 #eeeeee;
  516. }
  517. .moka_view.mk_dropdown.default:active {
  518. background: #9ec4eb;
  519. border-color: #4a90d9;
  520. }
  521. .moka_view.mk_dropdown:focus {
  522. border-color: #4a90d9;
  523. box-shadow: 0 0 5px #4a90d9;
  524. }
  525. .moka_view.mk_dropdown:active {
  526. background: #dddddd;
  527. -webkit-box-shadow: inset 0 0 3px 0 #888888;
  528. -moz-box-shadow: inset 0 0 3px 0 #888888;
  529. box-shadow: inset 0 0 3px 0 #888888;
  530. border-color: #947c7c;
  531. }
  532. .moka_view.mk_dropdown .mk_dropdown_arrows {
  533. position: absolute;
  534. right: 0;
  535. height: 100%;
  536. width: 24px;
  537. top: 0;
  538. background-image: url(/images/moka/dropdown_arrows.png);
  539. background-position: center;
  540. background-repeat: no-repeat;
  541. border-left: 1px solid #919191;
  542. }
  543. .moka_view.mk_dropdown_pane {
  544. padding: 6px;
  545. margin-left: -6px;
  546. margin-top: -6px;
  547. }
  548. .moka_view.mk_dropdown_pane .mk_dropdown_list {
  549. position: relative;
  550. display: inline-block;
  551. border: 0;
  552. background: white;
  553. -webkit-box-shadow: 0 0 6px #555555;
  554. -moz-box-shadow: 0 0 6px #555555;
  555. box-shadow: 0 0 6px #555555;
  556. -webkit-border-radius: 0;
  557. -moz-border-radius: 0;
  558. border-radius: 0;
  559. min-width: 120px;
  560. max-height: 400px;
  561. }
  562. .moka_view.mk_dropdown_pane .mk_dropdown_list li {
  563. padding: 0 6px;
  564. }
  565. .moka_view.mk_dropdown_pane .mk_dropdown_list li.selected {
  566. background: #4a90d9;
  567. color: white;
  568. }
  569. .moka_view.mk_dropdown_pane .mk_dropdown_list:focus {
  570. border: 0;
  571. }
  572. .moka_view.mk_split_view .mk_splitter {
  573. position: absolute;
  574. border-width: 0;
  575. z-index: 10;
  576. }
  577. .moka_view.mk_split_view.horizontal > .mk_splitter {
  578. height: 100%;
  579. width: 5px;
  580. cursor: ew-resize;
  581. float: left;
  582. margin-left: -1px;
  583. border-left: 1px solid #aaaaaa;
  584. }
  585. .moka_view.mk_split_view.vertical > .mk_splitter {
  586. height: 5px;
  587. margin-top: -1px;
  588. width: 100%;
  589. border-top: 1px solid #aaaaaa;
  590. cursor: ns-resize;
  591. }