Currently, I am facing an issue with a button that triggers the filestack uploader in my React application. The functionality works as expected, but I am struggling to override the default blue spinner/loader that is displayed with the filestack uploader.
Upon inspecting the filestack file using my browser's dev tools, I came across the following snippet: https://i.sstatic.net/cBXS1.png
Despite my efforts to modify it in the global.css
file, I have not been successful in altering the appearance.
As a reference, the current output is shown here: https://i.sstatic.net/C61Co.png
I have attempted the following code snippet, but it has not produced the desired result:
.fsp-loading::before {
display: none !important;
}
#__filestack-picker.fsp-picker-appear-active {
visibility: hidden !important;
height: 0px !important;
width: 0px !important;
}
If anyone has any suggestions or solutions on how I can successfully remove this default spinner/loader, I would greatly appreciate it.