-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Polish menus and focus styles #6812
Conversation
Nice, |
I think I also fixed the Block More Menu btw. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 on design review
Rebased, and fixed an issue as a result of the buttons refactor. I think this is ready to go. |
utils/keycodes.js
Outdated
[ COMMAND ]: '⌘', | ||
[ SHIFT ]: isMac ? '⇧shift' : 'Shift', | ||
[ SHIFT ]: isMac ? 'Shift' : 'Shift', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could be simplified to [ SHIFT ]: 'Shift',
.
utils/keycodes.js
Outdated
[ ALT ]: isMac ? '⌥option' : 'Alt', | ||
[ CTRL ]: isMac ? '⌃control' : 'Ctrl', | ||
[ ALT ]: isMac ? 'Option' : 'Alt', | ||
[ CTRL ]: isMac ? 'Ctrl' : 'Ctrl', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could be simplified to [ CTRL ]: 'Ctrl',
.
This fixes a regression in menu focus styles that was introduced as part of some focus fixes to the movers way back. It also fixes #6734, as it changes how the shortcuts are spelled out.
Addressed feedback, rebased, and merging if the checks pass. Thanks! |
This fixes a regression in menu focus styles that was introduced as part of some focus fixes to the movers way back.
It also fixes #6734, as it changes how the shortcuts are spelled out.