Page 1 of 1

Fields background color in parameters view

PostPosted: Mon Sep 17, 2018 1:15 am
by Olivier Chenot
Hi everybody,

Anybody could help me giving the name of the ccs object for field background in parameters view ?
It looks very dark in my solution, I would like to lighten it, using css style customization.

Thanks in advance,
Olivier

Re: Fields background color in parameters view

PostPosted: Mon Sep 17, 2018 9:46 am
by kcembrey
Hi Olivier, you can increase the opacity of that class to make it a little more contrasted. We're actually setting the background-color of those dropdowns white, but they're normally set to 15% opacity. If you set it to 40%, it makes them appear lighter in color. Here's the CSS for that:


.settings-container .select-wrapper {
background-color: rgb(255,255,255,.40) !important;
}

You could also change the rgb color of the background color if desired.

Regards,

KC