Default z-index of multiselect content is 1. If there is another element with higher z-index nearby it always appears above multiselect content.
To set a higher z-index to multiselect__content-wrapper class should help but it does not.
Here is a fiddle: https://jsfiddle.net/burlakko/qj7xovms/18/
Setting higher z-index to it's descendants also doesn't help
.multiselect__content-wrapper * {position: relative; z-index: 6;}
Same issue here
Add
.multiselect--active {
z-index: 10;
}
This also doesn鈥檛 happen on the current master, thus it should be fixed in the new release.
I suppose this hasn't been fixed in 2.1.0 yet.
.multiselect z-index defaults to 9
.multiselect--active defaults to 1
This means that active multiselects will always be below inactive ones, or maybe I'm missing something ....
Hi everyone
The error continues to appear, I recommend that you modify the z-index but in 2 css tags: vue-multiselect.min.css
Style CSS:
.multiselect--active => z-index: 20
.multiselect__content-wrapper => z-index: 20
In my case I only put 20, because in my project I have another z-index.
Thank you
Most helpful comment
Add
This also doesn鈥檛 happen on the current master, thus it should be fixed in the new release.