select2.css 19 KB

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