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

Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X

CSS for Selected Grid Cell - 9.3.4

Sathishkumar_C
17-Peridot

CSS for Selected Grid Cell - 9.3.4

Remove or Change the selected cell's border in runtime,

Sathishkumar_C_0-1673007185836.png

In runtime, i'm seeing CSS as follows,

Sathishkumar_C_1-1673007248841.png

How to apply in Custom CSS tab?  I don't find any configurations to change the border color.

1 ACCEPTED SOLUTION

Accepted Solutions

I was able to override the color using this in the mashups custom css tab:

 

ptcs-focus-overlay {
	border-color: red !important;   
}

 

travman7777_0-1673025365316.png

 

View solution in original post

2 REPLIES 2

I was able to override the color using this in the mashups custom css tab:

 

ptcs-focus-overlay {
	border-color: red !important;   
}

 

travman7777_0-1673025365316.png

 

To hide the border,

ptcs-focus-overlay {
    visibility: hidden;
}
Top Tags