Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
I tried to use custom css and went for @supports ..... custom css, but this is impacting other mashups and showing icon there as well .
Solved! Go to Solution.
Hi @VN_10171538
Please check this post - Solved: Custom CSS new syntax for specific button - PTC Community
You can use @support with widget element ID to change specific tabset icons
/VR
Hi @VN_10171538
Please check this post - Solved: Custom CSS new syntax for specific button - PTC Community
You can use @support with widget element ID to change specific tabset icons
/VR
Hi @VN_10171538
If you use elementId in CSS it won't affect other mashup tabset icons
For example: I have changed the width of Tabset with element id : root_ptcstabset-117
@supports (ptcs-style-unit: "#root_ptcstabset-117.PTCS-TABSET"){
[part~=tabs-tab] {
width: 15px;
background: #ffffff;
border-radius: 0px;
border-bottom-color: #d8dbde;
border-top-color: #d8dbde;
}
}
And it does not affect other tabset in the same mashup
/VR