Hello, I’d like to make the selected row/widget in a GtkListView have a simple highlighted border, that does not affect the actual size of the widget. Right now I have this:
.list row:selected {
border: 3px solid @theme_fg_color;
}
.list row {
background-color: @theme_entry_bg_color;
padding: 10px;
margin: 10px;
border-radius: 20px;
}
However this causes the size of contents of the row to visibly change, which I don’t want:

Any tips? Thanks.