Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Picker appears to be semi-transparent and can see and interact with elements underneath #32

Closed
danielleplatt2020 opened this issue Jun 22, 2020 · 1 comment

Comments

@danielleplatt2020
Copy link

image

These are the options that I am using:

pickerBackround.setOptions({
    alpha: false,
    color: '#12263F',
    popup: 'left'
});

Picker works as expected otherwise.

@Sphinxxxx
Copy link
Owner

The "Select Colour" button is rendered on top of the picker. I assume that button has position: absolute or position: relative with a high z-index? Try moving the picker to the foreground by including this CSS somewhere on your page:

body .picker_wrapper.popup {
    z-index: 9999;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants