Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
Remove or Change the selected cell's border in runtime,
In runtime, i'm seeing CSS as follows,
How to apply in Custom CSS tab? I don't find any configurations to change the border color.
Solved! Go to Solution.
I was able to override the color using this in the mashups custom css tab:
ptcs-focus-overlay {
border-color: red !important;
}
I was able to override the color using this in the mashups custom css tab:
ptcs-focus-overlay {
border-color: red !important;
}
To hide the border,
ptcs-focus-overlay {
visibility: hidden;
}