Things I have tried
Is there a way to increase the width of the link suggestion box? (the one which pops up on “[[”)
The following reduces the size (transform), but that reduces the width proportionally. I’m unable to increase the width or height.
.suggestion-container {
transform: scale(0.8);
width: 1000px;
}
What I’m trying to do
I’d like to prevent the suggestion popup to display a horizontal scrollbar. Longer entries in have a kind of wordwrap:
The second entry is part_5, but the “5” is hidden under the vertical scrollbar. Only if I scroll to the right I’m able to see the full name.
In general, both height and width of the suggestion popup could be bigger, to get a bit more context.