Preethi Rajaraman
Preethi Rajaraman

Reputation: 373

JSF Primefaces 6.2 update - p:selectOneMenu display issue

we just upgraded to 6.2 primefaces in our JSF Application and found that p:selectOneMenu dropdown box was having an extra grey space next to the drop down arrow like below :

enter image description here

Kindly suggest if there is a workaround to fix this. Thanks.

Upvotes: 1

Views: 515

Answers (2)

Preethi Rajaraman
Preethi Rajaraman

Reputation: 373

On adding the below padding change in my custom css, the display issue was resolved:

.ui-selectonemenu {
    padding-right: 0;
}

Upvotes: 1

Melloware
Melloware

Reputation: 12019

I cannot reproduce using the PF Showcase. Here are the steps.

  1. Navigate to: https://www.primefaces.org/showcase/ui/input/oneMenu.xhtml

  2. In the upper right corner select Themes and choose Bootstrap.

enter image description here

Upvotes: 0

Related Questions