Use SelectedItem color on non-Windows

This commit is contained in:
windingwind 2023-11-29 11:01:44 +08:00 committed by Dan Stillman
parent 82a9aee21c
commit cec0592e14

View file

@ -130,7 +130,12 @@
}
&.selected:not(.highlighted) {
background-color: var(--accent-blue);
@media (-moz-platform: windows) {
background-color: var(--accent-blue);
}
@media not (-moz-platform: windows) {
background-color: SelectedItem;
}
color: #fff;
@include state(".virtualized-table:not(:focus)") {
@ -363,7 +368,3 @@
transform: rotate(90deg);
}
}
.virtualized-table, .drag-image-container {
}