This repository was archived by the owner on Oct 2, 2019. It is now read-only.
This repository was archived by the owner on Oct 2, 2019. It is now read-only.
Text overflow on ui-search control #1278
Open
Description
Can be seen in the top ui control in your demo plunkr: http://plnkr.co/edit/a3KlK8dKH3wwiiksDSn2?p=preview
If you select too long of an element it overflows out of the control. It looks like it's happening because the .btn class is applying white-space:nowrap.
Here's a quick/dirty/temporary fix for someone if they need it:
.ui-select-match-text{
display:inline-block;
overflow:hidden;
text-overflow: ellipsis;
width:95%;
}