We changed the item behavior when you resize the window.
If you resize the window the item will lose the button for the popup.
We changed the min-width with the label length as base.
--enhancedLovItem.js line 8099
//transfer result width of APEX item after rendering the element
if ( this.element.closest('.col').outerWidth() >= this.element.outerWidth() ) {
if ( this.element.outerWidth() *0.5 > 150) {
var $label = $("label[for='"+this.element.attr('id')+"']")
container.css('minWidth', $label.outerWidth()+50);
}
else
{
if (this.element.outerWidth())
{ container.css('minWidth', this.element.outerWidth());}
else
{container.css('minWidth',150);}
}
// container.css('minWidth', this.element.outerWidth());
}
We changed the item behavior when you resize the window. If you resize the window the item will lose the button for the popup. We changed the min-width with the label length as base.
--enhancedLovItem.js line 8099
-- enhancedLovItem.css line 11
We changed font size and color for better contrast and same font size of the other items.
-- enhancedLovItem.css line 145
-- enhancedLovItem.css line 766