Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix query page long content unscrollable problem #2358

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions client/app/pages/queries/query.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ <h3>
</nav>

<div class="content">
<div class="flex-fill d-flex flex-column p-l-15 p-r-15">
<div class="flex-fill d-flex flex-column p-l-15 p-r-15" style="height: 0; overflow-y: hidden;">
<div class="row editor" resizable r-directions="['bottom']" r-flex="true" resizable-toggle
style="min-height: 11px; max-height: 460px;" ng-if="sourceMode">
<section>
Expand Down Expand Up @@ -225,7 +225,7 @@ <h3>
<grid-renderer query-result="queryResult" items-per-page="50"></grid-renderer>
</div>

<div ng-if="selectedTab == vis.id" ng-repeat="vis in query.visualizations" class="query__vis m-t-15 scrollbox">
<div ng-if="selectedTab == vis.id" ng-repeat="vis in query.visualizations" class="query__vis m-t-15 scrollbox" style="max-height: 100vh; overflow-y: auto;">
<visualization-renderer visualization="vis" query-result="queryResult"></visualization-renderer>
</div>
</div>
Expand Down