Skip to main content
17-Peridot
January 6, 2023
Solved

CSS for Selected Grid Cell - 9.3.4

  • January 6, 2023
  • 1 reply
  • 1216 views

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.

Best answer by travman7777

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

 

1 reply

12-Amethyst
January 6, 2023

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

 

17-Peridot
January 9, 2023

To hide the border,

ptcs-focus-overlay {
 visibility: hidden;
}