1
0
mirror of https://github.com/Tygs/0bin.git synced 2023-08-10 21:13:00 +03:00

Removed autoscrol

This commit is contained in:
sam 2012-04-28 17:51:30 +07:00
parent 5b4ee443e9
commit 9f4fd6b711
2 changed files with 11 additions and 7 deletions

View File

@ -76,6 +76,10 @@ list-style-type: none;
} }
form textarea {
overflow-y:auto;
}
button.btn, input[type="submit"].btn { button.btn, input[type="submit"].btn {
margin-left: 5px; margin-left: 5px;
} }
@ -83,7 +87,7 @@ button.btn, input[type="submit"].btn {
.well { .well {
padding-bottom: 40px; padding-bottom: 40px;
padding-right: 17px; padding-right: 17px;
} }
.legal { .legal {
margin: 0 auto; margin: 0 auto;
@ -99,7 +103,7 @@ button.btn, input[type="submit"].btn {
form { form {
padding-bottom:3em !important; padding-bottom:3em !important;
padding-right: 17px; padding-right: 17px;
} }
.btn-primary { .btn-primary {
@ -107,6 +111,10 @@ position:relative;
top:-4px; top:-4px;
} }
.paste-option-down {
display:none;
}
@ -122,5 +130,3 @@ top:-4px;

View File

@ -60,13 +60,11 @@ $('.paste-option select').change(function(){
$('#content').elastic(); $('#content').elastic();
/* Display bottom paste option buttons when needed */ /* Display bottom paste option buttons when needed */
$('.paste-option-down').hide(); $('#content').live('keyup change', function(){
$('#content').live('keyup', function(){
if($('#content').height() < 600 ){ if($('#content').height() < 600 ){
$('.paste-option-down').hide(); $('.paste-option-down').hide();
} }
else { else {
$(window).scrollTop($(this).height());
$('.paste-option-down').show(); $('.paste-option-down').show();
}; };
}); });