I’m working on adding completions functionality to my app and I’m having trouble styling it properly to match other Gnome apps. By default, it seems to have no styling whatsoever—no border, no shadow, etc.—and just uses the same styling as the GtkSource.View’s text element, as defined in my XML style scheme, making it hard to distinguish between editor and completion popover.
After playing around with CSS, I’ve been able to achieve the following:
.completion {
border-radius: 0px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
font-family: "Adwaita Sans";
font-size: 0.8em;
font-weight: 400;
min-width: 32em;
outline: 1px solid var(--border-color);
outline-offset: -1px;
}
.completion .icon {
min-width: 32px;
}
This is better than it originally was, but the box shadow doesn’t work, and when I round the border radius, the row’s background extends outside the rounded border—hence why I’ve squared it off. I also can’t seem to change the font-family or the font-size for the row items, which are using the style scheme’s text config.
I’d like to get it styled like the completions popover in Gnome Builder:
Or like the example from here (sorry, I can’t directly upload more than two images).
(Also notice how the text in the comment at the bottom of the last one wraps properly here but not in my app.)
Does this all need to be implemented manually, and if so, how? And is there any way to hide the “Details” button seeing as I don’t intend to use it?

