You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
932 B

  1. .bk-root {
  2. /* Overriding this styling option Odoo menu is now displayed on top of bokeh graphs */
  3. z-index: 0;
  4. /* The following !important sentences are needed to override inline styles hardcoded by the bokeh library.
  5. This way the graphs are always displayed inside their defined container in the Qweb views.
  6. */
  7. .bk-layout-stretch_both {
  8. height: inherit !important;
  9. width: inherit !important;
  10. }
  11. .bk-plot-wrapper {
  12. height: inherit !important;
  13. width: inherit !important;
  14. }
  15. // forces the toolbar to be always at the right of the plot
  16. .bk-toolbar-wrapper {
  17. height: inherit !important;
  18. float: right !important;
  19. left: 0 !important;
  20. }
  21. .bk-canvas-wrapper {
  22. height: inherit !important;
  23. width: inherit !important;
  24. }
  25. .bk-canvas{
  26. height: inherit !important;
  27. width: inherit !important;
  28. }
  29. }