Created
August 30, 2013 14:22
-
-
Save steelywing/6390375 to your computer and use it in GitHub Desktop.
css checkbox
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input[type="checkbox"].checkbox { | |
// basic checkbox style | |
display: none !important; | |
+ label { | |
cursor: pointer; | |
display: inline-block; | |
} | |
// lock style | |
&.lock { | |
+ label { | |
padding-left: 48px; | |
line-height: 48px; | |
background: url('http://icons.iconarchive.com/icons/deleket/soft-scraps/48/Lock-Unlock-icon.png') | |
no-repeat center left; | |
} | |
&:checked + label { | |
background-image: url('http://icons.iconarchive.com/icons/deleket/soft-scraps/48/Lock-Lock-icon.png'); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment