KIE customization


Change the width of enumerations drop down menus


By default the width defined for the drop down menus that appear on the rule editor is of 220px. This can be changed on the following css file:

{kie-war}/org.kie.workbench.KIEWebapp/css/bootstrap.min.css

search for the following lines:

select {
- width: 220px;
- border: 1px solid #cccccc;
- background-color: #ffffff;
}

Changing "220px" for "auto" will adjust the width of the drop down menus according to the width of the text.

References