The plugins site is currently in development.
We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.
FancyLogin
FancyLogin is a CSS driven, input stylizing plugin for jQuery. Based on the input's selection and value it applies a class to the input that can be targeted for style in the CSS file.
Styling the input boxes is done based on two states in the CSS. The first is the default state, which is used when a person clicks inside the input, if text has been typed into an input, or if javascript is turned off.
.login input#username { background: url('img/input.username.bg.gif') 0 -18px no-repeat #fff; margin-right: 14px; padding-left: 20px; }
The second state is used when the input boxes are not selected and there is nothing typed inside them. It uses the class “blank” to allow CSS styles to be applied.
.login input#username.blank { background: url('img/input.username.bg.gif') top left no-repeat #fff; }
