Created
November 30, 2009 06:26
-
-
Save idan/245295 to your computer and use it in GitHub Desktop.
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
.content form .field_wrap>input.natural_dtinput { | |
width: 220px; | |
float: left; | |
height: 24px; | |
margin-bottom: 10px; | |
} | |
.content form .field_wrap>input.natural_dtinput.annotated { | |
width: 200px; | |
border-right: 0px; | |
-moz-border-radius-topright: 0px; | |
-moz-border-radius-bottomright: 0px; | |
-webkit-border-top-right-radius: 0px; | |
-webkit-border-bottom-right-radius: 0px; | |
} | |
.content form .field_wrap>input.natural_dtinput_label { | |
color: #abb9c1; | |
} | |
.content form .field_wrap>.natural_dtinput_parsed, | |
.content form .field_wrap>.natural_dtinput_working, | |
.content form .field_wrap>.natural_dtinput_error, | |
.content form .field_wrap>.natural_dtinput_ok { | |
/*width: 390px;*/ | |
height: 24px; | |
padding: 6px 10px 6px 40px; | |
margin: 0 57px 10px 0; | |
font-size: 14px; | |
color: #abb9c1; | |
float: left; | |
display: block; | |
-moz-border-radius-topright: 4px; | |
-moz-border-radius-bottomright: 4px; | |
-webkit-border-top-right-radius: 4px; | |
-webkit-border-bottom-right-radius: 4px; | |
} | |
.content form .field_wrap>.natural_dtinput_parsed { | |
padding-left: 10px; | |
} | |
.content form .field_wrap>.natural_dtinput_working { | |
background: url(../img/ajax-loader.gif) no-repeat 10px center; | |
} | |
.content form fieldset.error .field_wrap>.natural_dtinput_working { | |
background: url(../img/ajax-loader_yellow.gif) no-repeat 10px center; | |
} | |
.content form .field_wrap>.natural_dtinput_error { | |
/*border-style: solid; | |
border-color: #f7bbbc; | |
border-width: 1px 1px 1px 0; | |
padding: 5px 0 5px 30px; | |
width: 299px;*/ | |
background: #f7d1d2 url(../img/field_error.png) no-repeat left center; | |
color: #586c78; | |
} | |
.content form .field_wrap>.natural_dtinput_ok { | |
background: #d8f7da url(../img/field_ok.png) no-repeat left center; | |
color: #586c78; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment