Community Tip - You can change your system assigned username to something more personal in your community settings. 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