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';
6
6
import AutoSizer from 'react-virtualized-auto-sizer' ;
7
7
import { FixedSizeList as List , ListChildComponentProps } from 'react-window' ;
8
8
9
- import { styled } from '../../styles'
9
+ import { css , highContrastTheme , styled } from '../../styles'
10
10
import { ArrowIcon , Icon , WarningIcon } from '../../icons' ;
11
11
12
12
import {
@@ -231,7 +231,16 @@ const EventListRow = styled.div`
231
231
232
232
&.selected {
233
233
background-color: ${ p => p . theme . highlightBackground } ;
234
+ color: ${ p => p . theme . highlightColor } ;
234
235
font-weight: bold;
236
+
237
+ ${ ( p ) : any => p . theme === highContrastTheme &&
238
+ css `
239
+ ${ StatusCode } {
240
+ color: ${ p => p . theme . highlightColor } ;
241
+ }
242
+ `
243
+ }
235
244
}
236
245
237
246
&:focus {
You can’t perform that action at this time.
0 commit comments