Allowing 2 widgets to overflow
This commit is contained in:
parent
8d4c3ea381
commit
f1a64c0988
|
|
@ -32,6 +32,7 @@
|
|||
box-shadow: 2px 2px 2px #AAA;
|
||||
border-radius: 5px;
|
||||
background-color: white;
|
||||
//overflow: auto;
|
||||
}
|
||||
.gridster .dragging,
|
||||
.gridster .resizing {
|
||||
|
|
|
|||
|
|
@ -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) %}
|
||||
|
|
|
|||
|
|
@ -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 %}
|
||||
|
|
|
|||
Loading…
Reference in New Issue