Gtk-4: Fix missing separator in lists rows

This commit is contained in:
EliverLara
2021-12-05 14:15:32 -06:00
parent 1ec6016bf9
commit 639c79972d
3 changed files with 22 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
/*********
* Lists *
*********/
list {
list, listview {
color: $text_color;
background-color: $base_color;
border-color: $borders_color;
@@ -10,6 +10,15 @@ list {
background-color: $backdrop_base_color;
border-color: $backdrop_borders_color;
}
&.horizontal row.separator,
&.separators.horizontal > row:not(.separator) {
border-left: 1px solid $borders_color;
}
&:not(.horizontal) row.separator,
&.separators:not(.horizontal) > row:not(.separator) {
border-bottom: 1px solid $borders_color;
}
}
row {