invites: Handle long invite URL overflow properly.

Fixes #19764.
This commit is contained in:
Eeshan Garg 2021-09-28 15:57:50 -04:00 committed by Tim Abbott
parent 8045355eee
commit 8fab13bb6c
1 changed files with 10 additions and 1 deletions

View File

@ -499,7 +499,7 @@ li,
position: relative;
margin-right: -32px;
margin-top: -1px;
padding: 8px 3px 0 13px;
padding: 6px 3px 6px 13px;
/* This property nullifies the box-shadow rendered by .btn class */
&:active {
@ -2411,6 +2411,15 @@ div.topic_edit_spinner .loading_indicator_spinner {
text-align: left;
}
#multiuse_invite_link {
width: 350px;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
overflow: hidden;
vertical-align: bottom;
}
#invite-stream-checkboxes {
padding-bottom: 26px;
}