Skip to content

Commit

Permalink
Merge pull request #6 from QuantStack/update-voila
Browse files Browse the repository at this point in the history
Update to voila 0.1.6
  • Loading branch information
SylvainCorlay authored Jul 6, 2019
2 parents 5aa43cf + 40c7837 commit f9f0a2f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'packages': [],
'data_files': data_files,
'install_requires': [
'voila>=0.1.5,<0.2'
'voila>=0.1.6,<0.2'
],
'author': 'QuantStack',
'author_email': '[email protected]',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
{% endblock html_head_js%}

{% block html_head_css %}
<link href="http://gridstackjs.com/dist/gridstack.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="{{resources.base_url}}voila/static/index.css"></link>

{% if resources.theme == 'dark' %}
<link rel="stylesheet" type="text/css" href="{{resources.base_url}}voila/static/theme-dark.css"></link>
Expand All @@ -46,6 +46,8 @@
</style>
{% endfor %}

<link href="http://gridstackjs.com/dist/gridstack.css" rel="stylesheet">

{{ super() }}

<style>
Expand Down Expand Up @@ -86,9 +88,9 @@ body {

{% block body %}
{% if resources.theme == 'dark' %}
<body class="jp-Notebook theme-dark" data-base-url="{{resources.base_url}}voila/">
<body class="theme-dark" data-base-url="{{resources.base_url}}voila/">
{% else %}
<body class="jp-Notebook theme-light" data-base-url="{{resources.base_url}}voila/">
<body class="theme-light" data-base-url="{{resources.base_url}}voila/">
{% endif %}
<section id="demo" class="voila-gridstack">
<div class="container">
Expand Down

0 comments on commit f9f0a2f

Please sign in to comment.