This commit is contained in:
Nicolas Stepien 2012-09-20 01:31:37 +02:00
parent 55da34c842
commit 11c7d5316f
3 changed files with 12 additions and 2 deletions

View File

@ -2201,6 +2201,7 @@
} else { } else {
return; return;
} }
$.addClass(QR.el, 'captcha');
$.after($('.textarea', QR.el), $.el('div', { $.after($('.textarea', QR.el), $.el('div', {
className: 'captchaimg', className: 'captchaimg',
title: 'Reload', title: 'Reload',
@ -5619,9 +5620,12 @@ h1 {\
}\ }\
#qr textarea.field {\ #qr textarea.field {\
display: -webkit-box;\ display: -webkit-box;\
min-height: 120px;\ min-height: 160px;\
min-width: 100%;\ min-width: 100%;\
}\ }\
#qr.captcha textarea.field {\
min-height: 120px;\
}\
.textarea {\ .textarea {\
position: relative;\ position: relative;\
}\ }\

View File

@ -1,4 +1,6 @@
master master
- Mayhem
Larger Comment text input by default for 4chan Pass users and on /f/ (no captcha).
2.35.2 2.35.2
- Mayhem - Mayhem

View File

@ -1688,6 +1688,7 @@ QR =
delete @onready delete @onready
else else
return return
$.addClass QR.el, 'captcha'
$.after $('.textarea', QR.el), $.el 'div', $.after $('.textarea', QR.el), $.el 'div',
className: 'captchaimg' className: 'captchaimg'
title: 'Reload' title: 'Reload'
@ -4544,9 +4545,12 @@ h1 {
} }
#qr textarea.field { #qr textarea.field {
display: -webkit-box; display: -webkit-box;
min-height: 120px; min-height: 160px;
min-width: 100%; min-width: 100%;
} }
#qr.captcha textarea.field {
min-height: 120px;
}
.textarea { .textarea {
position: relative; position: relative;
} }