Skip to content
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 nav horizontal scroll z-index #616

Merged
merged 3 commits into from
Sep 4, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

<!-- ✨ You do not need to add a pull request reference or an author, this will be added automatically by CI. ✨ -->

- Fix horizontal scroll navigation z-index issue.
([#616](https://github.com/mitmproxy/pdoc/pull/616), @Domi04151309)

## 2023-06-19: pdoc 14.0.0

Expand Down
3 changes: 2 additions & 1 deletion pdoc/templates/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ nav.pdoc {
padding: 0 0 0 var(--pad);
overflow-wrap: anywhere;
scrollbar-width: thin; /* Scrollbar width on Firefox */
scrollbar-color: var(--accent2) transparent /* Scrollbar color on Firefox */
scrollbar-color: var(--accent2) transparent; /* Scrollbar color on Firefox */
z-index: 1
}

nav.pdoc::-webkit-scrollbar {
Expand Down
2 changes: 1 addition & 1 deletion test/testdata/ast_parsing.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/demo.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/demo_eager.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/demo_long.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/demopackage.html

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions test/testdata/demopackage_dir.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/example_customtemplate.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/example_darkmode.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/flavors_google.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/flavors_numpy.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/flavors_rst.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/math_demo.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/mermaid_demo.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/misc.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/misc_py310.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/misc_py311.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/misc_py312.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/misc_py39.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions test/testdata/render_options.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/top_level_reimports.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/type_checking_imports.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/type_stub.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testdata/visibility.html

Large diffs are not rendered by default.

Loading