Skip to content

Commit

Permalink
fix: use z-index:0 for all layers to not overlap with higher z-index …
Browse files Browse the repository at this point in the history
…elements

There was no need to use z-index > 0, and it can interfere with other DOM
elements, example:
voila-dashboards/voila-vuetify#24
  • Loading branch information
maartenbreddels committed Dec 3, 2019
1 parent 1da9ae2 commit 461e32e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/less/bqplot.less
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@
.bqplot > canvas {
position: absolute;
pointer-events: none;
z-index: 1;
z-index: 0;
}
.bqplot > svg {
z-index: 2;
z-index: 0;
font: 11px sans-serif;
user-select: none;
-ms-user-select: none;
Expand Down

0 comments on commit 461e32e

Please sign in to comment.