use available space for image
This commit is contained in:
@@ -79,9 +79,9 @@ body{
|
||||
#result-view {
|
||||
grid-area: result;
|
||||
background: #eee;
|
||||
bottom: 0;
|
||||
left:0;
|
||||
right: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#result-view i {
|
||||
@@ -97,6 +97,7 @@ body{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
input:required:invalid {
|
||||
|
||||
@@ -89,8 +89,8 @@ function plot(event){
|
||||
showLoadingIcon();
|
||||
var request = {};
|
||||
request['query'] = $('#search-input').val();
|
||||
request['height'] = $('#result-view').height()-15;
|
||||
request['width'] = $('#result-view').width()-15;
|
||||
request['height'] = $('#result-view').height();
|
||||
request['width'] = $('#result-view').width();
|
||||
request['groupBy'] = groupBy();
|
||||
request['limitBy'] = $('#search-limit-by').val();
|
||||
request['limit'] = parseInt($('#search-limit-value').val());
|
||||
|
||||
Reference in New Issue
Block a user