Remove input field cell outlines in edit view

  • 22 March 2019
  • 1 reply
  • 4 views

Badge +7

How do you remove the input field cell outlines in "edit" view?1168i59903198DA91B519.png

 


1 reply

Badge +3

You can select the field you want to remove the border on and add a CSS Class, say ProjectOwnerField for example. Then add the following custom css for a text field.

.ProjectOwnerField input {
border: 0 !important;
}

 

Or this for a people picker

 

.ProjectOwnerField .ip-container{
border: 0 !important;
}

Reply