Skip to content

Instantly share code, notes, and snippets.

@wmakley
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wmakley/9c1bc1f2f61caf1aff37 to your computer and use it in GitHub Desktop.
Save wmakley/9c1bc1f2f61caf1aff37 to your computer and use it in GitHub Desktop.
Recaptcha Foundation Fixes
/* Append to stylesheet of any site using zurb foundation to fix recaptcha.
* Compiled from this thread: https://github.com/zurb/foundation/issues/2625
*/
#recaptcha_area, #recaptcha_table {
table-layout: auto !important;
}
#recaptcha_area table thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td {
line-height: normal;
}
.recaptcha_is_showing_audio embed {
height: 0;
width: 0;
}
#recaptcha_area input[type="text"] {
display: inline-block !important;
height: auto !important;
}
#recaptcha_response_field {
text-transform: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment