Make table headers sticky if the table scrolls

This commit is contained in:
2019-09-30 19:55:43 +02:00
parent f321a11db5
commit cf196c0ca4

View File

@@ -19,6 +19,14 @@
vertical-align: top;
}
#account-overview-table th,
#account-transaction-table th,
#recurring-transaction-list-table th {
position: sticky;
top: 0px;
background-color: white;
}
tr:hover {
background-color: lightgrey;
}