web/satellite: update table row selected & hovered colors

Resolves #5478

Change-Id: Iaa8f0c5a0e6ca3239316a18abf32494beef4a2a1
This commit is contained in:
Jeremy Wharton 2023-02-07 02:00:34 -06:00 committed by Storj Robot
parent 49916b02f0
commit b5f4385278
2 changed files with 11 additions and 11 deletions

View File

@ -147,19 +147,23 @@ function cellContentClicked(cellIndex: number, event: Event) {
tr {
cursor: pointer;
&:hover .table-item .primary {
color: #0149ff;
}
&:hover {
background: var(--c-grey-1);
&:hover .table-item {
.table-item {
svg :deep(path) {
fill: var(--c-blue-3);
.primary {
color: var(--c-blue-3);
}
svg :deep(path) {
fill: var(--c-blue-3);
}
}
}
&.selected {
background: #f0f3f8;
background: var(--c-yellow-1);
}
}

View File

@ -87,10 +87,6 @@ const props = withDefaults(defineProps<{
tbody {
tr:hover {
background: var(--c-blue-1);
}
th {
font-family: 'font_regular', sans-serif;
color: #111827;