Use SelectedItem color on non-Windows
This commit is contained in:
parent
82a9aee21c
commit
cec0592e14
1 changed files with 6 additions and 5 deletions
|
@ -130,7 +130,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.selected:not(.highlighted) {
|
&.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;
|
color: #fff;
|
||||||
|
|
||||||
@include state(".virtualized-table:not(:focus)") {
|
@include state(".virtualized-table:not(:focus)") {
|
||||||
|
@ -363,7 +368,3 @@
|
||||||
transform: rotate(90deg);
|
transform: rotate(90deg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.virtualized-table, .drag-image-container {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue