Height of Multi Select fields in Edit View (Suite P Improved)

For those of you using the new SuitePImproved Theme from UrdhvaTech, I made a small tweak and thought I’d share.
The field height of Multi Select boxes were set to a fixed height regardless of the number of values in the list. This made it very difficult to identify and select values quickly.
Here is the change I made to fix the issue :

in theme/SuitePImproved/css/style.css

I changed line 4774 ( Look for “select[size] {” )
from:
height: 30px; /edited by urdhva/
to:
height: inherit; /modification to urdhva/

This will increase the height of multi select boxes

1 Like