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