-
Notifications
You must be signed in to change notification settings - Fork 203
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
Header icon_links show in separate rows, h3 heavy weight, 3rd column vert stretching #879
Comments
Please keep this issue open, as I'm pretty curious how this could've happened. I even checked out an old tag -> built -> and it had these issues using the same ver. It was as an update was force-pushed in. Additionally, I'm having other random CSS issues such as font-weight and a couple others that I suspect is due to the same source cause, but similar to this case, I can't explain really it. |
Adding
worked around the other issue. |
For the icons: For the font weight: I didn't get to the vertically stretched 3rd column text |
Worked around the 3rd column vertical stretching, too. Here's everything combined: /*
SPHINX-BOOK-THEME HOTFIX (top-right icons):
https://github.com/executablebooks/sphinx-book-theme/issues/879
*/
.header-article__inner .header-article-items__end, .header-article__inner .header-article-items__start {
align-items: start;
display: flex;
gap: .5rem;
}
/*
SPHINX-BOOK-THEME HOTFIX (right column vertical stretching fix):
https://github.com/executablebooks/sphinx-book-theme/issues/879
*/
.toc-entry a.nav-link {
padding: .125rem 0 .125rem 1rem;
}
/*
h3 font weight fix (from extra heavy to normal):
https://github.com/executablebooks/sphinx-book-theme/issues/879
*/
h3 {
font-size: 125%;
font-weight: normal;
} |
I'm still mind-boggled as to how this happened when PyPi says the tagged version hasn't been updated since ~June? |
This was great for a while -- but it no longer works (not sure when it broke. The latest
1.1.3
has this issue in both Sphinx 7 and 8). Seems that it has to do with.article-header-buttons
class that's showing on separate rows.^ The order gets jumbled if I add even 1
icon_links
withinhtml_theme_options
Originally posted by @dylanh724 in #833 (comment)
The text was updated successfully, but these errors were encountered: