ISPConfig theme for Open6Hosting
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

710 líneas
19 KiB

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