Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
In Thingworx 9.5, In Fileupload widget upload button on disabled state is getting misaligned if the custom css is given to upload button, we have tried using different css selectors for disabled upload button but its not working. How could i handle the disabled and enabled states of upload button CSS?
Solved! Go to Solution.
It does work properly in my case
Disabled:
Enabled:
Custom CSS:
@supports (ptcs-style-unit: "PTCS-FILE-UPLOAD") {
[part~=upload-button][disabled] {
background : red !important
}
}
Could you please share your CSS code here ?
/VR
It does work properly in my case
Disabled:
Enabled:
Custom CSS:
@supports (ptcs-style-unit: "PTCS-FILE-UPLOAD") {
[part~=upload-button][disabled] {
background : red !important
}
}
Could you please share your CSS code here ?
/VR