-
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
Fix footer positionning #1383
Fix footer positionning #1383
Conversation
bcf65ce
to
c7db50c
Compare
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.
Tested on new docs locally, fixes search page and footer not being at the bottom on short rustdoc pages. Can't easily test against old doc builds till it's deployed.
|
it seems like it is:
So in any case unrelated to the style changes. |
Good then, let's merge! |
@syphar could we separate "slow tests" and "fast tests" into different github checks? That would make it more clear that the unit tests are still passing. I wonder if we could also change CI to try and install an older version of nightly if rustfmt isn't available. Or just disable rustfmt for the test image in the first place. rust-lang/rust#82385 is a better long term solution for this but in the meantime ... |
definitely possible, I'll look into it.
I'll have to dig into where that is done, if I find it I'll update it :) |
Hmm, it should already be working, it must have broken at some point: docs.rs/src/docbuilder/rustwide_builder.rs Lines 131 to 143 in e85bfdf
|
Yeah no that error is unrelated to why the build failed:
|
hm.. strange. In any case, the build cannot fail because of the styling (right?), so for this PR we're fine. |
Right, it also failed on #1384. |
Fixes #1382.
Follow-up of #1367