Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork66
Make sidebar width more flexible#218
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -140,6 +140,8 @@ span.pre { | ||
} | ||
div.sphinxsidebar { | ||
display: flex; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Is flexbox required here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. This allows me to remove the hardcoded | ||
width: min(25vw, 350px); | ||
float: none; | ||
position: sticky; | ||
top: 0; | ||
@@ -156,13 +158,17 @@ div.sphinxsidebar h4 { | ||
margin-top: 1.5em; | ||
} | ||
div.bodywrapper { | ||
margin-left: min(25vw, 350px); | ||
} | ||
div.sphinxsidebarwrapper { | ||
box-sizing: border-box; | ||
height: 100%; | ||
overflow-x: hidden; | ||
overflow-y: auto; | ||
float: none; | ||
flex-grow: 1; | ||
} | ||
div.sphinxsidebarwrapper > h3:first-child { | ||
@@ -202,9 +208,10 @@ div.sphinxsidebar input[type='text'] { | ||
font-size: 1.2em; | ||
cursor: pointer; | ||
padding-top: 1px; | ||
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; | ||
} | ||
@@ -485,7 +492,7 @@ div.genindex-jumpbox a { | ||
margin-inline-end: 0; | ||
} | ||
/* Remove sidebar and top related bar */ | ||
div.related,div.sphinxsidebar { | ||
display: none; | ||
} | ||
/* Anchorlinks are not hidden by fixed-positioned navbar when scrolled to */ | ||
Uh oh!
There was an error while loading.Please reload this page.