Skip to content
This repository has been archived by the owner on Oct 2, 2019. It is now read-only.

Commit

Permalink
Merge pull request #1625 from dsalvagni/bugfix/933
Browse files Browse the repository at this point in the history
933 Fix text overflow in placeholder and match text
  • Loading branch information
aaronroberson committed May 31, 2016
2 parents b6d9d54 + a434a12 commit faaca57
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -261,3 +261,12 @@ body > .ui-select-bootstrap.open {
.ui-select-container[theme="bootstrap"].direction-up .ui-select-dropdown {
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
}

/* fix ellipsis on placeholder and match text */
.ui-select-placeholder, .ui-select-match-text {
width: 100%;
overflow: hidden;
display: inline-block;
text-overflow: ellipsis;
padding-right: 40px;
}

0 comments on commit faaca57

Please sign in to comment.