We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
doc is not showing that you need css styling also. only JS and HTML which is wrong. you need css styling also.
/* picker / .color-picker { background: rgba(255, 255, 255, 0.75); padding: 10px; border: 1px solid rgba(203, 203, 203, 0.6); border-radius: 2px; transition: all 300ms; border-radius:20px; position: fixed; top: -5%; min-width: 200px; opacity: 0; box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.226); left: 0px; width: 100%; z-index: 9999; } / CIRCLE COLORS CSS*/ .color-picker > div { width: 40px; display: inline-block; height: 40px; margin: 5px; border-radius: 100%; opacity: 0.7;
}
.picker-wrapper { padding: 20px; }
.color-picker > div:hover { opacity: 1; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
doc is not showing that you need css styling also. only JS and HTML which is wrong.
you need css styling also.
/* picker /
.color-picker {
background: rgba(255, 255, 255, 0.75);
padding: 10px;
border: 1px solid rgba(203, 203, 203, 0.6);
border-radius: 2px;
transition: all 300ms;
border-radius:20px;
position: fixed;
top: -5%;
min-width: 200px;
opacity: 0;
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.226);
left: 0px;
width: 100%;
z-index: 9999;
}
/ CIRCLE COLORS CSS*/
.color-picker > div {
width: 40px;
display: inline-block;
height: 40px;
margin: 5px;
border-radius: 100%;
opacity: 0.7;
}
.picker-wrapper {
padding: 20px;
}
.color-picker > div:hover {
opacity: 1;
}
The text was updated successfully, but these errors were encountered: