All processes dropdown design

Hello,

Anyone else noticed the design colors of the dropdown in the header? Is this normal design? I find it pretty hard to read, weird choice of color contrasts.

image

Hi Gabriel,

This is the default style for WorkflowGen, you can add a new style line in the default css file (
\wfgen\App_Themes\Default\portal\css\Default.css)

  • Go to line 455
  • Add the line : .HeaderPortal .PageHeader .Row .CellProcess .Select optgroup {color:black}
  • Clear your browser cache

Before

.HeaderPortal .PageHeader .Row .CellProcess .Select option { color:rgb(220,220,220); background-color: rgb(65,65,65); }
.HeaderPortal .PageHeader .Row .CellProcess .Select .MainOption {font-weight: bold;font-size: 12px; color:rgb(220,220,220); }

After

.HeaderPortal .PageHeader .Row .CellProcess .Select option { color:rgb(220,220,220); background-color: rgb(65,65,65); }
.HeaderPortal .PageHeader .Row .CellProcess .Select optgroup {color:black}
.HeaderPortal .PageHeader .Row .CellProcess .Select .MainOption {font-weight: bold;font-size: 12px; color:rgb(220,220,220); }

This will be fixed in the next release.

Regards,
Quentin