Skip to content

Commit

Permalink
fix(List): Fix background colors in table view
Browse files Browse the repository at this point in the history
  • Loading branch information
mfal committed Dec 20, 2024
1 parent 0d1bd3b commit f72b85c
Showing 1 changed file with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@
pointer-events: none;
opacity: 0.5;
}
}

.row {
&.isSelected {
background-color: var(--list-item--background-color--pressed);
}
.row {
&.isSelected {
background-color: var(--list-item--background-color--pressed);
}

&:where(.hasAction) {
cursor: default;
&.hasAction {
cursor: default;

&:not(.isSelected) {
&:hover {
background-color: var(--list-item--background-color--hover);
}
}
&:not(.isSelected) {
&:hover {
background-color: var(--list-item--background-color--hover);
}

&[data-pressed] {
background-color: var(--list-item--background-color--pressed);
&[data-pressed] {
background-color: var(--list-item--background-color--pressed);
}
}
}
}
}

0 comments on commit f72b85c

Please sign in to comment.