Merge pull request #4504 from matrix-org/t3chguy/cherry-pick/3

cap width of editable item list item to leave space for its X button
pull/21833/head
Michael Telatynski 2020-04-27 18:57:23 +01:00 committed by GitHub
commit cf6dbcc71b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -53,6 +53,9 @@ limitations under the License.
.mx_EditableItem_item {
flex: auto 1 0;
order: 1;
width: calc(100% - 14px); // leave space for the remove button
overflow-x: hidden;
text-overflow: ellipsis;
}
.mx_EditableItemList_label {