Skip to content

Commit

Permalink
SplitButton: updated border right token for primary variant (#28555)
Browse files Browse the repository at this point in the history
* updated token for split button primary border right

* review comments fix

---------

Co-authored-by: Makoto Morimoto <[email protected]>
  • Loading branch information
kkakroo and khmakoto authored Jul 19, 2023
1 parent 9e52c02 commit 14804fe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "fix: updated right border token in primary variant of split button",
"packageName": "@fluentui/react-button",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,18 +50,18 @@ const useRootStyles = makeStyles({
},
primary: {
[`& .${splitButtonClassNames.primaryActionButton}`]: {
borderRightColor: tokens.colorNeutralForegroundOnBrand,
borderRightColor: tokens.colorNeutralStrokeOnBrand,
},

':hover': {
[`& .${splitButtonClassNames.primaryActionButton}`]: {
borderRightColor: tokens.colorNeutralForegroundOnBrand,
borderRightColor: tokens.colorNeutralStrokeOnBrand,
},
},

':hover:active': {
[`& .${splitButtonClassNames.primaryActionButton}`]: {
borderRightColor: tokens.colorNeutralForegroundOnBrand,
borderRightColor: tokens.colorNeutralStrokeOnBrand,
},
},

Expand Down

0 comments on commit 14804fe

Please sign in to comment.