Skip to content

Commit

Permalink
Allowing 2 widgets to overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Sep 25, 2015
1 parent 8d4c3ea commit f1a64c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions panoramix/templates/panoramix/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
box-shadow: 2px 2px 2px #AAA;
border-radius: 5px;
background-color: white;
//overflow: auto;
}
.gridster .dragging,
.gridster .resizing {
Expand Down
2 changes: 1 addition & 1 deletion panoramix/templates/panoramix/viz_markup.html
Original file line number Diff line number Diff line change
@@ -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) %}
Expand Down
2 changes: 1 addition & 1 deletion panoramix/templates/panoramix/viz_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down

0 comments on commit f1a64c0

Please sign in to comment.