mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
23 lines
576 B
SCSS
Executable File
23 lines
576 B
SCSS
Executable File
/*
|
|
The following !important sentences are needed to override inline styles hardcoded by the bokeh library.
|
|
This way the graphs are always displayed inside their defined container in the Qweb views.
|
|
*/
|
|
.bk-root {
|
|
/* Overriding this styling option Odoo menu is now displayed on top of bokeh graphs */
|
|
z-index: 0;
|
|
height: inherit !important;
|
|
|
|
}
|
|
.bk-root > .bk {
|
|
height: inherit !important;
|
|
|
|
}
|
|
.bk-root > .bk > .bk {
|
|
height: inherit !important;
|
|
|
|
}
|
|
.bk-root > .bk > .bk > .bk-canvas {
|
|
height: inherit !important;
|
|
position: inherit !important;
|
|
}
|