The issue has been solved

posted by bfred-it about 6 years ago 
What about some flexbox...

.comment-reactions-options {
flex-wrap: wrap;
margin-bottom: -1px;
}
.reaction-summary-item {
border-bottom: 1px solid #d1d5da;
flex: 1 1 auto;
}
.reaction-popover-container {
align-self: center;
.reaction-summary-item {
border-bottom: 0 none;
}
}
posted by jerone about 6 years ago
By using display: grid
we can probably keep the width constant and show more avatars… but it’s a lot of noise and height 🤔
I’m just gonna wait until GitHub drops the two useless new reactions. I still don’t get them. I’d rather hide them altogether from everywhere.
posted by bfred-it about 6 years ago
@bfred-it thoughts about the @jerone suggestion? It looks pretty smooth.
posted by gurrrung almost 6 years ago
I don’t think it will look great with 6 reactions that way: 5 on the first line and 1 stretched out on the second line… but it may be better than what we have.
posted by bfred-it almost 6 years ago
@jerone do you want to take this one?
Further changes needed since we now allow 2 lines:
- show more avatars or all of them
- if it makes things harder, drop the "expand on hover" behavior
- manually wrap the reactions to make them balanced (so the second line never ends up having only 1 reaction with 1 avatar, for example); this might not be easy because reaction count also applies, but perhaps this logic should be good enough:
- if it wraps,
- 4 reactions: 2 + 2
- 5 reactions: 3 + 2
- 6 reactions: 3 + 3
- 7 reactions: 4 + 3
- 8 reactions: 4 + 4
posted by bfred-it over 5 years ago
@fregante For the next 1.5 week my time is sparse, but after then, yes I'll send a PR. In the meantime, if someone else wants to that's fine too; we all use this tool :)
posted by jerone over 5 years ago
Ping on this if anyone pick it up
posted by fregante over 5 years ago
Yeah, was already poking at it.
posted by jerone over 5 years ago
Work-in-progress, but this is what I have so far:

.has-reactions form {
width: 100%;
}
.rgh-reactions {
display: grid;
grid-template-columns: repeat(8, 25%);
width: 100%;
justify-content: stretch;
}
.comment-reactions-options {
margin-bottom: -1px;
background: transparent;
}
.reaction-summary-item {
border-bottom: 1px solid #d1d5da;
}
.reaction-popover-container .reaction-summary-item {
border-bottom: 0 none; /* No border below the "Add your reaction" button. */
}
posted by jerone over 5 years ago
@fregante What's the status of this?
If no one is actively working on it, I'd like to take a stab at it.
posted by ulken over 5 years ago
posted by jerone over 5 years ago 
@fregante I'll might take another stab at this soon. Can you summarize for the last time what kind of wrapping you want.
posted by jerone about 5 years ago
Thank you!
Logic: only enable the 2-line grid when the icons don't fit on one line.
The easiest solution (without math guesses) would be to measure that with getBoundingClientRect
(if height > 50, enable grid) but each call triggers a reflow if we follow it by classList.add
, so you'd have to batch them. e.g:
for (const line of reactionLines.map(el => ({el, height: el.getBoundingClientRect().height}))) {
if (height > 50) {
line.classList.add('grid')
}
}
posted by fregante about 5 years ago
posted by issuehunt-app[bot] about 5 years ago