-
-
Notifications
You must be signed in to change notification settings - Fork 8.5k
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
refactor: Adjust styling of back top top button #5469
Conversation
Back to top button should actually be safe to swizzle, it's just because the whitelist hasn't been updated for long🤦♂️ cf #5263 |
✔️ [V2] 🔨 Explore the source changes: 1ac9a36 🔍 Inspect the deploy log: https://app.netlify.com/sites/docusaurus-2/deploys/613c8395c067430009572630 😎 Browse the preview: https://deploy-preview-5469--docusaurus-2.netlify.app |
⚡️ Lighthouse report for the changes in this PR:
Lighthouse ran on https://deploy-preview-5469--docusaurus-2.netlify.app/ |
I'll be on holiday soon, but @lex111 can probably review this PR Some quick thought
|
That would be great, I haven't seen that adopted yet, what are the naming conventions?
Title was removed, but it really should have an aria-label still for a11y, otherwise this button is a complete mystery as to what it does. |
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.
Thanks for PR, but at the moment in custom CSS it is not possible to override CSS vars without using !important
rule. Actually, I would prefer to use stable CSS class name instead of having bunch of CSS vars if users want to change default button style. aria-label
is a really useful thing for a11y. Not sure about changing of background button , I'll have to think about that.
Oh interesting, I assumed because I can override --ifm variables, I could override --docusaurus variables. That seems like something I should be able to do. I see the inclusion order is different. Is there any ticket to improve this? re: css vars vs stable class names. I would consider maintaining both. Having stuff pulled out as css variables make it easier for handling light/dark mode overrides, and it also kind of act as guide rails to users doing theming. It makes it clear, here are things you might need to customize, but if you need to do more than override the css directly. Guidance for adding a stable class name? |
Yes, we have dedicated issue to track this #3678 Most likely minority of users will customize back-to-top button, so I don't want to add even more CSS vars (we have so many not very used ones already). So stable CSS class name seems like good compromise. This can be confusing, so we probably need to document more about CSS customization later. For now suggest adding new class name here, such as About background, think you're right, at the moment the button is too noticeable. So we can use gray shade, by analogy with |
@dsmmcken please let me know if you cannot finish this PR, then I will do it myself. |
@lex111 Was away for the long weekend, I can update it now that I am back. |
Ready for re-review :
|
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.
packages/docusaurus-theme-classic/src/theme/BackToTopButton/styles.module.css
Show resolved
Hide resolved
@dsmmcken thanks! |
@@ -96,7 +97,7 @@ | |||
"theme.docs.versions.latestVersionLinkLabel": "latest version", | |||
"theme.docs.versions.latestVersionLinkLabel___DESCRIPTION": "The label used for the latest version suggestion link label", | |||
"theme.docs.versions.latestVersionSuggestionLabel": "For up-to-date documentation, see the {latestVersionLink} ({versionLabel}).", | |||
"theme.docs.versions.latestVersionSuggestionLabel___DESCRIPTION": "The label used to tell the user to check the latest version", | |||
"theme.docs.versions.latestVersionSuggestionLabel___DESCRIPTION": "The label userd to tell the user that he's browsing an unmaintained doc version", |
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.
FYI this description change has a typo and will be overridden anyway, as it's extracted from the code
Motivation
The new back to top button is in the same location as is common for live chat/help widgets, and there is no easy way to fix that without swizzling the "unsafe" component. This PR exposes position as css variables, so it's easy to shift the button to the side or above any other bottom right content.
Subjective opinion: it is too visually prominent, I propose switching it from color-primary to color-secondary. The entry animation, plus the use of color-primary really draws your attention to it on entrance. It is a minor convenience feature, and should not act as a distraction from reading content.
Additionally:
Have you read the Contributing Guidelines on pull requests?
Yes.
Test Plan
Button as now rendered in default theme
I am unsure whether I did the change to base.json correctly. Couldn't figure out what the convention for naming them or if there was any logic to order, hope this was right. I just added it to the end.
Related PRs
#5419