0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-08 02:52:39 -05:00

Added a temporary fix for wrapping multiple mentions dropdown

refs https://github.com/TryGhost/Team/issues/2606
This commit is contained in:
Djordje Vlaisavljevic 2023-03-02 20:06:46 +00:00
parent c6185017be
commit 7bc7881088
2 changed files with 2 additions and 2 deletions

View file

@ -96,6 +96,7 @@
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
max-width: 240px;
}
.gh-mention-header .popover-arrow {
@ -210,7 +211,6 @@
}
.gh-mentions-list-cta h4 {
color: var(--black);
text-align: center;
font-weight: 600;
margin-bottom: 8px;

View file

@ -56,7 +56,7 @@
</div>
<div>
<span class="gh-mention-your-link has-multiple-links">{{mention.mentions.length}} links</span>
<EmberPopover @tooltipClass="popover" @spacing={{8}} @arrowClass="popover-arrow" @side="bottom-start">
<EmberPopover @tooltipClass="popover" @spacing={{8}} @arrowClass="popover-arrow" @side="bottom">
<ul class="gh-mention-multiple-links">
{{#each mention.mentions as |submention|}}
<li class="gh-mention-multiple-links-link">{{if submention.resource submention.resource.name submention.target}}</li>