File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { action, computed } from 'mobx';
66import AutoSizer from 'react-virtualized-auto-sizer' ;
77import { FixedSizeList as List , ListChildComponentProps } from 'react-window' ;
88
9- import { styled } from '../../styles'
9+ import { css , highContrastTheme , styled } from '../../styles'
1010import { ArrowIcon , Icon , WarningIcon } from '../../icons' ;
1111
1212import {
@@ -231,7 +231,16 @@ const EventListRow = styled.div`
231231
232232 &.selected {
233233 background-color: ${ p => p . theme . highlightBackground } ;
234+ color: ${ p => p . theme . highlightColor } ;
234235 font-weight: bold;
236+
237+ ${ ( p ) : any => p . theme === highContrastTheme &&
238+ css `
239+ ${ StatusCode } {
240+ color: ${ p => p . theme . highlightColor } ;
241+ }
242+ `
243+ }
235244 }
236245
237246 &:focus {
You can’t perform that action at this time.
0 commit comments