diff --git a/scss/components/_virtualized-table.scss b/scss/components/_virtualized-table.scss index 786dd6bac5..e3976e2d3d 100644 --- a/scss/components/_virtualized-table.scss +++ b/scss/components/_virtualized-table.scss @@ -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 { - -}