You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.4 KiB

  1. /* iCheck plugin Flat skin, grey
  2. ----------------------------------- */
  3. .icheckbox_flat-grey,
  4. .iradio_flat-grey {
  5. display: inline-block;
  6. *display: inline;
  7. vertical-align: middle;
  8. margin: 0;
  9. padding: 0;
  10. width: 20px;
  11. height: 20px;
  12. background: url(grey.png) no-repeat;
  13. border: none;
  14. cursor: pointer;
  15. }
  16. .icheckbox_flat-grey {
  17. background-position: 0 0;
  18. }
  19. .icheckbox_flat-grey.checked {
  20. background-position: -22px 0;
  21. }
  22. .icheckbox_flat-grey.disabled {
  23. background-position: -44px 0;
  24. cursor: default;
  25. }
  26. .icheckbox_flat-grey.checked.disabled {
  27. background-position: -66px 0;
  28. }
  29. .iradio_flat-grey {
  30. background-position: -88px 0;
  31. }
  32. .iradio_flat-grey.checked {
  33. background-position: -110px 0;
  34. }
  35. .iradio_flat-grey.disabled {
  36. background-position: -132px 0;
  37. cursor: default;
  38. }
  39. .iradio_flat-grey.checked.disabled {
  40. background-position: -154px 0;
  41. }
  42. /* Retina support */
  43. @media only screen and (-webkit-min-device-pixel-ratio: 1.5),
  44. only screen and (-moz-min-device-pixel-ratio: 1.5),
  45. only screen and (-o-min-device-pixel-ratio: 3/2),
  46. only screen and (min-device-pixel-ratio: 1.5) {
  47. .icheckbox_flat-grey,
  48. .iradio_flat-grey {
  49. background-image: url(grey@2x.png);
  50. -webkit-background-size: 176px 22px;
  51. background-size: 176px 22px;
  52. }
  53. }