Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. 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;
}