Fix horizontal border for striped table view

This commit is contained in:
mkpaz 2022-09-28 15:26:12 +04:00
parent bb4189aa7d
commit a9dd26d798

@ -316,11 +316,18 @@ $tree-cell-indent: 1em !default;
}
}
&.striped {
.table-row-cell {
-fx-background-insets: 0;
}
&.bordered {
.table-row-cell {
-fx-background-insets: 0, 0 0 1 0;
}
}
.table-row-cell:filled:odd {
-fx-background-color: -color-cell-border, -color-cell-bg-odd;
}
@ -472,6 +479,12 @@ $tree-cell-indent: 1em !default;
-fx-background-insets: 0;
}
&.bordered {
.tree-table-row-cell {
-fx-background-insets: 0, 0 0 1 0;
}
}
.tree-table-row-cell:filled:odd {
-fx-background-color: -color-cell-border, -color-cell-bg-odd;
}