From 72d59eaf279f43cffaef1eb7dd5580c47248732b Mon Sep 17 00:00:00 2001 From: ccd0 Date: Mon, 29 Jun 2015 19:32:16 -0700 Subject: [PATCH] Increase width of noscript captcha iframe on reports page. 4chan was using 400px; Google expects 500px. This eliminates the scroll bars on the iframe. --- src/General/css/report.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/General/css/report.css b/src/General/css/report.css index 8e2ed1079..46a39ba0a 100644 --- a/src/General/css/report.css +++ b/src/General/css/report.css @@ -1,3 +1,6 @@ :root:not(.js-enabled) #captchaContainerAlt { height: auto; } +noscript > iframe, #recaptcha_challenge_field { + width: 500px; +}