mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
modal: Fix invite link overflow in mobile view.
Added a flex div into the copy invite link dialog box. Fixes #29524.
This commit is contained in:
committed by
GitHub
parent
68ea6704a4
commit
9aa6bbcee0
@@ -666,6 +666,14 @@ li,
|
||||
}
|
||||
}
|
||||
|
||||
#copy_generated_link_container {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
margin-right: -32px;
|
||||
gap: 4px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#copy_generated_invite_link {
|
||||
position: relative;
|
||||
margin-right: -32px;
|
||||
|
@@ -1,7 +1,9 @@
|
||||
{{t "Link:" }}
|
||||
<a href="{{ invite_link }}" id="multiuse_invite_link">{{ invite_link }}</a>
|
||||
|
||||
<a class="btn copy_button_base" data-tippy-content="{{t 'Copy link' }}" data-tippy-placement="top" aria-label="{{t 'Copy link' }}"
|
||||
id='copy_generated_invite_link' data-clipboard-text="{{ invite_link }}">
|
||||
{{> copy_to_clipboard_svg }}
|
||||
</a>
|
||||
|
||||
<div id="copy_generated_link_container">
|
||||
<span>{{t "Link:" }}</span>
|
||||
<a href="{{ invite_link }}" id="multiuse_invite_link">{{ invite_link }}</a>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user