Allowing 2 widgets to overflow

This commit is contained in:
Maxime Beauchemin 2015-09-25 16:52:15 -07:00
parent 8d4c3ea381
commit f1a64c0988
3 changed files with 3 additions and 2 deletions

View File

@ -32,6 +32,7 @@
box-shadow: 2px 2px 2px #AAA;
border-radius: 5px;
background-color: white;
//overflow: auto;
}
.gridster .dragging,
.gridster .resizing {

View File

@ -1,5 +1,5 @@
{% macro viz_html(viz) %}
<div style="padding: 10px;">{{ viz.rendered()|safe }}</div>
<div style="padding: 10px;overflow: auto; height: 100%;">{{ viz.rendered()|safe }}</div>
{% endmacro %}
{% macro viz_js(viz) %}

View File

@ -26,7 +26,7 @@
</tbody>
</table>
{% else %}
<div id="{{ viz.token }}" style="display: none;"></div>
<div id="{{ viz.token }}" style="display: none;overflow: auto; height: 100%;"></div>
<img src="{{ url_for("static", filename="loading.gif") }}" class="loading">
{% endif %}
{% endmacro %}