From 0716c42a3372c5e6f6499ca37f5a9e2a397657d0 Mon Sep 17 00:00:00 2001 From: James Campos Date: Wed, 21 Sep 2011 16:49:23 -0700 Subject: [PATCH] input { visibility: hidden; } --- 4chan_x.user.js | 6 +++++- script.coffee | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index 5e87df49e..b79b7a565 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3152,7 +3152,11 @@ width: 100%;\ }\ #qr #files input {\ - display: none;\ + /* cannot use `display: none;`\ + https://bugs.webkit.org/show_bug.cgi?id=58208\ + http://code.google.com/p/chromium/issues/detail?id=78961\ + */\ + visibility: hidden;\ }\ #qr #files img {\ max-height: 100px;\ diff --git a/script.coffee b/script.coffee index 6c5132df8..03a55ed7e 100644 --- a/script.coffee +++ b/script.coffee @@ -2483,7 +2483,11 @@ Main = width: 100%; } #qr #files input { - display: none; + /* cannot use `display: none;` + https://bugs.webkit.org/show_bug.cgi?id=58208 + http://code.google.com/p/chromium/issues/detail?id=78961 + */ + visibility: hidden; } #qr #files img { max-height: 100px;