8000 Implement support for sticky banners and utilize them by pradyunsg · Pull Request #2992 · python/peps · GitHub
[go: up one dir, main page]

Skip to content

Implement support for sticky banners and utilize them #2992

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

Merged
merged 11 commits into from
Mar 20, 2023
Merged
Prev Previous commit
Next Next commit
Add back the sticky-banner CSS class
  • Loading branch information
pradyunsg committed Mar 11, 2023
commit f2e051973bf5d372f8a5b9ede69c529a8562fc3f
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class CanonicalDocBanner(PEPBanner):
"See :pep:`1` for how to propose changes."
)

css_classes = ["canonical-doc"]
css_classes = ["canonical-doc", "sticky-banner"]



Expand All @@ -99,4 +99,4 @@ class CanonicalPyPASpecBanner(PEPBanner):
)
admonition_class = nodes.attention

css_classes = ["canonical-pypa-spec"]
css_classes = ["canonical-pypa-spec", "sticky-banner"]
0