simonwep / pickr

🎨 Flat, simple, multi-themed, responsive and hackable Color-Picker library. No dependencies, no jQuery. Compatible with all CSS Frameworks e.g. Bootstrap, Materialize. Supports alpha channel, rgba, hsla, hsva and more!
https://simonwep.github.io/pickr
MIT License
4.29k stars 287 forks source link

Pickr without the small box #236

Closed ArduinoidIOT closed 4 years ago

ArduinoidIOT commented 4 years ago

Is it possible to have the color picker always shown without the tiny box that shows the color?

simonwep commented 4 years ago

You could simply hide the button via.

.pcr-button {display: none;}

and use inline: true; or showAlways: true; in the configuration :)

ArduinoidIOT commented 4 years ago

Okay, thanks.