moka.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566
  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. 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. zindex: 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";
  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_pane.mk_modal {
  74. z-index: 1001;
  75. background: transparent;
  76. border: 0 none;
  77. }
  78. .moka_view.mk_pane.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";
  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";
  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. }
  197. .moka_view.mk_button:focus {
  198. outline: 0;
  199. }
  200. .moka_view.mk_button::-moz-focus-inner {
  201. border: 0;
  202. }
  203. .moka_view.mk_button.default {
  204. background: #9ec4eb;
  205. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #9ec4eb), color-stop(1, #deeaf8));
  206. background: -ms-linear-gradient(bottom, #9ec4eb, #deeaf8);
  207. background: -moz-linear-gradient(center bottom, #9ec4eb 0%, #deeaf8 100%);
  208. background: -o-linear-gradient(#deeaf8, #9ec4eb);
  209. text-shadow: 0 1px 0 #eeeeee;
  210. }
  211. .moka_view.mk_button.default:active {
  212. background: #9ec4eb;
  213. border-color: #4a90d9;
  214. }
  215. .moka_view.mk_button:focus {
  216. border-color: #4a90d9;
  217. box-shadow: 0 0 5px #4a90d9;
  218. }
  219. .moka_view.mk_button:active {
  220. background: #dddddd;
  221. -webkit-box-shadow: inset 0 0 3px 0 #888888;
  222. -moz-box-shadow: inset 0 0 3px 0 #888888;
  223. box-shadow: inset 0 0 3px 0 #888888;
  224. border-color: #947c7c;
  225. }
  226. .moka_view.mk_input,
  227. .moka_view.mk_textarea {
  228. font-size: 12px;
  229. font-family: "Open Sans";
  230. line-height: 1.5em;
  231. color: #444444;
  232. text-shadow: 0 1px 0 white;
  233. padding: 0;
  234. margin: 0;
  235. position: absolute;
  236. display: block;
  237. overflow: hidden;
  238. -webkit-border-radius: 3px;
  239. -moz-border-radius: 3px;
  240. border-radius: 3px;
  241. border: 1px solid #919191;
  242. -webkit-box-shadow: inset 0 0 3px 0 #c3c3c3;
  243. -moz-box-shadow: inset 0 0 3px 0 #c3c3c3;
  244. box-shadow: inset 0 0 3px 0 #c3c3c3;
  245. background-color: white;
  246. background: -webkit-linear-gradient(top, #eee 0%, white 6px);
  247. background: -moz-linear-gradient(top, #eee 0%, white 6px);
  248. background: -ms-linear-gradient(top, #eee 0%, white 6px);
  249. background: -o-linear-gradient(top, #eee 0%, white 6px);
  250. background: linear-gradient(top, #eee 0%, white 6px);
  251. resize: none;
  252. padding: 0 4px;
  253. text-shadow: 0 0 0;
  254. }
  255. .moka_view.mk_input:focus,
  256. .moka_view.mk_textarea:focus {
  257. outline: 0;
  258. }
  259. .moka_view.mk_input::-moz-focus-inner,
  260. .moka_view.mk_textarea::-moz-focus-inner {
  261. border: 0;
  262. }
  263. .moka_view.mk_input:focus,
  264. .moka_view.mk_textarea:focus {
  265. -webkit-box-shadow: inset 0 0 3px 0 #888888;
  266. -moz-box-shadow: inset 0 0 3px 0 #888888;
  267. box-shadow: inset 0 0 3px 0 #888888;
  268. border-color: #4a90d9;
  269. }
  270. .moka_view.mk_checkbox {
  271. -webkit-touch-callout: none;
  272. -webkit-user-select: none;
  273. -khtml-user-select: none;
  274. -moz-user-select: none;
  275. -ms-user-select: none;
  276. user-select: none;
  277. background: url('../images/moka/check.png') 50% 50% no-repeat;
  278. height: 16px;
  279. width: 16px;
  280. }
  281. .moka_view.mk_checkbox:focus {
  282. outline: 0;
  283. }
  284. .moka_view.mk_checkbox.checked {
  285. background-image: url('../images/moka/check-active.png');
  286. }
  287. .moka_view.mk_switch {
  288. font-size: 12px;
  289. font-family: "Open Sans";
  290. line-height: 1.5em;
  291. color: #444444;
  292. text-shadow: 0 1px 0 white;
  293. padding: 0;
  294. margin: 0;
  295. position: absolute;
  296. display: block;
  297. overflow: hidden;
  298. -webkit-border-radius: 3px;
  299. -moz-border-radius: 3px;
  300. border-radius: 3px;
  301. border: 1px solid #919191;
  302. -webkit-box-shadow: inset 0 0 3px 0 #c3c3c3;
  303. -moz-box-shadow: inset 0 0 3px 0 #c3c3c3;
  304. box-shadow: inset 0 0 3px 0 #c3c3c3;
  305. background-color: white;
  306. background: -webkit-linear-gradient(top, #eee 0%, white 6px);
  307. background: -moz-linear-gradient(top, #eee 0%, white 6px);
  308. background: -ms-linear-gradient(top, #eee 0%, white 6px);
  309. background: -o-linear-gradient(top, #eee 0%, white 6px);
  310. background: linear-gradient(top, #eee 0%, white 6px);
  311. -webkit-touch-callout: none;
  312. -webkit-user-select: none;
  313. -khtml-user-select: none;
  314. -moz-user-select: none;
  315. -ms-user-select: none;
  316. user-select: none;
  317. -webkit-box-shadow: 0 1px 1px 0 #d8d8d8;
  318. -moz-box-shadow: 0 1px 1px 0 #d8d8d8;
  319. box-shadow: 0 1px 1px 0 #d8d8d8;
  320. background: #fafafa;
  321. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dedede), color-stop(1, #ffffff));
  322. background: -ms-linear-gradient(bottom, #dedede, #ffffff);
  323. background: -moz-linear-gradient(center bottom, #dedede 0%, #ffffff 100%);
  324. background: -o-linear-gradient(#ffffff, #dedede);
  325. -webkit-border-radius: 20px;
  326. -moz-border-radius: 20px;
  327. border-radius: 20px;
  328. vertical-align: middle;
  329. display: inline-block;
  330. height: 20px;
  331. width: 39px;
  332. background: url('../images/moka/switch.png') 100% 50% no-repeat;
  333. -webkit-transition: background 0.2s ease-out;
  334. -moz-transition: background 0.2s ease-out;
  335. -o-transition: background 0.2s ease-out;
  336. transition: background 0.2s ease-out;
  337. border-color: #6f6f6f;
  338. }
  339. .moka_view.mk_switch:focus {
  340. outline: 0;
  341. }
  342. .moka_view.mk_switch::-moz-focus-inner {
  343. border: 0;
  344. }
  345. .moka_view.mk_switch.default {
  346. background: #9ec4eb;
  347. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #9ec4eb), color-stop(1, #deeaf8));
  348. background: -ms-linear-gradient(bottom, #9ec4eb, #deeaf8);
  349. background: -moz-linear-gradient(center bottom, #9ec4eb 0%, #deeaf8 100%);
  350. background: -o-linear-gradient(#deeaf8, #9ec4eb);
  351. text-shadow: 0 1px 0 #eeeeee;
  352. }
  353. .moka_view.mk_switch.default:active {
  354. background: #9ec4eb;
  355. border-color: #4a90d9;
  356. }
  357. .moka_view.mk_switch:focus {
  358. border-color: #4a90d9;
  359. box-shadow: 0 0 5px #4a90d9;
  360. }
  361. .moka_view.mk_switch:active {
  362. background: #dddddd;
  363. -webkit-box-shadow: inset 0 0 3px 0 #888888;
  364. -moz-box-shadow: inset 0 0 3px 0 #888888;
  365. box-shadow: inset 0 0 3px 0 #888888;
  366. border-color: #947c7c;
  367. }
  368. .moka_view.mk_switch:active {
  369. background: url('../images/moka/switch.png') 100% 50% no-repeat;
  370. }
  371. .moka_view.mk_switch.checked {
  372. background: url('../images/moka/switch.png') 0% 50% no-repeat;
  373. }
  374. .moka_view.mk_list {
  375. cursor: default;
  376. -webkit-touch-callout: none;
  377. -webkit-user-select: none;
  378. -khtml-user-select: none;
  379. -moz-user-select: none;
  380. -ms-user-select: none;
  381. user-select: none;
  382. font-size: 12px;
  383. font-family: "Open Sans";
  384. line-height: 1.5em;
  385. color: #444444;
  386. text-shadow: 0 1px 0 white;
  387. margin: 0;
  388. position: absolute;
  389. display: block;
  390. overflow: hidden;
  391. -webkit-border-radius: 3px;
  392. -moz-border-radius: 3px;
  393. border-radius: 3px;
  394. border: 1px solid #919191;
  395. -webkit-box-shadow: inset 0 0 3px 0 #c3c3c3;
  396. -moz-box-shadow: inset 0 0 3px 0 #c3c3c3;
  397. box-shadow: inset 0 0 3px 0 #c3c3c3;
  398. background-color: white;
  399. background: -webkit-linear-gradient(top, #eee 0%, white 6px);
  400. background: -moz-linear-gradient(top, #eee 0%, white 6px);
  401. background: -ms-linear-gradient(top, #eee 0%, white 6px);
  402. background: -o-linear-gradient(top, #eee 0%, white 6px);
  403. background: linear-gradient(top, #eee 0%, white 6px);
  404. padding: 0;
  405. background: white;
  406. }
  407. .moka_view.mk_list:focus {
  408. outline: 0;
  409. }
  410. .moka_view.mk_list::-moz-focus-inner {
  411. border: 0;
  412. }
  413. .moka_view.mk_list:focus {
  414. outline: 0;
  415. border-color: #4a90d9;
  416. }
  417. .moka_view.mk_list:focus li.selected {
  418. background: #74aae2;
  419. color: white;
  420. }
  421. .moka_view.mk_list li {
  422. line-height: 2em;
  423. padding: 0 4px;
  424. text-shadow: 0 0 0;
  425. }
  426. .moka_view.mk_list li.selected {
  427. background: #dddddd;
  428. }
  429. .moka_view.mk_list.mk_sourcelist {
  430. background: transparent;
  431. border: 0;
  432. -webkit-border-radius: 0;
  433. -moz-border-radius: 0;
  434. border-radius: 0;
  435. -webkit-box-shadow: 0 0 0;
  436. -moz-box-shadow: 0 0 0;
  437. box-shadow: 0 0 0;
  438. }
  439. .moka_view.mk_list.mk_sourcelist li {
  440. border-top: 1px solid transparent;
  441. border-bottom: 1px solid transparent;
  442. padding: 0 14px;
  443. }
  444. .moka_view.mk_list.mk_sourcelist:focus li.selected,
  445. .moka_view.mk_list.mk_sourcelist li.selected {
  446. text-shadow: 0 1px 0 #333333;
  447. background: #74aae2;
  448. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #74aae2), color-stop(1, #9ec4eb));
  449. background: -ms-linear-gradient(bottom, #74aae2, #9ec4eb);
  450. background: -moz-linear-gradient(center bottom, #74aae2 0%, #9ec4eb 100%);
  451. background: -o-linear-gradient(#9ec4eb, #74aae2);
  452. border-top: 1px solid #4a90d9;
  453. border-bottom: 1px solid #4a90d9;
  454. color: white;
  455. font-weight: bold;
  456. }
  457. .moka_view.mk_dropdown {
  458. font-size: 12px;
  459. font-family: "Open Sans";
  460. line-height: 1.5em;
  461. color: #444444;
  462. text-shadow: 0 1px 0 white;
  463. padding: 0;
  464. margin: 0;
  465. position: absolute;
  466. display: block;
  467. overflow: hidden;
  468. -webkit-border-radius: 3px;
  469. -moz-border-radius: 3px;
  470. border-radius: 3px;
  471. border: 1px solid #919191;
  472. -webkit-box-shadow: inset 0 0 3px 0 #c3c3c3;
  473. -moz-box-shadow: inset 0 0 3px 0 #c3c3c3;
  474. box-shadow: inset 0 0 3px 0 #c3c3c3;
  475. background-color: white;
  476. background: -webkit-linear-gradient(top, #eee 0%, white 6px);
  477. background: -moz-linear-gradient(top, #eee 0%, white 6px);
  478. background: -ms-linear-gradient(top, #eee 0%, white 6px);
  479. background: -o-linear-gradient(top, #eee 0%, white 6px);
  480. background: linear-gradient(top, #eee 0%, white 6px);
  481. -webkit-touch-callout: none;
  482. -webkit-user-select: none;
  483. -khtml-user-select: none;
  484. -moz-user-select: none;
  485. -ms-user-select: none;
  486. user-select: none;
  487. -webkit-box-shadow: 0 1px 1px 0 #d8d8d8;
  488. -moz-box-shadow: 0 1px 1px 0 #d8d8d8;
  489. box-shadow: 0 1px 1px 0 #d8d8d8;
  490. background: #fafafa;
  491. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dedede), color-stop(1, #ffffff));
  492. background: -ms-linear-gradient(bottom, #dedede, #ffffff);
  493. background: -moz-linear-gradient(center bottom, #dedede 0%, #ffffff 100%);
  494. background: -o-linear-gradient(#ffffff, #dedede);
  495. text-align: left;
  496. padding: 0 8px;
  497. }
  498. .moka_view.mk_dropdown:focus {
  499. outline: 0;
  500. }
  501. .moka_view.mk_dropdown::-moz-focus-inner {
  502. border: 0;
  503. }
  504. .moka_view.mk_dropdown.default {
  505. background: #9ec4eb;
  506. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #9ec4eb), color-stop(1, #deeaf8));
  507. background: -ms-linear-gradient(bottom, #9ec4eb, #deeaf8);
  508. background: -moz-linear-gradient(center bottom, #9ec4eb 0%, #deeaf8 100%);
  509. background: -o-linear-gradient(#deeaf8, #9ec4eb);
  510. text-shadow: 0 1px 0 #eeeeee;
  511. }
  512. .moka_view.mk_dropdown.default:active {
  513. background: #9ec4eb;
  514. border-color: #4a90d9;
  515. }
  516. .moka_view.mk_dropdown:focus {
  517. border-color: #4a90d9;
  518. box-shadow: 0 0 5px #4a90d9;
  519. }
  520. .moka_view.mk_dropdown:active {
  521. background: #dddddd;
  522. -webkit-box-shadow: inset 0 0 3px 0 #888888;
  523. -moz-box-shadow: inset 0 0 3px 0 #888888;
  524. box-shadow: inset 0 0 3px 0 #888888;
  525. border-color: #947c7c;
  526. }
  527. .moka_view.mk_dropdown .mk_dropdown_arrows {
  528. position: absolute;
  529. right: 0;
  530. height: 100%;
  531. width: 24px;
  532. top: 0;
  533. background-image: url(/images/moka/dropdown_arrows.png);
  534. background-position: center;
  535. background-repeat: no-repeat;
  536. border-left: 1px solid #919191;
  537. }
  538. .moka_view.mk_dropdown_pane {
  539. padding: 6px;
  540. margin-left: -6px;
  541. margin-top: -6px;
  542. }
  543. .moka_view.mk_dropdown_pane .mk_dropdown_list {
  544. position: relative;
  545. display: inline-block;
  546. border: 0;
  547. background: white;
  548. -webkit-box-shadow: 0 0 6px #555555;
  549. -moz-box-shadow: 0 0 6px #555555;
  550. box-shadow: 0 0 6px #555555;
  551. -webkit-border-radius: 0;
  552. -moz-border-radius: 0;
  553. border-radius: 0;
  554. min-width: 120px;
  555. max-height: 400px;
  556. }
  557. .moka_view.mk_dropdown_pane .mk_dropdown_list li {
  558. padding: 0 6px;
  559. }
  560. .moka_view.mk_dropdown_pane .mk_dropdown_list li.selected {
  561. background: #4a90d9;
  562. color: white;
  563. }
  564. .moka_view.mk_dropdown_pane .mk_dropdown_list:focus {
  565. border: 0;
  566. }