select2.css 40 KB

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