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
/* | |
jQuery.equalHeights Plugin | |
@author John Hunter | |
@dependency jQuery 1.4.x | |
EqualHeights version 2.0 (2010-09-07 johnhunter.info) | |
Based on an idea copyright (c) 2008 Rob Glazebrook (cssnewbie.com) | |
use: $('#selector').equalHeights({minHeight: 200}); | |
see defaults object for options | |
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
/** | |
* Switch-style checkboxes. | |
* Inspired by Espresso’s “Tools” switch | |
*/ | |
input[type="checkbox"]:not(:checked), | |
input[type="checkbox"]:checked { /* :checked here acting as a filter for older browsers */ | |
position: absolute; | |
opacity: 0; | |
} |