Adwaita: Allow separators on individual list items

Allow setting a .separator style class on list items
to put a separator before the item.
This commit is contained in:
Matthias Clasen 2020-06-12 09:20:46 -04:00
parent ed9941ec2c
commit c80ba49a60

View File

@ -3012,9 +3012,11 @@ list {
> row.expander { padding: 0px; }
> row.expander .row-header { padding: 2px; }
&.horizontal row.separator:not(:first-child),
&.separators.horizontal row:not(:first-child) {
border-left: 1px solid $borders_color;
}
&:not(.horizontal) row.separator:not(:first-child),
&.separators:not(.horizontal) row:not(:first-child) {
border-top: 1px solid $borders_color;
}