Skip to content

Commit

Permalink
Make sidebar width more flexible (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasr8 authored Feb 4, 2025
1 parent 2f15ba6 commit b6a1724
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions python_docs_theme/static/pydoctheme.css
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ span.pre {
}

div.sphinxsidebar {
display: flex;
width: min(25vw, 350px);
float: none;
position: sticky;
top: 0;
Expand All @@ -156,13 +158,17 @@ div.sphinxsidebar h4 {
margin-top: 1.5em;
}

div.bodywrapper {
margin-left: min(25vw, 350px);
}

div.sphinxsidebarwrapper {
width: 217px;
box-sizing: border-box;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
float: left;
float: none;
flex-grow: 1;
}

div.sphinxsidebarwrapper > h3:first-child {
Expand Down Expand Up @@ -202,9 +208,10 @@ div.sphinxsidebar input[type='text'] {
font-size: 1.2em;
cursor: pointer;
padding-top: 1px;
float: right;
float: none;
/* after Sphinx 4.x and earlier is dropped, only the below is needed */
width: 12px;
min-width: 12px;
border-radius: 0 5px 5px 0;
border-left: none;
}
Expand Down Expand Up @@ -485,7 +492,7 @@ div.genindex-jumpbox a {
margin-inline-end: 0;
}
/* Remove sidebar and top related bar */
div.related, .sphinxsidebar {
div.related, div.sphinxsidebar {
display: none;
}
/* Anchorlinks are not hidden by fixed-positioned navbar when scrolled to */
Expand Down

0 comments on commit b6a1724

Please sign in to comment.