moka.css 17 KB

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