fix #649 페이지 하단으로 스크롤 했을 때 문제 보완

This commit is contained in:
bnu 2014-05-13 11:11:05 +09:00
parent 5527510b63
commit 3e12f70956
4 changed files with 8 additions and 6 deletions

View file

@ -358,6 +358,9 @@ body>.x,
.x_modal-backdrop { .x_modal-backdrop {
display: none; display: none;
} }
.x_modal {
top: 30px;
}
.x_modal-backdrop { .x_modal-backdrop {
opacity: .6; opacity: .6;
filter: alpha(opacity=60); filter: alpha(opacity=60);
@ -410,7 +413,7 @@ body>.x,
min-width: 220px; min-width: 220px;
} }
.x .x_form-horizontal .x_control-group { .x .x_form-horizontal .x_control-group {
margin-bottom: 10px; margin-bottom: 10px;
} }
.x input[type="text"], .x input[type="text"],
.x input[type="password"], .x input[type="password"],

File diff suppressed because one or more lines are too long

View file

@ -426,8 +426,7 @@ jQuery(function($){
var modalBodyHeight = xeModalBackdropHeight; var modalBodyHeight = xeModalBackdropHeight;
modalBodyHeight -= $modal.find('.x_modal-header:visible').height(); modalBodyHeight -= $modal.find('.x_modal-header:visible').height();
modalBodyHeight -= $modal.find('.x_modal-footer:visible').height(); modalBodyHeight -= $modal.find('.x_modal-footer:visible').height();
modalBodyHeight -= $modal.offset().top; modalBodyHeight -= 150;
modalBodyHeight -= 120;
$modal.find('.x_modal-body').css('height', modalBodyHeight); $modal.find('.x_modal-body').css('height', modalBodyHeight);

File diff suppressed because one or more lines are too long