Skip to content

Commit

Permalink
chore: use lighter than header color for selected items #1713
Browse files Browse the repository at this point in the history
  • Loading branch information
marek-mihok committed Dec 5, 2022
1 parent e6520f9 commit 79291ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ui/src/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ const
},
stylesProps.selected
? {
background: `${cssVar('$neutralLight')} !important`,
background: important(cssVar('$neutralLighter')),
'.ms-GroupHeader-check': { opacity: 1 }
}
: undefined
Expand Down Expand Up @@ -465,11 +465,11 @@ const
background: cssVar('$card'),
minHeight: 48,
'&:hover': {
background: cssVar('$neutralLight'),
border: `${border(2, cssVar('$themePrimary'))} !important`
background: cssVar('$neutralLighter'),
border: important(border(2, cssVar('$themePrimary')))
}
},
styleProps.isSelected ? { background: cssVar('$neutralLight') } : undefined
styleProps.isSelected ? { background: cssVar('$neutralLighter') } : undefined
]
})
} />
Expand Down

0 comments on commit 79291ae

Please sign in to comment.