Skip to content

Commit b73dad6

Browse files
author
Andrew Valums
committed
Fixed bug in IE8, where the hidden input became visible on some PCs.
1 parent 80b3f09 commit b73dad6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

client/fileuploader.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -481,9 +481,10 @@ qq.UploadButton.prototype = {
481481
right: 0,
482482
top: 0,
483483
fontFamily: 'Arial',
484-
// if larger button becomes visible (filter is not applied in IE8 on SOME PCs)
484+
// when button is big it becomes visible in IE8 on SOME PCs
485485
// probably related to http://social.msdn.microsoft.com/forums/en-US/iewebdevelopment/thread/29d0b0e7-4326-4b3e-823c-51420d4cf253
486-
fontSize: '243px',
486+
// three persons reported this, the max values that worked for them were 243, 236, 236
487+
fontSize: '222px',
487488
margin: 0,
488489
padding: 0,
489490
cursor: 'pointer',

0 commit comments

Comments
 (0)