Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "Fixed bug with HC colors in icons in menus.",
"type": "patch"
}
],
"packageName": "office-ui-fabric-react",
"email": "demarcey@microsoft.com"
}
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,21 @@ export const getMenuItemStyles = memoizeFunction((
color: semanticColors.menuIcon,
selectors: {
[HighContrastSelector]: {
color: 'HighlightText',
color: 'inherit',
},
['$root:hover &']: {
selectors: {
[HighContrastSelector]: {
color: 'HighlightText'
}
}
},
['$root:focus &']: {
selectors: {
[HighContrastSelector]: {
color: 'HighlightText'
}
}
}
}
},
Expand Down