Browse Source
Merge pull request #1192 from Eficent/11.0-imp-web_widget_bokeh_chart
[FIX] web_widget_bokeh_chart
pull/1195/head
Jordi Ballester Alomar
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
5 additions and
0 deletions
-
web_widget_bokeh_chart/static/src/css/custom-bokeh.css
-
web_widget_bokeh_chart/views/web_widget_bokeh_chart.xml
|
|
@ -0,0 +1,4 @@ |
|
|
|
.bk-root { |
|
|
|
/* Overriding this styling option Odoo menu is now displayed on top of bokeh graphs */ |
|
|
|
position: sticky; |
|
|
|
} |
|
|
@ -6,6 +6,7 @@ |
|
|
|
<xpath expr="." position="inside"> |
|
|
|
<link rel="stylesheet" href="/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-0.12.7.css"/> |
|
|
|
<link rel="stylesheet" href="/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-widgets-0.12.7.css"/> |
|
|
|
<link rel="stylesheet" href="/web_widget_bokeh_chart/static/src/css/custom-bokeh.css"/> |
|
|
|
<script type="text/javascript" src="/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-0.12.7.js"/> |
|
|
|
<script type="text/javascript" src="/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-widgets-0.12.7.js"/> |
|
|
|
<script type="text/javascript" src="/web_widget_bokeh_chart/static/src/js/web_widget_bokeh_chart.js"/> |
|
|
|