select2.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  1. /*
  2. Version: @@ver@@ Timestamp: @@timestamp@@
  3. */
  4. .select2-container {
  5. position: relative;
  6. display: inline-block;
  7. /* inline-block for ie7 */
  8. zoom: 1;
  9. *display: inline;
  10. vertical-align: middle;
  11. }
  12. .select2-container,
  13. .select2-drop,
  14. .select2-search,
  15. .select2-search input{
  16. /*
  17. Force border-box so that % widths fit the parent
  18. container without overlap because of margin/padding.
  19. More Info : http://www.quirksmode.org/css/box.html
  20. */
  21. -webkit-box-sizing: border-box; /* webkit */
  22. -khtml-box-sizing: border-box; /* konqueror */
  23. -moz-box-sizing: border-box; /* firefox */
  24. -ms-box-sizing: border-box; /* ie */
  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. -webkit-border-radius: 4px;
  39. -moz-border-radius: 4px;
  40. border-radius: 4px;
  41. -webkit-background-clip: padding-box;
  42. -moz-background-clip: padding;
  43. background-clip: padding-box;
  44. -webkit-touch-callout: none;
  45. -webkit-user-select: none;
  46. -khtml-user-select: none;
  47. -moz-user-select: none;
  48. -ms-user-select: none;
  49. user-select: none;
  50. background-color: #fff;
  51. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.5, white));
  52. background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 50%);
  53. background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 50%);
  54. background-image: -o-linear-gradient(bottom, #eeeeee 0%, #ffffff 50%);
  55. background-image: -ms-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  56. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
  57. background-image: linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  58. }
  59. .select2-container.select2-drop-above .select2-choice {
  60. border-bottom-color: #aaa;
  61. -webkit-border-radius:0 0 4px 4px;
  62. -moz-border-radius:0 0 4px 4px;
  63. border-radius:0 0 4px 4px;
  64. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.9, white));
  65. background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 90%);
  66. background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 90%);
  67. background-image: -o-linear-gradient(bottom, #eeeeee 0%, white 90%);
  68. background-image: -ms-linear-gradient(top, #eeeeee 0%,#ffffff 90%);
  69. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 );
  70. background-image: linear-gradient(top, #eeeeee 0%,#ffffff 90%);
  71. }
  72. .select2-container .select2-choice span {
  73. margin-right: 26px;
  74. display: block;
  75. overflow: hidden;
  76. white-space: nowrap;
  77. -ms-text-overflow: ellipsis;
  78. -o-text-overflow: ellipsis;
  79. text-overflow: ellipsis;
  80. }
  81. .select2-container .select2-choice abbr {
  82. display: block;
  83. width: 12px;
  84. height: 12px;
  85. position: absolute;
  86. right: 26px;
  87. top: 8px;
  88. font-size: 1px;
  89. text-decoration: none;
  90. border: 0;
  91. background: url('select2.png') right top no-repeat;
  92. cursor: pointer;
  93. outline: 0;
  94. }
  95. .select2-container .select2-choice abbr:hover {
  96. background-position: right -11px;
  97. cursor: pointer;
  98. }
  99. .select2-drop-mask {
  100. position: absolute;
  101. left: 0;
  102. top: 0;
  103. z-index: 9998;
  104. background-color: #fff;
  105. opacity: 0;
  106. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* works in IE 8 */
  107. filter: "alpha(opacity=0)"; /* expected to work in IE 8 */
  108. filter: alpha(opacity=0); /* IE 4-7 */
  109. }
  110. .select2-drop {
  111. width: 100%;
  112. margin-top:-1px;
  113. position: absolute;
  114. z-index: 9999;
  115. top: 100%;
  116. background: #fff;
  117. color: #000;
  118. border: 1px solid #aaa;
  119. border-top: 0;
  120. -webkit-border-radius: 0 0 4px 4px;
  121. -moz-border-radius: 0 0 4px 4px;
  122. border-radius: 0 0 4px 4px;
  123. -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  124. -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  125. box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  126. }
  127. .select2-drop.select2-drop-above {
  128. margin-top: 1px;
  129. border-top: 1px solid #aaa;
  130. border-bottom: 0;
  131. -webkit-border-radius: 4px 4px 0 0;
  132. -moz-border-radius: 4px 4px 0 0;
  133. border-radius: 4px 4px 0 0;
  134. -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
  135. -moz-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
  136. box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
  137. }
  138. .select2-container .select2-choice div {
  139. display: block;
  140. width: 18px;
  141. height: 100%;
  142. position: absolute;
  143. right: 0;
  144. top: 0;
  145. border-left: 1px solid #aaa;
  146. -webkit-border-radius: 0 4px 4px 0;
  147. -moz-border-radius: 0 4px 4px 0;
  148. border-radius: 0 4px 4px 0;
  149. -webkit-background-clip: padding-box;
  150. -moz-background-clip: padding;
  151. background-clip: padding-box;
  152. background: #ccc;
  153. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
  154. background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  155. background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  156. background-image: -o-linear-gradient(bottom, #ccc 0%, #eee 60%);
  157. background-image: -ms-linear-gradient(top, #cccccc 0%, #eeeeee 60%);
  158. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
  159. background-image: linear-gradient(top, #cccccc 0%, #eeeeee 60%);
  160. }
  161. .select2-container .select2-choice div b {
  162. display: block;
  163. width: 100%;
  164. height: 100%;
  165. background: url('select2.png') no-repeat 0 1px;
  166. }
  167. .select2-search {
  168. display: inline-block;
  169. width: 100%;
  170. min-height: 26px;
  171. margin: 0;
  172. padding-left: 4px;
  173. padding-right: 4px;
  174. position: relative;
  175. z-index: 10000;
  176. white-space: nowrap;
  177. }
  178. .select2-search-hidden {
  179. display: block;
  180. position: absolute;
  181. left: -10000px;
  182. }
  183. .select2-search input {
  184. width: 100%;
  185. height: auto !important;
  186. min-height: 26px;
  187. padding: 4px 20px 4px 5px;
  188. margin: 0;
  189. outline: 0;
  190. font-family: sans-serif;
  191. font-size: 1em;
  192. border: 1px solid #aaa;
  193. -webkit-border-radius: 0;
  194. -moz-border-radius: 0;
  195. border-radius: 0;
  196. -webkit-box-shadow: none;
  197. -moz-box-shadow: none;
  198. box-shadow: none;
  199. background: #fff url('select2.png') no-repeat 100% -22px;
  200. background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
  201. background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  202. background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  203. background: url('select2.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
  204. background: url('select2.png') no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  205. background: url('select2.png') no-repeat 100% -22px, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  206. }
  207. .select2-drop.select2-drop-above .select2-search input {
  208. margin-top: 4px;
  209. }
  210. .select2-search input.select2-active {
  211. background: #fff url('select2-spinner.gif') no-repeat 100%;
  212. background: url('select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
  213. background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  214. background: url('select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  215. background: url('select2-spinner.gif') no-repeat 100%, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
  216. background: url('select2-spinner.gif') no-repeat 100%, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  217. background: url('select2-spinner.gif') no-repeat 100%, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  218. }
  219. .select2-container-active .select2-choice,
  220. .select2-container-active .select2-choices {
  221. border: 1px solid #5897fb;
  222. outline: none;
  223. -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
  224. -moz-box-shadow: 0 0 5px rgba(0,0,0,.3);
  225. box-shadow: 0 0 5px rgba(0,0,0,.3);
  226. }
  227. .select2-dropdown-open .select2-choice {
  228. border-bottom-color: transparent;
  229. -webkit-box-shadow: 0 1px 0 #fff inset;
  230. -moz-box-shadow: 0 1px 0 #fff inset;
  231. box-shadow: 0 1px 0 #fff inset;
  232. -webkit-border-bottom-left-radius: 0;
  233. -moz-border-radius-bottomleft: 0;
  234. border-bottom-left-radius: 0;
  235. -webkit-border-bottom-right-radius: 0;
  236. -moz-border-radius-bottomright: 0;
  237. border-bottom-right-radius: 0;
  238. background-color: #eee;
  239. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, white), color-stop(0.5, #eeeeee));
  240. background-image: -webkit-linear-gradient(center bottom, white 0%, #eeeeee 50%);
  241. background-image: -moz-linear-gradient(center bottom, white 0%, #eeeeee 50%);
  242. background-image: -o-linear-gradient(bottom, white 0%, #eeeeee 50%);
  243. background-image: -ms-linear-gradient(top, #ffffff 0%,#eeeeee 50%);
  244. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );
  245. background-image: linear-gradient(top, #ffffff 0%,#eeeeee 50%);
  246. }
  247. .select2-dropdown-open .select2-choice div {
  248. background: transparent;
  249. border-left: none;
  250. filter: none;
  251. }
  252. .select2-dropdown-open .select2-choice div b {
  253. background-position: -18px 1px;
  254. }
  255. /* results */
  256. .select2-results {
  257. max-height: 200px;
  258. padding: 0 0 0 4px;
  259. margin: 4px 4px 4px 0;
  260. position: relative;
  261. overflow-x: hidden;
  262. overflow-y: auto;
  263. -webkit-tap-highlight-color: rgba(0,0,0,0);
  264. }
  265. .select2-results ul.select2-result-sub {
  266. margin: 0;
  267. }
  268. .select2-results ul.select2-result-sub > li .select2-result-label { padding-left: 20px }
  269. .select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 40px }
  270. .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 60px }
  271. .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 80px }
  272. .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 100px }
  273. .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 110px }
  274. .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 120px }
  275. .select2-results li {
  276. list-style: none;
  277. display: list-item;
  278. background-image: none;
  279. }
  280. .select2-results li.select2-result-with-children > .select2-result-label {
  281. font-weight: bold;
  282. }
  283. .select2-results .select2-result-label {
  284. padding: 3px 7px 4px;
  285. margin: 0;
  286. cursor: pointer;
  287. min-height: 1em;
  288. -webkit-touch-callout: none;
  289. -webkit-user-select: none;
  290. -khtml-user-select: none;
  291. -moz-user-select: none;
  292. -ms-user-select: none;
  293. user-select: none;
  294. }
  295. .select2-results .select2-highlighted {
  296. background: #3875d7;
  297. color: #fff;
  298. }
  299. .select2-results li em {
  300. background: #feffde;
  301. font-style: normal;
  302. }
  303. .select2-results .select2-highlighted em {
  304. background: transparent;
  305. }
  306. .select2-results .select2-highlighted ul {
  307. background: white;
  308. color: #000;
  309. }
  310. .select2-results .select2-no-results,
  311. .select2-results .select2-searching,
  312. .select2-results .select2-selection-limit {
  313. background: #f4f4f4;
  314. display: list-item;
  315. }
  316. /*
  317. disabled look for disabled choices in the results dropdown
  318. */
  319. .select2-results .select2-disabled.select2-highlighted {
  320. color: #666;
  321. background: #f4f4f4;
  322. display: list-item;
  323. cursor: default;
  324. }
  325. .select2-results .select2-disabled {
  326. background: #f4f4f4;
  327. display: list-item;
  328. cursor: default;
  329. }
  330. .select2-results .select2-selected {
  331. display: none;
  332. }
  333. .select2-more-results.select2-active {
  334. background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%;
  335. }
  336. .select2-more-results {
  337. background: #f4f4f4;
  338. display: list-item;
  339. }
  340. /* disabled styles */
  341. .select2-container.select2-container-disabled .select2-choice {
  342. background-color: #f4f4f4;
  343. background-image: none;
  344. border: 1px solid #ddd;
  345. cursor: default;
  346. }
  347. .select2-container.select2-container-disabled .select2-choice div {
  348. background-color: #f4f4f4;
  349. background-image: none;
  350. border-left: 0;
  351. }
  352. .select2-container.select2-container-disabled .select2-choice abbr {
  353. display: none
  354. }
  355. /* multiselect */
  356. .select2-container-multi .select2-choices {
  357. height: auto !important;
  358. height: 1%;
  359. margin: 0;
  360. padding: 0;
  361. position: relative;
  362. border: 1px solid #aaa;
  363. cursor: text;
  364. overflow: hidden;
  365. background-color: #fff;
  366. background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  367. background-image: -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  368. background-image: -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  369. background-image: -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  370. background-image: -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  371. background-image: linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  372. }
  373. .select2-locked {
  374. padding: 3px 5px 3px 5px !important;
  375. }
  376. .select2-container-multi .select2-choices {
  377. min-height: 26px;
  378. }
  379. .select2-container-multi.select2-container-active .select2-choices {
  380. border: 1px solid #5897fb;
  381. outline: none;
  382. -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
  383. -moz-box-shadow: 0 0 5px rgba(0,0,0,.3);
  384. box-shadow: 0 0 5px rgba(0,0,0,.3);
  385. }
  386. .select2-container-multi .select2-choices li {
  387. float: left;
  388. list-style: none;
  389. }
  390. .select2-container-multi .select2-choices .select2-search-field {
  391. margin: 0;
  392. padding: 0;
  393. white-space: nowrap;
  394. }
  395. .select2-container-multi .select2-choices .select2-search-field input {
  396. padding: 5px;
  397. margin: 1px 0;
  398. font-family: sans-serif;
  399. font-size: 100%;
  400. color: #666;
  401. outline: 0;
  402. border: 0;
  403. -webkit-box-shadow: none;
  404. -moz-box-shadow: none;
  405. box-shadow: none;
  406. background: transparent !important;
  407. }
  408. .select2-container-multi .select2-choices .select2-search-field input.select2-active {
  409. background: #fff url('select2-spinner.gif') no-repeat 100% !important;
  410. }
  411. .select2-default {
  412. color: #999 !important;
  413. }
  414. .select2-container-multi .select2-choices .select2-search-choice {
  415. padding: 3px 5px 3px 18px;
  416. margin: 3px 0 3px 5px;
  417. position: relative;
  418. line-height: 13px;
  419. color: #333;
  420. cursor: default;
  421. border: 1px solid #aaaaaa;
  422. -webkit-border-radius: 3px;
  423. -moz-border-radius: 3px;
  424. border-radius: 3px;
  425. -webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
  426. -moz-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
  427. box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
  428. -webkit-background-clip: padding-box;
  429. -moz-background-clip: padding;
  430. background-clip: padding-box;
  431. -webkit-touch-callout: none;
  432. -webkit-user-select: none;
  433. -khtml-user-select: none;
  434. -moz-user-select: none;
  435. -ms-user-select: none;
  436. user-select: none;
  437. background-color: #e4e4e4;
  438. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0 );
  439. background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  440. background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  441. background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  442. background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  443. background-image: -ms-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  444. background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  445. }
  446. .select2-container-multi .select2-choices .select2-search-choice span {
  447. cursor: default;
  448. }
  449. .select2-container-multi .select2-choices .select2-search-choice-focus {
  450. background: #d4d4d4;
  451. }
  452. .select2-search-choice-close {
  453. display: block;
  454. width: 12px;
  455. height: 13px;
  456. position: absolute;
  457. right: 3px;
  458. top: 4px;
  459. font-size: 1px;
  460. outline: none;
  461. background: url('select2.png') right top no-repeat;
  462. }
  463. .select2-container-multi .select2-search-choice-close {
  464. left: 3px;
  465. }
  466. .select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  467. background-position: right -11px;
  468. }
  469. .select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  470. background-position: right -11px;
  471. }
  472. /* disabled styles */
  473. .select2-container-multi.select2-container-disabled .select2-choices{
  474. background-color: #f4f4f4;
  475. background-image: none;
  476. border: 1px solid #ddd;
  477. cursor: default;
  478. }
  479. .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  480. padding: 3px 5px 3px 5px;
  481. border: 1px solid #ddd;
  482. background-image: none;
  483. background-color: #f4f4f4;
  484. }
  485. .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  486. display: none;
  487. }
  488. /* end multiselect */
  489. .select2-result-selectable .select2-match,
  490. .select2-result-unselectable .select2-match {
  491. text-decoration: underline;
  492. }
  493. .select2-offscreen {
  494. border: 0;
  495. clip: rect(0 0 0 0);
  496. height: 1px;
  497. margin: -1px;
  498. overflow: hidden;
  499. padding: 0;
  500. position: absolute;
  501. width: 1px;
  502. }
  503. /* Retina-ize icons */
  504. @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  505. .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice div b {
  506. background-image: url('select2x2.png') !important;
  507. background-repeat: no-repeat !important;
  508. background-size: 60px 40px !important;
  509. }
  510. .select2-search input {
  511. background-position: 100% -21px !important;
  512. }
  513. }