Skip to content

Commit

Permalink
Styles
Browse files Browse the repository at this point in the history
  • Loading branch information
doomhz committed Jun 17, 2011
1 parent b7247cf commit 0a41cce
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README
@@ -1,3 +1,3 @@
jQuery Form Elements

Give your custom styles to your checkboxes, radios and selects.
Give a custom style to your checkboxes, radios and selects.
20 changes: 16 additions & 4 deletions assets/formElements.css
Expand Up @@ -7,18 +7,30 @@ body {
display: none;
}

.check_on {
padding: 0 0 0 25px;
}

.check_off {
padding: 0 0 0 25px;
}

.radios .check_on {
background: url('radio_on.png') no-repeat left left;
display: inline-block;
background: url('radio_on.png') no-repeat;
}

.radios .check_off {
background: url('radio_off.png') no-repeat left left;
display: inline-block;
background: url('radio_off.png') no-repeat;
}

.checks .check_on {
background: url('check_on.png') no-repeat left left;
display: inline-block;
background: url('check_on.png') no-repeat;
}

.checks .check_off {
background: url('check_off.png') no-repeat left left;
display: inline-block;
background: url('check_off.png') no-repeat;
}

0 comments on commit 0a41cce

Please sign in to comment.