Skip to content
Merged
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
11 changes: 9 additions & 2 deletions src/css/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,17 @@ html {
}

.button {
&--outline {
&--outline,
// Docusaurus adds its own focus styles which we need to
// override here to avoid losing the outline. This can be
// removed when we pick up the upstream fix in Docusaurus.
// ref: https://github.com/electron/website/issues/1001
// ref: https://github.com/facebook/docusaurus/pull/11713
body:not(.navigation-with-keyboard) &--outline:focus {
Comment on lines 205 to 210
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't ideal, but Docusaurus is too board in their approach to hiding focus outlines when the user is using a mouse (I added a comment here in this issue to get the attention of their team: facebook/docusaurus#11314 (comment))

Copy link
Contributor Author

@nmggithub nmggithub Feb 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The hook that requires this funky CSS by us has been removed upstream in Docusaurus (facebook/docusaurus#11713), but no new version has been released yet.

outline: 1px solid;
color: var(--ifm-color-primary);
&:hover {
&:hover,
&:focus-visible {
color: var(--ifm-color-primary-dark);
}
}
Expand Down