Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix search form overflow; readability improvements
  • Loading branch information
obulat authored May 9, 2021
commit a49d94eafb19e7224ab043c7b76293e405e3e0b0
10 changes: 9 additions & 1 deletion python_docs_theme/static/pydoctheme.css
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,14 @@ dl > dt span ~ em {
div.body h3, div.body h4, div.body h5 {
font-size: 1rem;
}
/* Override default styles to make more readable */
div.body ul {
padding-inline-start: 1rem;
}
div.body blockquote {
margin-inline-start: 1rem;
margin-inline-end: 0;
}
/* Remove sidebar and top related bar */
div.related, .sphinxsidebar {
display: none;
Expand Down Expand Up @@ -266,6 +274,7 @@ dl > dt span ~ em {
top: 0;
height: 40px;
width: 100%;
max-width: 100vw;
padding: 0 1rem 0 45px;
display: flex;
align-items: center;
Expand All @@ -285,7 +294,6 @@ dl > dt span ~ em {
margin-right: 1rem;
}
.version_switcher_placeholder select {
height: 30px;
border-radius: 0;
}
.nav-content .search {
Expand Down