/* * jNice * version: 1.0 (11.26.08) * by Sean Mooney (sean@whitespace-creative.com)  * Examples at: http://www.whitespace-creative.com/jquery/jnice/ * Dual licensed under the MIT and GPL licenses: *   http://www.opensource.org/licenses/mit-license.php *   http://www.gnu.org/licenses/gpl.html * * To Use: place in the head  *  <link href="inc/style/jNice.css" rel="stylesheet" type="text/css" /> *  <script type="text/javascript" src="inc/js/jquery.jNice.js"></script> * * And apply the jNice class to the form you want to style * * To Do: Add textareas, Add File upload * ******************************************** *//* Taken from jNice CSS and reduced for minimum required functionality *//* ------------- * Buttons * ------------- */button {cursor:pointer;background: none;border: 0;width: 128px;}*:first-child+html button[type]{width:1;} /* IE7 */button span {  background: url(../images/bg_button.png) no-repeat;	padding: 5px 0 0 0;  font-size: 0.9em;	display: block;  color: #7f7f7f;  height: 19px;  width: 122px;}button span span {background: none;padding: 0;width: 122px;}/* ------------- * Inputs * ------------- */.jNiceInputWrapper {	background: url(../images/bg_input.png);	float:left;  width: 260px;  padding: 0px 20px 0 20px;  height: 28px;}.jNiceInputInner input {	height: 23px;  width: 260px;  padding: 5px 0px 0 0px;  background: none;}/* ------------- * Selects * ------------- */.jNiceWrapper select {border:none;  width: 300px;}.jNiceSelectWrapper {	left:0px;  top:0px;  z-index:3;  position:absolute;  font-size: 0.8em;  }.jNiceSelectWrapper .jNiceSelectText {	line-height: 28px;	background: url(../images/bg_select.png) no-repeat;  position:absolute;  z-index:100;  padding-left: 20px;  color: #7f7f7f;  padding-right: 10px;  }.jNiceSelectWrapper .jNiceSelectOpen {	width: 30px;	height: 28px;	background: url(../images/btn_select.png) no-repeat center center;	z-index:100;  display: block;  position: absolute;  left: 270px;  cursor: pointer;}.jNiceSelectWrapper ul {	top: 0px;	background-color: #FFF;	border: solid 1px #CCC;	position:absolute;  left:14px;  display: none;  overflow-y:auto;  z-index:100;  width: 95%;  max-height: 182px;  }.jNiceSelectWrapper ul a {  color: #7f7f7f;	background-color: #FFF;	display:block;  padding:5px;}.jNiceSelectWrapper ul a:hover { background:#EDEDED;  } .jNiceSelectWrapper ul a.selected {background: #d9d9d9; color: #7f7f7f;}.jNiceWrapper {position:relative;vertical-align:top;}
