placeholder styling

This commit is contained in:
James Campos 2011-05-04 21:41:14 -07:00
parent 4d3c5e9ea6
commit 33c12e20d5
2 changed files with 16 additions and 2 deletions

View File

@ -2293,6 +2293,13 @@
#qr.auto:not(:hover) form {\ #qr.auto:not(:hover) form {\
display: none;\ display: none;\
}\ }\
/* http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css */\
#qr input:-webkit-input-placeholder {\
color: grey;\
}\
#qr input:-moz-placeholder {\
color: grey;\
}\
/* qr reCAPTCHA */\ /* qr reCAPTCHA */\
#qr_captcha input {\ #qr_captcha input {\
border: 1px solid #AAA !important;\ border: 1px solid #AAA !important;\

View File

@ -1812,6 +1812,13 @@ main =
#qr.auto:not(:hover) form { #qr.auto:not(:hover) form {
display: none; display: none;
} }
/* http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css */
#qr input:-webkit-input-placeholder {
color: grey;
}
#qr input:-moz-placeholder {
color: grey;
}
/* qr reCAPTCHA */ /* qr reCAPTCHA */
#qr_captcha input { #qr_captcha input {
border: 1px solid #AAA !important; border: 1px solid #AAA !important;