select2.css 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404
  1. /*
  2. Version: 3.5.2 Timestamp: Sat Nov 1 14:43:36 EDT 2014
  3. */
  4. .select2-container {
  5. margin: 0;
  6. position: relative;
  7. display: inline-block;
  8. /* inline-block for ie7 */
  9. zoom: 1;
  10. *display: inline;
  11. width: 100%;
  12. vertical-align: middle;
  13. }
  14. .select2-container,
  15. .select2-drop,
  16. .select2-search,
  17. .select2-search input {
  18. /*
  19. Force border-box so that % widths fit the parent
  20. container without overlap because of margin/padding.
  21. More Info : http://www.quirksmode.org/css/box.html
  22. */
  23. -webkit-box-sizing: border-box; /* webkit */
  24. -moz-box-sizing: border-box; /* firefox */
  25. box-sizing: border-box; /* css3 */
  26. }
  27. .select2-container .select2-choice {
  28. display: block;
  29. height: 26px;
  30. padding: 0 0 0 10px;
  31. overflow: hidden;
  32. position: relative;
  33. border: 1px solid #aaa;
  34. white-space: nowrap;
  35. line-height: 26px;
  36. color: #444;
  37. text-decoration: none;
  38. border-radius: 4px;
  39. background-clip: padding-box;
  40. -webkit-touch-callout: none;
  41. -webkit-user-select: none;
  42. -moz-user-select: none;
  43. -ms-user-select: none;
  44. user-select: none;
  45. background-color: #fff;
  46. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
  47. background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
  48. background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
  49. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
  50. background-image: linear-gradient(to top, #eee 0%, #fff 50%);
  51. }
  52. html[dir="rtl"] .select2-container .select2-choice {
  53. padding: 0 8px 0 0;
  54. }
  55. .select2-container.select2-drop-above .select2-choice {
  56. border-bottom-color: #aaa;
  57. border-radius: 0 0 4px 4px;
  58. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
  59. background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
  60. background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
  61. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  62. background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
  63. }
  64. .select2-container.select2-allowclear .select2-choice .select2-chosen {
  65. margin-right: 42px;
  66. }
  67. .select2-container .select2-choice > .select2-chosen {
  68. margin-right: 26px;
  69. display: block;
  70. overflow: hidden;
  71. white-space: nowrap;
  72. text-overflow: ellipsis;
  73. float: none;
  74. width: auto;
  75. }
  76. html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
  77. margin-left: 26px;
  78. margin-right: 0;
  79. }
  80. .select2-container .select2-choice abbr {
  81. display: none;
  82. width: 12px;
  83. height: 12px;
  84. position: absolute;
  85. right: 24px;
  86. top: 8px;
  87. font-size: 1px;
  88. text-decoration: none;
  89. border: 0;
  90. cursor: pointer;
  91. outline: 0;
  92. }
  93. .select2-container.select2-allowclear .select2-choice abbr {
  94. display: inline-block;
  95. }
  96. .select2-container .select2-choice abbr:hover {
  97. background-position: right -11px;
  98. cursor: pointer;
  99. }
  100. .select2-drop-mask {
  101. border: 0;
  102. margin: 0;
  103. padding: 0;
  104. position: fixed;
  105. left: 0;
  106. top: 0;
  107. min-height: 100%;
  108. min-width: 100%;
  109. height: auto;
  110. width: auto;
  111. opacity: 0;
  112. z-index: 9998;
  113. /* styles required for IE to work */
  114. background-color: #fff;
  115. filter: alpha(opacity=0);
  116. }
  117. .select2-drop {
  118. width: 100%;
  119. margin-top: -1px;
  120. position: absolute;
  121. z-index: 9999;
  122. top: 100%;
  123. background: #fff;
  124. color: #000;
  125. border: 1px solid #aaa;
  126. border-top: 0;
  127. border-radius: 0 0 4px 4px;
  128. -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  129. box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  130. }
  131. .select2-drop.select2-drop-above {
  132. margin-top: 1px;
  133. border-top: 1px solid #aaa;
  134. border-bottom: 0;
  135. border-radius: 4px 4px 0 0;
  136. -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
  137. box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
  138. }
  139. .select2-drop-active {
  140. border: 1px solid #5897fb;
  141. border-top: none;
  142. }
  143. .select2-drop.select2-drop-above.select2-drop-active {
  144. border-top: 1px solid #5897fb;
  145. }
  146. .select2-drop-auto-width {
  147. border-top: 1px solid #aaa;
  148. width: auto;
  149. }
  150. .select2-drop-auto-width .select2-search {
  151. padding-top: 4px;
  152. }
  153. .select2-container .select2-choice .select2-arrow {
  154. display: inline-block;
  155. width: 18px;
  156. height: 100%;
  157. position: absolute;
  158. right: 0;
  159. top: 0;
  160. border-left: 1px solid #aaa;
  161. border-radius: 0 4px 4px 0;
  162. background-clip: padding-box;
  163. background: #ccc;
  164. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
  165. background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  166. background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  167. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
  168. background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
  169. }
  170. html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
  171. left: 0;
  172. right: auto;
  173. border-left: none;
  174. border-right: 1px solid #aaa;
  175. border-radius: 4px 0 0 4px;
  176. }
  177. .select2-container .select2-choice .select2-arrow b {
  178. display: block;
  179. width: 100%;
  180. height: 100%;
  181. }
  182. html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
  183. background-position: 2px 1px;
  184. }
  185. .select2-search {
  186. display: inline-block;
  187. width: 100%;
  188. min-height: 26px;
  189. margin: 0;
  190. padding-left: 4px;
  191. padding-right: 4px;
  192. position: relative;
  193. z-index: 10000;
  194. white-space: nowrap;
  195. }
  196. .select2-search input {
  197. width: 100%;
  198. height: auto !important;
  199. min-height: 26px;
  200. padding: 4px 20px 4px 5px;
  201. margin: 0;
  202. outline: 0;
  203. font-family: sans-serif;
  204. font-size: 1em;
  205. border: 1px solid #aaa;
  206. border-radius: 0;
  207. -webkit-box-shadow: none;
  208. box-shadow: none;
  209. background: #fff url('select2.png') no-repeat 100% -22px;
  210. background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  211. background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  212. background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  213. background: url('select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
  214. }
  215. html[dir="rtl"] .select2-search input {
  216. padding: 4px 5px 4px 20px;
  217. background: #fff url('select2.png') no-repeat -37px -22px;
  218. background: url('select2.png') no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  219. background: url('select2.png') no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  220. background: url('select2.png') no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  221. background: url('select2.png') no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
  222. }
  223. .select2-drop.select2-drop-above .select2-search input {
  224. margin-top: 4px;
  225. }
  226. .select2-search input.select2-active {
  227. background: #fff url('../img/select2-spinner.gif') no-repeat 100%;
  228. background: url('../img/select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  229. background: url('../img/select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  230. background: url('../img/select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  231. background: url('../img/select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
  232. }
  233. .select2-container-active .select2-choice,
  234. .select2-container-active .select2-choices {
  235. border: 1px solid #5897fb;
  236. outline: none;
  237. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  238. box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  239. }
  240. .select2-dropdown-open .select2-choice {
  241. border-bottom-color: transparent;
  242. -webkit-box-shadow: 0 1px 0 #fff inset;
  243. box-shadow: 0 1px 0 #fff inset;
  244. border-bottom-left-radius: 0;
  245. border-bottom-right-radius: 0;
  246. background-color: #eee;
  247. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
  248. background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
  249. background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
  250. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  251. background-image: linear-gradient(to top, #fff 0%, #eee 50%);
  252. }
  253. .select2-dropdown-open.select2-drop-above .select2-choice,
  254. .select2-dropdown-open.select2-drop-above .select2-choices {
  255. border: 1px solid #5897fb;
  256. border-top-color: transparent;
  257. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
  258. background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
  259. background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
  260. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  261. background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  262. }
  263. .select2-dropdown-open .select2-choice .select2-arrow {
  264. background: transparent;
  265. border-left: none;
  266. filter: none;
  267. }
  268. html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
  269. border-right: none;
  270. }
  271. .select2-dropdown-open .select2-choice .select2-arrow b {
  272. background-position: -18px 1px;
  273. }
  274. html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
  275. background-position: -16px 1px;
  276. }
  277. .select2-hidden-accessible {
  278. border: 0;
  279. clip: rect(0 0 0 0);
  280. height: 1px;
  281. margin: -1px;
  282. overflow: hidden;
  283. padding: 0;
  284. position: absolute;
  285. width: 1px;
  286. }
  287. /* results */
  288. .select2-results {
  289. max-height: 200px;
  290. padding: 0 0 0 4px;
  291. margin: 4px 4px 4px 0;
  292. position: relative;
  293. overflow-x: hidden;
  294. overflow-y: auto;
  295. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  296. }
  297. html[dir="rtl"] .select2-results {
  298. padding: 0 4px 0 0;
  299. margin: 4px 0 4px 4px;
  300. }
  301. .select2-results ul.select2-result-sub {
  302. margin: 0;
  303. padding-left: 0;
  304. }
  305. .select2-results li {
  306. list-style: none;
  307. display: list-item;
  308. background-image: none;
  309. }
  310. .select2-results li.select2-result-with-children > .select2-result-label {
  311. font-weight: bold;
  312. }
  313. .select2-results .select2-result-label {
  314. padding: 3px 7px 4px;
  315. margin: 0;
  316. cursor: pointer;
  317. min-height: 1em;
  318. -webkit-touch-callout: none;
  319. -webkit-user-select: none;
  320. -moz-user-select: none;
  321. -ms-user-select: none;
  322. user-select: none;
  323. }
  324. .select2-results-dept-1 .select2-result-label { padding-left: 20px }
  325. .select2-results-dept-2 .select2-result-label { padding-left: 40px }
  326. .select2-results-dept-3 .select2-result-label { padding-left: 60px }
  327. .select2-results-dept-4 .select2-result-label { padding-left: 80px }
  328. .select2-results-dept-5 .select2-result-label { padding-left: 100px }
  329. .select2-results-dept-6 .select2-result-label { padding-left: 110px }
  330. .select2-results-dept-7 .select2-result-label { padding-left: 120px }
  331. .select2-results .select2-highlighted {
  332. background: #3875d7;
  333. color: #fff;
  334. }
  335. .select2-results li em {
  336. background: #feffde;
  337. font-style: normal;
  338. }
  339. .select2-results .select2-highlighted em {
  340. background: transparent;
  341. }
  342. .select2-results .select2-highlighted ul {
  343. background: #fff;
  344. color: #000;
  345. }
  346. .select2-results .select2-no-results,
  347. .select2-results .select2-searching,
  348. .select2-results .select2-ajax-error,
  349. .select2-results .select2-selection-limit {
  350. background: #f4f4f4;
  351. display: list-item;
  352. padding-left: 5px;
  353. }
  354. /*
  355. disabled look for disabled choices in the results dropdown
  356. */
  357. .select2-results .select2-disabled.select2-highlighted {
  358. color: #666;
  359. background: #f4f4f4;
  360. display: list-item;
  361. cursor: default;
  362. }
  363. .select2-results .select2-disabled {
  364. background: #f4f4f4;
  365. display: list-item;
  366. cursor: default;
  367. }
  368. .select2-results .select2-selected {
  369. display: none;
  370. }
  371. .select2-more-results.select2-active {
  372. background: #f4f4f4 url('../img/select2-spinner.gif') no-repeat 100%;
  373. }
  374. .select2-results .select2-ajax-error {
  375. background: rgba(255, 50, 50, .2);
  376. }
  377. .select2-more-results {
  378. background: #f4f4f4;
  379. display: list-item;
  380. }
  381. /* disabled styles */
  382. .select2-container.select2-container-disabled .select2-choice {
  383. background-color: #f4f4f4;
  384. background-image: none;
  385. border: 1px solid #ddd;
  386. cursor: default;
  387. }
  388. .select2-container.select2-container-disabled .select2-choice .select2-arrow {
  389. background-color: #f4f4f4;
  390. background-image: none;
  391. border-left: 0;
  392. }
  393. .select2-container.select2-container-disabled .select2-choice abbr {
  394. display: none;
  395. }
  396. /* multiselect */
  397. .select2-container-multi .select2-choices {
  398. height: auto !important;
  399. height: 1%;
  400. margin: 0;
  401. padding: 0 5px 3px 0;
  402. position: relative;
  403. border: 1px solid #aaa;
  404. cursor: text;
  405. overflow: hidden;
  406. background-color: #fff;
  407. background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
  408. background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
  409. background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
  410. background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
  411. }
  412. html[dir="rtl"] .select2-container-multi .select2-choices {
  413. padding: 0 0 0 5px;
  414. }
  415. .select2-locked {
  416. padding: 3px 5px 3px 5px !important;
  417. }
  418. .select2-container-multi .select2-choices {
  419. min-height: 26px;
  420. }
  421. .select2-container-multi.select2-container-active .select2-choices {
  422. border: 1px solid #5897fb;
  423. outline: none;
  424. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  425. box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  426. }
  427. .select2-container-multi .select2-choices li {
  428. float: left;
  429. list-style: none;
  430. }
  431. html[dir="rtl"] .select2-container-multi .select2-choices li
  432. {
  433. float: right;
  434. }
  435. .select2-container-multi .select2-choices .select2-search-field {
  436. margin: 0;
  437. padding: 0;
  438. white-space: nowrap;
  439. }
  440. .select2-container-multi .select2-choices .select2-search-field input {
  441. padding: 5px;
  442. margin: 1px 0;
  443. font-family: sans-serif;
  444. font-size: 100%;
  445. color: #666;
  446. outline: 0;
  447. border: 0;
  448. -webkit-box-shadow: none;
  449. box-shadow: none;
  450. background: transparent !important;
  451. }
  452. .select2-container-multi .select2-choices .select2-search-field input.select2-active {
  453. background: #fff url('../img/select2-spinner.gif') no-repeat 100% !important;
  454. }
  455. .select2-default {
  456. color: #999 !important;
  457. }
  458. .select2-container-multi .select2-choices .select2-search-choice {
  459. padding: 3px 5px 3px 18px;
  460. margin: 3px 0 3px 5px;
  461. position: relative;
  462. line-height: 13px;
  463. color: #333;
  464. cursor: default;
  465. border: 1px solid #aaaaaa;
  466. border-radius: 3px;
  467. -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  468. box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  469. background-clip: padding-box;
  470. -webkit-touch-callout: none;
  471. -webkit-user-select: none;
  472. -moz-user-select: none;
  473. -ms-user-select: none;
  474. user-select: none;
  475. background-color: #e4e4e4;
  476. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
  477. background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
  478. background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  479. background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  480. background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  481. }
  482. html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
  483. {
  484. margin: 3px 5px 3px 0;
  485. padding: 3px 18px 3px 5px;
  486. }
  487. .select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
  488. cursor: default;
  489. }
  490. .select2-container-multi .select2-choices .select2-search-choice-focus {
  491. background: #d4d4d4;
  492. }
  493. .select2-search-choice-close {
  494. display: block;
  495. width: 12px;
  496. height: 13px;
  497. position: absolute;
  498. right: 3px;
  499. top: 4px;
  500. font-size: 1px;
  501. outline: none;
  502. }
  503. html[dir="rtl"] .select2-search-choice-close {
  504. right: auto;
  505. left: 3px;
  506. }
  507. .select2-container-multi .select2-search-choice-close {
  508. left: 3px;
  509. }
  510. html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
  511. left: auto;
  512. right: 2px;
  513. }
  514. .select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  515. background-position: right -11px;
  516. }
  517. .select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  518. background-position: right -11px;
  519. }
  520. /* disabled styles */
  521. .select2-container-multi.select2-container-disabled .select2-choices {
  522. background-color: #f4f4f4;
  523. background-image: none;
  524. border: 1px solid #ddd;
  525. cursor: default;
  526. }
  527. .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  528. padding: 3px 5px 3px 5px;
  529. border: 1px solid #ddd;
  530. background-image: none;
  531. background-color: #f4f4f4;
  532. }
  533. .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close { display: none;
  534. background: none;
  535. }
  536. /* end multiselect */
  537. .select2-result-selectable .select2-match,
  538. .select2-result-unselectable .select2-match {
  539. text-decoration: underline;
  540. }
  541. .select2-offscreen, .select2-offscreen:focus {
  542. clip: rect(0 0 0 0) !important;
  543. width: 1px !important;
  544. height: 1px !important;
  545. border: 0 !important;
  546. margin: 0 !important;
  547. padding: 0 !important;
  548. overflow: hidden !important;
  549. position: absolute !important;
  550. outline: 0 !important;
  551. left: 0px !important;
  552. top: 0px !important;
  553. }
  554. .select2-display-none {
  555. display: none;
  556. }
  557. .select2-measure-scrollbar {
  558. position: absolute;
  559. top: -10000px;
  560. left: -10000px;
  561. width: 100px;
  562. height: 100px;
  563. overflow: scroll;
  564. }
  565. /* Retina-ize icons */
  566. @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
  567. .select2-search input,
  568. .select2-search-choice-close,
  569. .select2-container .select2-choice abbr,
  570. .select2-container .select2-choice .select2-arrow b {
  571. background-image: url('select2x2.png') !important;
  572. background-repeat: no-repeat !important;
  573. background-size: 60px 40px !important;
  574. }
  575. .select2-search input {
  576. background-position: 100% -21px !important;
  577. }
  578. }
  579. /*!
  580. * select2-skins
  581. * Released under MIT. Copyright 2014 Mienard Lumaad
  582. * http://ui.themepixels.com/select2-skins
  583. *
  584. * Github Repository: https://github.com/themepixels/select2-skins
  585. *
  586. */
  587. .tpx-select2-container {
  588. font-family: 'Helvetica Neue', Helvetica, sans-serif;
  589. }
  590. .tpx-select2-container .select2-choice {
  591. height: 34px;
  592. background-image: none;
  593. border-radius: 3px;
  594. border-color: rgba(0, 0, 0, 0.2);
  595. }
  596. .tpx-select2-container .select2-choice > .select2-chosen {
  597. line-height: 30px;
  598. font-size: 14px;
  599. margin-right: 34px;
  600. }
  601. .tpx-select2-container .select2-choice .select2-arrow {
  602. background-image: none;
  603. background-color: #fff;
  604. width: 30px;
  605. border-left-color: rgba(0, 0, 0, 0.2);
  606. }
  607. .tpx-select2-container .select2-choice .select2-arrow b {
  608. display: none;
  609. }
  610. .tpx-select2-container .select2-choice .select2-arrow:before {
  611. position: absolute;
  612. width: 28px;
  613. content: '\f078';
  614. font-family: 'FontAwesome';
  615. font-size: 12px;
  616. text-align: center;
  617. line-height: 32px;
  618. opacity: .5;
  619. }
  620. .tpx-select2-container.select2-dropdown-open .select2-choice {
  621. background-color: #fff;
  622. border-bottom-left-radius: 0;
  623. border-bottom-right-radius: 0;
  624. }
  625. .tpx-select2-container.select2-dropdown-open .select2-choice .select2-arrow {
  626. border-left: 1px solid rgba(0, 0, 0, 0.2);
  627. }
  628. .tpx-select2-container.select2-dropdown-open .select2-choice .select2-arrow:before {
  629. content: '\f077';
  630. opacity: .7;
  631. }
  632. .tpx-select2-container.select2-dropdown-open.select2-container-active .select2-choice {
  633. box-shadow: none;
  634. }
  635. .tpx-select2-container.select2-dropdown-open.select2-drop-above .select2-choice {
  636. background-image: none;
  637. border-top: 1px solid rgba(0, 0, 0, 0.3);
  638. border-radius: 0 0 3px 3px;
  639. }
  640. .tpx-select2-container.select2-container-active .select2-choice {
  641. border-color: rgba(0, 0, 0, 0.3);
  642. box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  643. }
  644. .tpx-select2-container.select2-container-active .select2-choice .select2-arrow {
  645. border-left-color: rgba(0, 0, 0, 0.3);
  646. }
  647. .tpx-select2-container .select2-drop-active {
  648. border-color: rgba(0, 0, 0, 0.3);
  649. }
  650. .tpx-select2-container.select2-container-disabled .select2-choice .select2-arrow {
  651. border-left: 1px solid rgba(0, 0, 0, 0.1);
  652. }
  653. .tpx-select2-container.select2-container-multi .select2-choices {
  654. min-height: 34px;
  655. background-image: none;
  656. border-color: rgba(0, 0, 0, 0.2);
  657. border-radius: 3px;
  658. }
  659. .tpx-select2-container.select2-container-multi .select2-choices .select2-search-choice {
  660. position: relative;
  661. border-color: rgba(0, 0, 0, 0.2);
  662. background-image: none;
  663. box-shadow: none;
  664. font-size: 13px;
  665. background-color: #f7f7f7;
  666. border-radius: 2px;
  667. padding-top: 4px;
  668. padding-bottom: 4px;
  669. line-height: 16px;
  670. margin-left: 3px;
  671. margin-bottom: 0;
  672. }
  673. .tpx-select2-container.select2-container-multi .select2-choices .select2-search-choice:before {
  674. position: absolute;
  675. top: 4px;
  676. left: 5px;
  677. font-family: 'FontAwesome';
  678. content: '\f00d';
  679. z-index: 5;
  680. font-size: 11px;
  681. }
  682. .tpx-select2-container.select2-container-multi .select2-choices .select2-search-field input {
  683. font-family: 'Helvetica Neue', Helvetica, sans-serif;
  684. font-size: 14px;
  685. margin: 0;
  686. padding-left: 8px;
  687. line-height: 21px;
  688. }
  689. .tpx-select2-container.select2-container-multi.select2-container-active .select2-choices {
  690. box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  691. border-color: rgba(0, 0, 0, 0.3);
  692. }
  693. .tpx-select2-container.select2-container-multi.select2-container-active.select2-dropdown-open .select2-choices {
  694. border-radius: 3px 3px 0 0;
  695. }
  696. .tpx-select2-container.select2-container-multi.select2-container-active.select2-drop-above .select2-choices {
  697. border-radius: 0 0 3px 3px;
  698. }
  699. .tpx-select2-container .select2-search-choice-close {
  700. top: 5px;
  701. background: none;
  702. z-index: 10;
  703. }
  704. .tpx-select2-drop {
  705. font-family: 'Helvetica Neue', Helvetica, sans-serif;
  706. border-color: rgba(0, 0, 0, 0.3);
  707. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
  708. border-top: 1px solid rgba(0, 0, 0, 0.3);
  709. border-radius: 0 0 3px 3px;
  710. }
  711. .tpx-select2-drop .select2-search {
  712. padding-top: 5px;
  713. position: relative;
  714. }
  715. .tpx-select2-drop .select2-search input {
  716. background-color: #fff;
  717. background-image: none;
  718. border-color: rgba(0, 0, 0, 0.3);
  719. font-size: 14px;
  720. padding: 7px 20px 7px 5px;
  721. }
  722. .tpx-select2-drop .select2-search:after {
  723. position: absolute;
  724. font-family: 'FontAwesome';
  725. content: '\f002';
  726. top: 10px;
  727. right: 12px;
  728. font-size: 15px;
  729. opacity: .5;
  730. }
  731. .tpx-select2-drop .select2-results {
  732. font-size: 14px;
  733. }
  734. .tpx-select2-drop .select2-results li {
  735. line-height: 1.42857;
  736. }
  737. .tpx-select2-drop .select2-results .select2-highlighted {
  738. background-color: #428bca;
  739. border-radius: 2px;
  740. }
  741. .tpx-select2-drop.select2-drop-above {
  742. border-radius: 3px 3px 0 0;
  743. border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  744. }
  745. .tpx-select2-drop.select2-drop-above .select2-search input {
  746. margin-top: 0;
  747. }
  748. .tpx-select2-drop.select2-drop-above.select2-drop-active {
  749. border-top-color: rgba(0, 0, 0, 0.3);
  750. }
  751. .select2-container-lg .select2-choice {
  752. height: 46px;
  753. padding-left: 12px;
  754. }
  755. .select2-container-lg .select2-choice .select2-arrow {
  756. width: 40px;
  757. }
  758. .select2-container-lg .select2-choice .select2-arrow:before {
  759. width: 38px;
  760. font-size: 17px;
  761. top: 6px;
  762. }
  763. .select2-container-lg .select2-choice > .select2-chosen {
  764. font-size: 16px;
  765. line-height: 44px;
  766. }
  767. .select2-container-lg.select2-container-multi .select2-choices {
  768. min-height: 46px;
  769. }
  770. .select2-container-lg.select2-container-multi .select2-choices .select2-search-field input {
  771. font-size: 16px;
  772. padding-top: 11px;
  773. padding-bottom: 11px;
  774. padding-left: 10px;
  775. }
  776. .select2-container-lg.select2-container-multi .select2-choices .select2-search-choice {
  777. padding-top: 10px;
  778. padding-bottom: 10px;
  779. padding-right: 10px;
  780. padding-left: 25px;
  781. font-size: 15px;
  782. }
  783. .select2-container-lg.select2-container-multi .select2-choices .select2-search-choice:before {
  784. top: 10px;
  785. left: 8px;
  786. }
  787. .select2-container-lg.select2-container-multi .select2-search-choice-close {
  788. top: 12px;
  789. left: 8px;
  790. }
  791. .select2-container-sm .select2-choice {
  792. height: 30px;
  793. }
  794. .select2-container-sm .select2-choice .select2-arrow {
  795. width: 28px;
  796. }
  797. .select2-container-sm .select2-choice .select2-arrow:before {
  798. line-height: 26px;
  799. width: 26px;
  800. font-size: 10px;
  801. }
  802. .select2-container-sm .select2-choice > .select2-chosen {
  803. font-size: 12px;
  804. line-height: 26px;
  805. }
  806. .select2-container-sm.select2-container-multi .select2-choices {
  807. min-height: 30px;
  808. }
  809. .select2-container-sm.select2-container-multi .select2-choices .select2-search-field input {
  810. padding-bottom: 3px;
  811. padding-top: 3px;
  812. font-size: 12px;
  813. padding-left: 8px;
  814. }
  815. .select2-container-sm.select2-container-multi .select2-choices .select2-search-choice {
  816. font-size: 11px;
  817. line-height: 12px;
  818. }
  819. .select2-container-sm.select2-container-multi .select2-search-choice-close {
  820. top: 3px;
  821. }
  822. .select2-drop-sm .select2-search input {
  823. font-size: 12px;
  824. }
  825. .select2-drop-sm .select2-results {
  826. font-size: 12px;
  827. }
  828. .tpx-select2-container.select2-error .select2-choice {
  829. border-color: #cc0000;
  830. background-color: #ffffff;
  831. box-shadow: none;
  832. color: #333333;
  833. }
  834. .tpx-select2-container.select2-error .select2-choice .select2-arrow {
  835. border-left-color: #cc0000;
  836. background-color: #ffffff;
  837. color: #333333;
  838. }
  839. .tpx-select2-container.select2-error .select2-default .select2-chosen {
  840. color: rgba(51, 51, 51, 0.5);
  841. }
  842. .tpx-select2-container.select2-error.select2-container-multi .select2-choices .select2-search-choice {
  843. border-color: #b30000;
  844. background-color: #ffffff;
  845. color: #333333;
  846. }
  847. .tpx-select2-container.select2-error.select2-container-multi .select2-choices .select2-search-choice:before {
  848. color: rgba(51, 51, 51, 0.5);
  849. }
  850. .tpx-select2-container.select2-error.select2-container-active .select2-choice {
  851. border-color: #a80000;
  852. }
  853. .tpx-select2-container.select2-error.select2-container-active .select2-choice .select2-arrow {
  854. border-left-color: #a80000;
  855. }
  856. .tpx-select2-drop.select2-error {
  857. border-color: #a80000;
  858. background-color: #ffffff;
  859. }
  860. .tpx-select2-drop.select2-error .select2-search input {
  861. border-color: #a80000;
  862. }
  863. .tpx-select2-drop.select2-error .select2-results {
  864. color: #333333;
  865. }
  866. .tpx-select2-drop.select2-error .select2-highlighted {
  867. background-color: #cccccc;
  868. }
  869. .tpx-select2-container.select2-success .select2-choice {
  870. border-color: #3c763d;
  871. background-color: #ffffff;
  872. box-shadow: none;
  873. color: #333333;
  874. }
  875. .tpx-select2-container.select2-success .select2-choice .select2-arrow {
  876. border-left-color: #3c763d;
  877. background-color: #ffffff;
  878. color: #333333;
  879. }
  880. .tpx-select2-container.select2-success .select2-default .select2-chosen {
  881. color: rgba(51, 51, 51, 0.5);
  882. }
  883. .tpx-select2-container.select2-success.select2-container-multi .select2-choices .select2-search-choice {
  884. border-color: #336534;
  885. background-color: #ffffff;
  886. color: #333333;
  887. }
  888. .tpx-select2-container.select2-success.select2-container-multi .select2-choices .select2-search-choice:before {
  889. color: rgba(51, 51, 51, 0.5);
  890. }
  891. .tpx-select2-container.select2-success.select2-container-active .select2-choice {
  892. border-color: #305e31;
  893. }
  894. .tpx-select2-container.select2-success.select2-container-active .select2-choice .select2-arrow {
  895. border-left-color: #305e31;
  896. }
  897. .tpx-select2-drop.select2-success {
  898. border-color: #305e31;
  899. background-color: #ffffff;
  900. }
  901. .tpx-select2-drop.select2-success .select2-search input {
  902. border-color: #305e31;
  903. }
  904. .tpx-select2-drop.select2-success .select2-results {
  905. color: #333333;
  906. }
  907. .tpx-select2-drop.select2-success .select2-highlighted {
  908. background-color: #cccccc;
  909. }
  910. .tpx-select2-container.select2-warning .select2-choice {
  911. border-color: #c0753b;
  912. background-color: #ffffff;
  913. box-shadow: none;
  914. color: #333333;
  915. }
  916. .tpx-select2-container.select2-warning .select2-choice .select2-arrow {
  917. border-left-color: #c0753b;
  918. background-color: #ffffff;
  919. color: #333333;
  920. }
  921. .tpx-select2-container.select2-warning .select2-default .select2-chosen {
  922. color: rgba(51, 51, 51, 0.5);
  923. }
  924. .tpx-select2-container.select2-warning.select2-container-multi .select2-choices .select2-search-choice {
  925. border-color: #ac6935;
  926. background-color: #ffffff;
  927. color: #333333;
  928. }
  929. .tpx-select2-container.select2-warning.select2-container-multi .select2-choices .select2-search-choice:before {
  930. color: rgba(51, 51, 51, 0.5);
  931. }
  932. .tpx-select2-container.select2-warning.select2-container-active .select2-choice {
  933. border-color: #a56433;
  934. }
  935. .tpx-select2-container.select2-warning.select2-container-active .select2-choice .select2-arrow {
  936. border-left-color: #a56433;
  937. }
  938. .tpx-select2-drop.select2-warning {
  939. border-color: #a56433;
  940. background-color: #ffffff;
  941. }
  942. .tpx-select2-drop.select2-warning .select2-search input {
  943. border-color: #a56433;
  944. }
  945. .tpx-select2-drop.select2-warning .select2-results {
  946. color: #333333;
  947. }
  948. .tpx-select2-drop.select2-warning .select2-highlighted {
  949. background-color: #cccccc;
  950. }
  951. .tpx-select2-container.select2-grey .select2-choice {
  952. border-color: #cccccc;
  953. background-color: #eeeeee;
  954. box-shadow: none;
  955. color: #333333;
  956. }
  957. .tpx-select2-container.select2-grey .select2-choice .select2-arrow {
  958. border-left-color: #cccccc;
  959. background-color: #eeeeee;
  960. color: #333333;
  961. }
  962. .tpx-select2-container.select2-grey .select2-default .select2-chosen {
  963. color: rgba(51, 51, 51, 0.5);
  964. }
  965. .tpx-select2-container.select2-grey.select2-container-multi .select2-choices .select2-search-choice {
  966. border-color: #bfbfbf;
  967. background-color: #eeeeee;
  968. color: #333333;
  969. }
  970. .tpx-select2-container.select2-grey.select2-container-multi .select2-choices .select2-search-choice:before {
  971. color: rgba(51, 51, 51, 0.5);
  972. }
  973. .tpx-select2-container.select2-grey.select2-container-active .select2-choice {
  974. border-color: #bababa;
  975. }
  976. .tpx-select2-container.select2-grey.select2-container-active .select2-choice .select2-arrow {
  977. border-left-color: #bababa;
  978. }
  979. .tpx-select2-drop.select2-grey {
  980. border-color: #bababa;
  981. background-color: #eeeeee;
  982. }
  983. .tpx-select2-drop.select2-grey .select2-search input {
  984. border-color: #bababa;
  985. }
  986. .tpx-select2-drop.select2-grey .select2-results {
  987. color: #333333;
  988. }
  989. .tpx-select2-drop.select2-grey .select2-highlighted {
  990. background-color: #bbbbbb;
  991. }
  992. .tpx-select2-container.select2-darkgrey .select2-choice {
  993. border-color: #555555;
  994. background-color: #666666;
  995. box-shadow: none;
  996. color: #ffffff;
  997. }
  998. .tpx-select2-container.select2-darkgrey .select2-choice .select2-arrow {
  999. border-left-color: #555555;
  1000. background-color: #666666;
  1001. color: #ffffff;
  1002. }
  1003. .tpx-select2-container.select2-darkgrey .select2-default .select2-chosen {
  1004. color: rgba(255, 255, 255, 0.5);
  1005. }
  1006. .tpx-select2-container.select2-darkgrey.select2-container-multi .select2-choices .select2-search-choice {
  1007. border-color: #484848;
  1008. background-color: #666666;
  1009. color: #ffffff;
  1010. }
  1011. .tpx-select2-container.select2-darkgrey.select2-container-multi .select2-choices .select2-search-choice:before {
  1012. color: rgba(255, 255, 255, 0.5);
  1013. }
  1014. .tpx-select2-container.select2-darkgrey.select2-container-active .select2-choice {
  1015. border-color: #434343;
  1016. }
  1017. .tpx-select2-container.select2-darkgrey.select2-container-active .select2-choice .select2-arrow {
  1018. border-left-color: #434343;
  1019. }
  1020. .tpx-select2-drop.select2-darkgrey {
  1021. border-color: #434343;
  1022. background-color: #666666;
  1023. }
  1024. .tpx-select2-drop.select2-darkgrey .select2-search input {
  1025. border-color: #434343;
  1026. }
  1027. .tpx-select2-drop.select2-darkgrey .select2-results {
  1028. color: #ffffff;
  1029. }
  1030. .tpx-select2-drop.select2-darkgrey .select2-highlighted {
  1031. background-color: #333333;
  1032. }
  1033. .tpx-select2-container.select2-lightblue .select2-choice {
  1034. border-color: #bce8f1;
  1035. background-color: #ebf6fc;
  1036. box-shadow: none;
  1037. color: #31708f;
  1038. }
  1039. .tpx-select2-container.select2-lightblue .select2-choice .select2-arrow {
  1040. border-left-color: #bce8f1;
  1041. background-color: #ebf6fc;
  1042. color: #31708f;
  1043. }
  1044. .tpx-select2-container.select2-lightblue .select2-default .select2-chosen {
  1045. color: rgba(49, 112, 143, 0.5);
  1046. }
  1047. .tpx-select2-container.select2-lightblue.select2-container-multi .select2-choices .select2-search-choice {
  1048. border-color: #a7e1ed;
  1049. background-color: #ebf6fc;
  1050. color: #31708f;
  1051. }
  1052. .tpx-select2-container.select2-lightblue.select2-container-multi .select2-choices .select2-search-choice:before {
  1053. color: rgba(49, 112, 143, 0.5);
  1054. }
  1055. .tpx-select2-container.select2-lightblue.select2-container-active .select2-choice {
  1056. border-color: #9edeeb;
  1057. }
  1058. .tpx-select2-container.select2-lightblue.select2-container-active .select2-choice .select2-arrow {
  1059. border-left-color: #9edeeb;
  1060. }
  1061. .tpx-select2-drop.select2-lightblue {
  1062. border-color: #9edeeb;
  1063. background-color: #ebf6fc;
  1064. }
  1065. .tpx-select2-drop.select2-lightblue .select2-search input {
  1066. border-color: #9edeeb;
  1067. }
  1068. .tpx-select2-drop.select2-lightblue .select2-results {
  1069. color: #31708f;
  1070. }
  1071. .tpx-select2-drop.select2-lightblue .select2-highlighted {
  1072. background-color: #92ceef;
  1073. }
  1074. .tpx-select2-container.select2-blue .select2-choice {
  1075. border-color: #2e83cf;
  1076. background-color: #3f8cd3;
  1077. box-shadow: none;
  1078. color: #ffffff;
  1079. }
  1080. .tpx-select2-container.select2-blue .select2-choice .select2-arrow {
  1081. border-left-color: #2e83cf;
  1082. background-color: #3f8cd3;
  1083. color: #ffffff;
  1084. }
  1085. .tpx-select2-container.select2-blue .select2-default .select2-chosen {
  1086. color: rgba(255, 255, 255, 0.5);
  1087. }
  1088. .tpx-select2-container.select2-blue.select2-container-multi .select2-choices .select2-search-choice {
  1089. border-color: #2976ba;
  1090. background-color: #3f8cd3;
  1091. color: #ffffff;
  1092. }
  1093. .tpx-select2-container.select2-blue.select2-container-multi .select2-choices .select2-search-choice:before {
  1094. color: rgba(255, 255, 255, 0.5);
  1095. }
  1096. .tpx-select2-container.select2-blue.select2-container-active .select2-choice {
  1097. border-color: #2871b2;
  1098. }
  1099. .tpx-select2-container.select2-blue.select2-container-active .select2-choice .select2-arrow {
  1100. border-left-color: #2871b2;
  1101. }
  1102. .tpx-select2-drop.select2-blue {
  1103. border-color: #2871b2;
  1104. background-color: #3f8cd3;
  1105. }
  1106. .tpx-select2-drop.select2-blue .select2-search input {
  1107. border-color: #2871b2;
  1108. }
  1109. .tpx-select2-drop.select2-blue .select2-results {
  1110. color: #ffffff;
  1111. }
  1112. .tpx-select2-drop.select2-blue .select2-highlighted {
  1113. background-color: #20588c;
  1114. }
  1115. .tpx-select2-container.select2-lime .select2-choice {
  1116. border-color: #8ec400;
  1117. background-color: #9dd800;
  1118. box-shadow: none;
  1119. color: #ffffff;
  1120. }
  1121. .tpx-select2-container.select2-lime .select2-choice .select2-arrow {
  1122. border-left-color: #8ec400;
  1123. background-color: #9dd800;
  1124. color: #ffffff;
  1125. }
  1126. .tpx-select2-container.select2-lime .select2-default .select2-chosen {
  1127. color: rgba(255, 255, 255, 0.5);
  1128. }
  1129. .tpx-select2-container.select2-lime.select2-container-multi .select2-choices .select2-search-choice {
  1130. border-color: #7caa00;
  1131. background-color: #9dd800;
  1132. color: #ffffff;
  1133. }
  1134. .tpx-select2-container.select2-lime.select2-container-multi .select2-choices .select2-search-choice:before {
  1135. color: rgba(255, 255, 255, 0.5);
  1136. }
  1137. .tpx-select2-container.select2-lime.select2-container-active .select2-choice {
  1138. border-color: #74a000;
  1139. }
  1140. .tpx-select2-container.select2-lime.select2-container-active .select2-choice .select2-arrow {
  1141. border-left-color: #74a000;
  1142. }
  1143. .tpx-select2-drop.select2-lime {
  1144. border-color: #74a000;
  1145. background-color: #9dd800;
  1146. }
  1147. .tpx-select2-drop.select2-lime .select2-search input {
  1148. border-color: #74a000;
  1149. }
  1150. .tpx-select2-drop.select2-lime .select2-results {
  1151. color: #ffffff;
  1152. }
  1153. .tpx-select2-drop.select2-lime .select2-highlighted {
  1154. background-color: #537200;
  1155. }
  1156. .tpx-select2-container.select2-pomelo .select2-choice {
  1157. border-color: #ff6034;
  1158. background-color: #ff744e;
  1159. box-shadow: none;
  1160. color: #ffffff;
  1161. }
  1162. .tpx-select2-container.select2-pomelo .select2-choice .select2-arrow {
  1163. border-left-color: #ff6034;
  1164. background-color: #ff744e;
  1165. color: #ffffff;
  1166. }
  1167. .tpx-select2-container.select2-pomelo .select2-default .select2-chosen {
  1168. color: rgba(255, 255, 255, 0.5);
  1169. }
  1170. .tpx-select2-container.select2-pomelo.select2-container-multi .select2-choices .select2-search-choice {
  1171. border-color: #ff4c1b;
  1172. background-color: #ff744e;
  1173. color: #ffffff;
  1174. }
  1175. .tpx-select2-container.select2-pomelo.select2-container-multi .select2-choices .select2-search-choice:before {
  1176. color: rgba(255, 255, 255, 0.5);
  1177. }
  1178. .tpx-select2-container.select2-pomelo.select2-container-active .select2-choice {
  1179. border-color: #ff4411;
  1180. }
  1181. .tpx-select2-container.select2-pomelo.select2-container-active .select2-choice .select2-arrow {
  1182. border-left-color: #ff4411;
  1183. }
  1184. .tpx-select2-drop.select2-pomelo {
  1185. border-color: #ff4411;
  1186. background-color: #ff744e;
  1187. }
  1188. .tpx-select2-drop.select2-pomelo .select2-search input {
  1189. border-color: #ff4411;
  1190. }
  1191. .tpx-select2-drop.select2-pomelo .select2-results {
  1192. color: #ffffff;
  1193. }
  1194. .tpx-select2-drop.select2-pomelo .select2-highlighted {
  1195. background-color: #e73200;
  1196. }
  1197. .tpx-select2-container.select2-orange .select2-choice {
  1198. border-color: #e69800;
  1199. background-color: #ffa900;
  1200. box-shadow: none;
  1201. color: #ffffff;
  1202. }
  1203. .tpx-select2-container.select2-orange .select2-choice .select2-arrow {
  1204. border-left-color: #e69800;
  1205. background-color: #ffa900;
  1206. color: #ffffff;
  1207. }
  1208. .tpx-select2-container.select2-orange .select2-default .select2-chosen {
  1209. color: rgba(255, 255, 255, 0.5);
  1210. }
  1211. .tpx-select2-container.select2-orange.select2-container-multi .select2-choices .select2-search-choice {
  1212. border-color: #cc8700;
  1213. background-color: #ffa900;
  1214. color: #ffffff;
  1215. }
  1216. .tpx-select2-container.select2-orange.select2-container-multi .select2-choices .select2-search-choice:before {
  1217. color: rgba(255, 255, 255, 0.5);
  1218. }
  1219. .tpx-select2-container.select2-orange.select2-container-active .select2-choice {
  1220. border-color: #c28000;
  1221. }
  1222. .tpx-select2-container.select2-orange.select2-container-active .select2-choice .select2-arrow {
  1223. border-left-color: #c28000;
  1224. }
  1225. .tpx-select2-drop.select2-orange {
  1226. border-color: #c28000;
  1227. background-color: #ffa900;
  1228. }
  1229. .tpx-select2-drop.select2-orange .select2-search input {
  1230. border-color: #c28000;
  1231. }
  1232. .tpx-select2-drop.select2-orange .select2-results {
  1233. color: #ffffff;
  1234. }
  1235. .tpx-select2-drop.select2-orange .select2-highlighted {
  1236. background-color: #996500;
  1237. }
  1238. .tpx-select2-container.select2-bluegreen .select2-choice {
  1239. border-color: #00b7b1;
  1240. background-color: #00d0ca;
  1241. box-shadow: none;
  1242. color: #ffffff;
  1243. }
  1244. .tpx-select2-container.select2-bluegreen .select2-choice .select2-arrow {
  1245. border-left-color: #00b7b1;
  1246. background-color: #00d0ca;
  1247. color: #ffffff;
  1248. }
  1249. .tpx-select2-container.select2-bluegreen .select2-default .select2-chosen {
  1250. color: rgba(255, 255, 255, 0.5);
  1251. }
  1252. .tpx-select2-container.select2-bluegreen.select2-container-multi .select2-choices .select2-search-choice {
  1253. border-color: #009d98;
  1254. background-color: #00d0ca;
  1255. color: #ffffff;
  1256. }
  1257. .tpx-select2-container.select2-bluegreen.select2-container-multi .select2-choices .select2-search-choice:before {
  1258. color: rgba(255, 255, 255, 0.5);
  1259. }
  1260. .tpx-select2-container.select2-bluegreen.select2-container-active .select2-choice {
  1261. border-color: #00938f;
  1262. }
  1263. .tpx-select2-container.select2-bluegreen.select2-container-active .select2-choice .select2-arrow {
  1264. border-left-color: #00938f;
  1265. }
  1266. .tpx-select2-drop.select2-bluegreen {
  1267. border-color: #00938f;
  1268. background-color: #00d0ca;
  1269. }
  1270. .tpx-select2-drop.select2-bluegreen .select2-search input {
  1271. border-color: #00938f;
  1272. }
  1273. .tpx-select2-drop.select2-bluegreen .select2-results {
  1274. color: #ffffff;
  1275. }
  1276. .tpx-select2-drop.select2-bluegreen .select2-highlighted {
  1277. background-color: #006a67;
  1278. }