cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X

Container Style Border on 9.3

A_Macierzynski
14-Alexandrite

Container Style Border on 9.3

Hi!

 

I am trying to remove the border of the clicked container. Every single widget has it, but I cannot find a place where it is defined. Looks like custom CSS for me. Basically, it is a blue 1px border everywhere.

 

Picture in attachment.

 

Thanks!

8 REPLIES 8

Hello @A_Macierzynski ,

 

Pls check this community thread for your issue:

https://community.ptc.com/t5/ThingWorx-Developers/Container-border/td-p/644204?posno=4&q=border%20of%20the%20container&source=search

This article explains the How to hide the border line of Value Display Widget:

https://www.ptc.com/en/support/article/cs321636

 

Let me know if this helps.

 

Regards

Bhawna

 

Hi @bchaudhary 

 

This is not the solution to my issue. My issue is not about the border overall, but only when the container is being clicked.

This appears on 9.2 & 9.3. Not visible on 8.5.

 

CSS from the article is also about something else.

 

Regards,

Adam

 

Working CSS looks like this:

 

.not-clickable {
    pointer-events: none;
}

In our case, that's not possible to use that, as we want to keep it clickable.

Hello @A_Macierzynski ,

 

Pls check the given Article - CS324593 - ThingwWorx Web Components customization with Visual SDK CSS

https://www.ptc.com/en/support/article/cs324593

 

Look at the part where it is mentioned:

  • Remove Focus box from UI items

ptcs-focus-overlay {

visibility: hidden;

}

 

.ptcs-wrapper:not([no-wc-style]):focus:not(.dummy):not(.dummy):not(.dummy) {

box-shadow: none;

}

 

I hope it helps your issue.

 

Regards

Bhawna

Didn't try it, because I found out that on 9.3 there is actually Focus section in Theme which is working for me and I was able to remove that border with this change.

Hello @A_Macierzynski ,

 

Thanks for sharing the solution. 

However, if you try the suggested solution and it works for you.

pls share the outcome for the benefit of other members.

 

Regards

Bhawna

 

If I refer to the article: https://www.ptc.com/en/support/article/CS324593 , it appears that the section for "Remove Focus box from UI items", proposing following CSS code:

ptcs-focus-overlay {
visibility: hidden;
}

.ptcs-wrapper:not([no-wc-style]):focus:not(.dummy):not(.dummy):not(.dummy) {
box-shadow: none;
}

only applies until Thingworx 9.2.
With Thingworx 9.3, modifying settings on the Focus section of the Theme is enough.

In particular, you can set the fourth option to "tw style-cssoption none" to get rid of the "focus box":

ssauvage2_0-1651153664044.png

 

DanZ
15-Moonstone
(To:A_Macierzynski)

Hi,

I noticed this annoying blue border only around the grid widget when clicked. I removed it with this custom CSS snippet (no custom class required):

.widget-gridadvanced[themable] {
    border: 1px none !important;
}

I think the reason for the invisible 1px border was that without it, the grid position was a bit off. But I am not sure right now, so you can try it with 0.

Top Tags