FileUpload component, how to change succesful upload fade color?

Hello, After uploading a file, it gets a green fade on top: How to remove it or change the color of it? See example below:
No description
2 Replies
DrByte
DrByte2y ago
https://pqina.nl/filepond/docs/api/style/
[data-filepond-item-state=processing-complete] .filepond--item-panel{
background-color:#369763
}
[data-filepond-item-state=processing-complete] .filepond--item-panel{
background-color:#369763
}
Easy File Uploading With JavaScript | FilePond
A JavaScript library that can upload anything you throw at it, optimizes images for faster uploads, and offers a great, accessible, silky smooth user experience.
Glowworm
GlowwormOP2y ago
That didn't work, however, I found the solution:
.filepond--image-preview-overlay-success {
color: transparent;
}
.filepond--image-preview-overlay-success {
color: transparent;
}
Thanks @drbyte 🙂

Did you find this page helpful?