_all.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  1. /* iCheck plugin Square skin
  2. ----------------------------------- */
  3. .icheckbox_square,
  4. .iradio_square {
  5. display: inline-block;
  6. *display: inline;
  7. vertical-align: middle;
  8. margin: 0;
  9. padding: 0;
  10. width: 14px;
  11. height: 14px;
  12. background: url(square.png) no-repeat;
  13. border: none;
  14. cursor: pointer;
  15. }
  16. .icheckbox_square {
  17. background-position: 0 0;
  18. }
  19. .icheckbox_square.hover {
  20. background-position: -24px 0;
  21. }
  22. .icheckbox_square.checked {
  23. background-position: -48px 0;
  24. }
  25. .icheckbox_square.disabled {
  26. background-position: -72px 0;
  27. cursor: default;
  28. }
  29. .icheckbox_square.checked.disabled {
  30. background-position: -96px 0;
  31. }
  32. .iradio_square {
  33. background-position: -120px 0;
  34. }
  35. .iradio_square.hover {
  36. background-position: -144px 0;
  37. }
  38. .iradio_square.checked {
  39. background-position: -168px 0;
  40. }
  41. .iradio_square.disabled {
  42. background-position: -192px 0;
  43. cursor: default;
  44. }
  45. .iradio_square.checked.disabled {
  46. background-position: -216px 0;
  47. }
  48. /* HiDPI support */
  49. @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  50. .icheckbox_square,
  51. .iradio_square {
  52. background-image: url(square@2x.png);
  53. -webkit-background-size: 240px 24px;
  54. background-size: 240px 24px;
  55. }
  56. }
  57. /* red */
  58. .icheckbox_square-red,
  59. .iradio_square-red {
  60. display: inline-block;
  61. *display: inline;
  62. vertical-align: middle;
  63. margin: 0;
  64. padding: 0;
  65. width: 22px;
  66. height: 22px;
  67. background: url(red.png) no-repeat;
  68. border: none;
  69. cursor: pointer;
  70. }
  71. .icheckbox_square-red {
  72. background-position: 0 0;
  73. }
  74. .icheckbox_square-red.hover {
  75. background-position: -24px 0;
  76. }
  77. .icheckbox_square-red.checked {
  78. background-position: -48px 0;
  79. }
  80. .icheckbox_square-red.disabled {
  81. background-position: -72px 0;
  82. cursor: default;
  83. }
  84. .icheckbox_square-red.checked.disabled {
  85. background-position: -96px 0;
  86. }
  87. .iradio_square-red {
  88. background-position: -120px 0;
  89. }
  90. .iradio_square-red.hover {
  91. background-position: -144px 0;
  92. }
  93. .iradio_square-red.checked {
  94. background-position: -168px 0;
  95. }
  96. .iradio_square-red.disabled {
  97. background-position: -192px 0;
  98. cursor: default;
  99. }
  100. .iradio_square-red.checked.disabled {
  101. background-position: -216px 0;
  102. }
  103. /* HiDPI support */
  104. @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  105. .icheckbox_square-red,
  106. .iradio_square-red {
  107. background-image: url(red@2x.png);
  108. -webkit-background-size: 240px 24px;
  109. background-size: 240px 24px;
  110. }
  111. }
  112. /* green */
  113. .icheckbox_square-green,
  114. .iradio_square-green {
  115. display: inline-block;
  116. *display: inline;
  117. vertical-align: middle;
  118. margin: 0;
  119. padding: 0;
  120. width: 22px;
  121. height: 22px;
  122. background: url(green.png) no-repeat;
  123. border: none;
  124. cursor: pointer;
  125. }
  126. .icheckbox_square-green {
  127. background-position: 0 0;
  128. }
  129. .icheckbox_square-green.hover {
  130. background-position: -24px 0;
  131. }
  132. .icheckbox_square-green.checked {
  133. background-position: -48px 0;
  134. }
  135. .icheckbox_square-green.disabled {
  136. background-position: -72px 0;
  137. cursor: default;
  138. }
  139. .icheckbox_square-green.checked.disabled {
  140. background-position: -96px 0;
  141. }
  142. .iradio_square-green {
  143. background-position: -120px 0;
  144. }
  145. .iradio_square-green.hover {
  146. background-position: -144px 0;
  147. }
  148. .iradio_square-green.checked {
  149. background-position: -168px 0;
  150. }
  151. .iradio_square-green.disabled {
  152. background-position: -192px 0;
  153. cursor: default;
  154. }
  155. .iradio_square-green.checked.disabled {
  156. background-position: -216px 0;
  157. }
  158. /* HiDPI support */
  159. @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  160. .icheckbox_square-green,
  161. .iradio_square-green {
  162. background-image: url(green@2x.png);
  163. -webkit-background-size: 240px 24px;
  164. background-size: 240px 24px;
  165. }
  166. }
  167. /* blue */
  168. .icheckbox_square-blue,
  169. .iradio_square-blue {
  170. display: inline-block;
  171. *display: inline;
  172. vertical-align: middle;
  173. margin: -2px 6px 0 6px;
  174. padding: 0;
  175. width: 14px;
  176. height: 14px;
  177. background: url(blue.png) no-repeat;
  178. border: none;
  179. cursor: pointer;
  180. }
  181. .iradio_square-blue{
  182. height: 12px;
  183. width: 12px;
  184. }
  185. .icheckbox_square-blue {
  186. background-position: 0 0;
  187. }
  188. .icheckbox_square-blue.hover {
  189. background-position: -15px 0;
  190. }
  191. .icheckbox_square-blue.checked {
  192. background-position: -30px 0;
  193. }
  194. .icheckbox_square-blue.disabled {
  195. background-position: -46px 0;
  196. cursor: default;
  197. }
  198. .icheckbox_square-blue.checked.disabled {
  199. background-position: -61px 0;
  200. }
  201. .iradio_square-blue {
  202. background-position: -76px 0;
  203. }
  204. .iradio_square-blue.hover {
  205. background-position: -89px 0;
  206. }
  207. .iradio_square-blue.checked {
  208. background-position: -102px 0;
  209. }
  210. .iradio_square-blue.disabled {
  211. background-position: -115px 0;
  212. cursor: default;
  213. }
  214. .iradio_square-blue.checked.disabled {
  215. background-position: -138px 0;
  216. }
  217. /* HiDPI support */
  218. @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  219. .icheckbox_square-blue,
  220. .iradio_square-blue {
  221. background-image: url(blue@2x.png);
  222. -webkit-background-size: 240px 24px;
  223. background-size: 240px 24px;
  224. }
  225. }
  226. /* aero */
  227. .icheckbox_square-aero,
  228. .iradio_square-aero {
  229. display: inline-block;
  230. *display: inline;
  231. vertical-align: middle;
  232. margin: 0;
  233. padding: 0;
  234. width: 22px;
  235. height: 22px;
  236. background: url(aero.png) no-repeat;
  237. border: none;
  238. cursor: pointer;
  239. }
  240. .icheckbox_square-aero {
  241. background-position: 0 0;
  242. }
  243. .icheckbox_square-aero.hover {
  244. background-position: -24px 0;
  245. }
  246. .icheckbox_square-aero.checked {
  247. background-position: -48px 0;
  248. }
  249. .icheckbox_square-aero.disabled {
  250. background-position: -72px 0;
  251. cursor: default;
  252. }
  253. .icheckbox_square-aero.checked.disabled {
  254. background-position: -96px 0;
  255. }
  256. .iradio_square-aero {
  257. background-position: -120px 0;
  258. }
  259. .iradio_square-aero.hover {
  260. background-position: -144px 0;
  261. }
  262. .iradio_square-aero.checked {
  263. background-position: -168px 0;
  264. }
  265. .iradio_square-aero.disabled {
  266. background-position: -192px 0;
  267. cursor: default;
  268. }
  269. .iradio_square-aero.checked.disabled {
  270. background-position: -216px 0;
  271. }
  272. /* HiDPI support */
  273. @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  274. .icheckbox_square-aero,
  275. .iradio_square-aero {
  276. background-image: url(aero@2x.png);
  277. -webkit-background-size: 240px 24px;
  278. background-size: 240px 24px;
  279. }
  280. }
  281. /* grey */
  282. .icheckbox_square-grey,
  283. .iradio_square-grey {
  284. display: inline-block;
  285. *display: inline;
  286. vertical-align: middle;
  287. margin: 0;
  288. padding: 0;
  289. width: 22px;
  290. height: 22px;
  291. background: url(grey.png) no-repeat;
  292. border: none;
  293. cursor: pointer;
  294. }
  295. .icheckbox_square-grey {
  296. background-position: 0 0;
  297. }
  298. .icheckbox_square-grey.hover {
  299. background-position: -24px 0;
  300. }
  301. .icheckbox_square-grey.checked {
  302. background-position: -48px 0;
  303. }
  304. .icheckbox_square-grey.disabled {
  305. background-position: -72px 0;
  306. cursor: default;
  307. }
  308. .icheckbox_square-grey.checked.disabled {
  309. background-position: -96px 0;
  310. }
  311. .iradio_square-grey {
  312. background-position: -120px 0;
  313. }
  314. .iradio_square-grey.hover {
  315. background-position: -144px 0;
  316. }
  317. .iradio_square-grey.checked {
  318. background-position: -168px 0;
  319. }
  320. .iradio_square-grey.disabled {
  321. background-position: -192px 0;
  322. cursor: default;
  323. }
  324. .iradio_square-grey.checked.disabled {
  325. background-position: -216px 0;
  326. }
  327. /* HiDPI support */
  328. @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  329. .icheckbox_square-grey,
  330. .iradio_square-grey {
  331. background-image: url(grey@2x.png);
  332. -webkit-background-size: 240px 24px;
  333. background-size: 240px 24px;
  334. }
  335. }
  336. /* orange */
  337. .icheckbox_square-orange,
  338. .iradio_square-orange {
  339. display: inline-block;
  340. *display: inline;
  341. vertical-align: middle;
  342. margin: 0;
  343. padding: 0;
  344. width: 22px;
  345. height: 22px;
  346. background: url(orange.png) no-repeat;
  347. border: none;
  348. cursor: pointer;
  349. }
  350. .icheckbox_square-orange {
  351. background-position: 0 0;
  352. }
  353. .icheckbox_square-orange.hover {
  354. background-position: -24px 0;
  355. }
  356. .icheckbox_square-orange.checked {
  357. background-position: -48px 0;
  358. }
  359. .icheckbox_square-orange.disabled {
  360. background-position: -72px 0;
  361. cursor: default;
  362. }
  363. .icheckbox_square-orange.checked.disabled {
  364. background-position: -96px 0;
  365. }
  366. .iradio_square-orange {
  367. background-position: -120px 0;
  368. }
  369. .iradio_square-orange.hover {
  370. background-position: -144px 0;
  371. }
  372. .iradio_square-orange.checked {
  373. background-position: -168px 0;
  374. }
  375. .iradio_square-orange.disabled {
  376. background-position: -192px 0;
  377. cursor: default;
  378. }
  379. .iradio_square-orange.checked.disabled {
  380. background-position: -216px 0;
  381. }
  382. /* HiDPI support */
  383. @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  384. .icheckbox_square-orange,
  385. .iradio_square-orange {
  386. background-image: url(orange@2x.png);
  387. -webkit-background-size: 240px 24px;
  388. background-size: 240px 24px;
  389. }
  390. }
  391. /* yellow */
  392. .icheckbox_square-yellow,
  393. .iradio_square-yellow {
  394. display: inline-block;
  395. *display: inline;
  396. vertical-align: middle;
  397. margin: 0;
  398. padding: 0;
  399. width: 22px;
  400. height: 22px;
  401. background: url(yellow.png) no-repeat;
  402. border: none;
  403. cursor: pointer;
  404. }
  405. .icheckbox_square-yellow {
  406. background-position: 0 0;
  407. }
  408. .icheckbox_square-yellow.hover {
  409. background-position: -24px 0;
  410. }
  411. .icheckbox_square-yellow.checked {
  412. background-position: -48px 0;
  413. }
  414. .icheckbox_square-yellow.disabled {
  415. background-position: -72px 0;
  416. cursor: default;
  417. }
  418. .icheckbox_square-yellow.checked.disabled {
  419. background-position: -96px 0;
  420. }
  421. .iradio_square-yellow {
  422. background-position: -120px 0;
  423. }
  424. .iradio_square-yellow.hover {
  425. background-position: -144px 0;
  426. }
  427. .iradio_square-yellow.checked {
  428. background-position: -168px 0;
  429. }
  430. .iradio_square-yellow.disabled {
  431. background-position: -192px 0;
  432. cursor: default;
  433. }
  434. .iradio_square-yellow.checked.disabled {
  435. background-position: -216px 0;
  436. }
  437. /* HiDPI support */
  438. @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  439. .icheckbox_square-yellow,
  440. .iradio_square-yellow {
  441. background-image: url(yellow@2x.png);
  442. -webkit-background-size: 240px 24px;
  443. background-size: 240px 24px;
  444. }
  445. }
  446. /* pink */
  447. .icheckbox_square-pink,
  448. .iradio_square-pink {
  449. display: inline-block;
  450. *display: inline;
  451. vertical-align: middle;
  452. margin: 0;
  453. padding: 0;
  454. width: 22px;
  455. height: 22px;
  456. background: url(pink.png) no-repeat;
  457. border: none;
  458. cursor: pointer;
  459. }
  460. .icheckbox_square-pink {
  461. background-position: 0 0;
  462. }
  463. .icheckbox_square-pink.hover {
  464. background-position: -24px 0;
  465. }
  466. .icheckbox_square-pink.checked {
  467. background-position: -48px 0;
  468. }
  469. .icheckbox_square-pink.disabled {
  470. background-position: -72px 0;
  471. cursor: default;
  472. }
  473. .icheckbox_square-pink.checked.disabled {
  474. background-position: -96px 0;
  475. }
  476. .iradio_square-pink {
  477. background-position: -120px 0;
  478. }
  479. .iradio_square-pink.hover {
  480. background-position: -144px 0;
  481. }
  482. .iradio_square-pink.checked {
  483. background-position: -168px 0;
  484. }
  485. .iradio_square-pink.disabled {
  486. background-position: -192px 0;
  487. cursor: default;
  488. }
  489. .iradio_square-pink.checked.disabled {
  490. background-position: -216px 0;
  491. }
  492. /* HiDPI support */
  493. @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  494. .icheckbox_square-pink,
  495. .iradio_square-pink {
  496. background-image: url(pink@2x.png);
  497. -webkit-background-size: 240px 24px;
  498. background-size: 240px 24px;
  499. }
  500. }
  501. /* purple */
  502. .icheckbox_square-purple,
  503. .iradio_square-purple {
  504. display: inline-block;
  505. *display: inline;
  506. vertical-align: middle;
  507. margin: 0;
  508. padding: 0;
  509. width: 22px;
  510. height: 22px;
  511. background: url(purple.png) no-repeat;
  512. border: none;
  513. cursor: pointer;
  514. }
  515. .icheckbox_square-purple {
  516. background-position: 0 0;
  517. }
  518. .icheckbox_square-purple.hover {
  519. background-position: -24px 0;
  520. }
  521. .icheckbox_square-purple.checked {
  522. background-position: -48px 0;
  523. }
  524. .icheckbox_square-purple.disabled {
  525. background-position: -72px 0;
  526. cursor: default;
  527. }
  528. .icheckbox_square-purple.checked.disabled {
  529. background-position: -96px 0;
  530. }
  531. .iradio_square-purple {
  532. background-position: -120px 0;
  533. }
  534. .iradio_square-purple.hover {
  535. background-position: -144px 0;
  536. }
  537. .iradio_square-purple.checked {
  538. background-position: -168px 0;
  539. }
  540. .iradio_square-purple.disabled {
  541. background-position: -192px 0;
  542. cursor: default;
  543. }
  544. .iradio_square-purple.checked.disabled {
  545. background-position: -216px 0;
  546. }
  547. /* HiDPI support */
  548. @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  549. .icheckbox_square-purple,
  550. .iradio_square-purple {
  551. background-image: url(purple@2x.png);
  552. -webkit-background-size: 240px 24px;
  553. background-size: 240px 24px;
  554. }
  555. }