Created
September 15, 2013 15:04
-
-
Save csakiistvan/6571561 to your computer and use it in GitHub Desktop.
egyedi hatter egy gombhoz
This file contains hidden or 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
| <div> | |
| <input type="checkbox" name="szeletelve" id="slices"> | |
| <label for="slices"> | |
| Szeletelve kérem | |
| </label> | |
| </div> |
This file contains hidden or 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
| #order_right INPUT[type="checkbox"] + label{ | |
| display: inline-block; | |
| background: url('../images/order_right_checkbox_off.png') no-repeat center left; | |
| padding: 0px 0px 0px 32px; | |
| cursor: pointer; | |
| } | |
| #order_right INPUT[type="checkbox"]:checked + label { | |
| background: url('../images/order_right_checkbox_on.png') no-repeat center left; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment