Reputation: 373
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 :
Kindly suggest if there is a workaround to fix this. Thanks.
Upvotes: 1
Views: 515
Reputation: 373
On adding the below padding change in my custom css, the display issue was resolved:
.ui-selectonemenu {
padding-right: 0;
}
Upvotes: 1
Reputation: 12019
I cannot reproduce using the PF Showcase. Here are the steps.
Navigate to: https://www.primefaces.org/showcase/ui/input/oneMenu.xhtml
In the upper right corner select Themes and choose Bootstrap.
Upvotes: 0