Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! 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