Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
Hello,
I'm using a mashup collection to handle my menu. In the menu mashup I have a value display. Unfortunately when the user click on it a border appears around it. I think this is due to
root : {
--ptcs-focus-overlay--border-width: 2px;
}
How can I avoid that? I'm using ThingWorx 9.1.1-b483
Solved! Go to Solution.
Hi @gch,
Got your issue, you can add the following to the "custom CSS" tab of the mashup.
ptcs-focus-overlay {
visibility: hidden;
}
Then the border wouldn't appear when you click the value.
Thanks,
/Yoyo
Hi @gch,
Please check if below steps can help you resolve this issue:
1. Access the Style Properties pane of menu in master definition;
2. In Style Properties pane, select MenuStyle and change Line Thickness to a small value
Thanks,
/Yoyo
Hi Yoyo, I'm not using the TW Menu item, I'm using the value display widget. I already tried to modify the style without success.
Hi @gch,
Got your issue, you can add the following to the "custom CSS" tab of the mashup.
ptcs-focus-overlay {
visibility: hidden;
}
Then the border wouldn't appear when you click the value.
Thanks,
/Yoyo
Yes it is working fine, thanks a lot!