UI: add hover background to table rows in user and repo admin page (#35072)

This commit is contained in:
Gary Wang
2025-07-14 20:29:35 +08:00
committed by GitHub
parent 7cc47da78c
commit ece0ce6854
3 changed files with 10 additions and 2 deletions

View File

@@ -167,6 +167,11 @@
text-overflow: ellipsis;
}
.ui.selectable.table > tbody > tr:hover,
.ui.table tbody tr td.selectable:hover {
background: var(--color-hover);
}
.ui.attached.table {
top: 0;
bottom: 0;
@@ -289,6 +294,9 @@
.ui.basic.striped.table > tbody > tr:nth-child(2n) {
background: var(--color-light);
}
.ui.basic.striped.selectable.table > tbody > tr:nth-child(2n):hover {
background: var(--color-hover);
}
.ui[class*="very basic"].table {
border: none;