Skip to content

Commit

Permalink
Fix nav horizontal scroll z-index (#616)
Browse files Browse the repository at this point in the history
* fix nav horizontal scroll z-index

* [autofix.ci] apply automated fixes

* Update CHANGELOG.md

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
  • Loading branch information
Domi04151309 and autofix-ci[bot] committed Sep 4, 2023
1 parent c10bc06 commit c1ddd1e
Show file tree
Hide file tree
Showing 25 changed files with 34 additions and 31 deletions.
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.

0 comments on commit c1ddd1e

Please sign in to comment.