1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-24 07:30:10 +01:00

QR fix for tablet (portrait) mode in laptops

Quick reply will now show up on tablets in portrait mode where width can be < 800px as originally coded (mainly 768x1280 and 800x1280)
This commit is contained in:
anonish 2015-01-29 21:44:11 -06:00 committed by czaks
parent 388e87746e
commit c74fc6cefb

View File

@ -116,7 +116,7 @@
#quick-reply td.recaptcha-response {\ #quick-reply td.recaptcha-response {\
padding: 0 0 1px 0;\ padding: 0 0 1px 0;\
}\ }\
@media screen and (max-width: 800px) {\ @media screen and (max-width: 600px) {\
#quick-reply {\ #quick-reply {\
display: none !important;\ display: none !important;\
}\ }\
@ -364,7 +364,7 @@
$(window).ready(function() { $(window).ready(function() {
if (settings.get('hide_at_top', true)) { if (settings.get('hide_at_top', true)) {
$(window).scroll(function() { $(window).scroll(function() {
if ($(this).width() <= 800) if ($(this).width() <= 600)
return; return;
if ($(this).scrollTop() < $origPostForm.offset().top + $origPostForm.height() - 100) if ($(this).scrollTop() < $origPostForm.offset().top + $origPostForm.height() - 100)
$postForm.fadeOut(100); $postForm.fadeOut(100);
@ -385,7 +385,7 @@
}; };
$(window).on('cite', function(e, id, with_link) { $(window).on('cite', function(e, id, with_link) {
if ($(this).width() <= 800) if ($(this).width() <= 600)
return; return;
show_quick_reply(); show_quick_reply();
if (with_link) { if (with_link) {
@ -440,7 +440,7 @@
$('.quick-reply-btn').hide(); $('.quick-reply-btn').hide();
$(window).scroll(function() { $(window).scroll(function() {
if ($(this).width() <= 800) if ($(this).width() <= 600)
return; return;
if ($(this).scrollTop() < $('form[name="post"]:first').offset().top + $('form[name="post"]:first').height() - 100) if ($(this).scrollTop() < $('form[name="post"]:first').offset().top + $('form[name="post"]:first').height() - 100)
$('.quick-reply-btn').fadeOut(100); $('.quick-reply-btn').fadeOut(100);