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

[Backport branch-8-0] Add horizontal scrollbar to TOC when required #832

Merged
merged 1 commit into from
Aug 17, 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
11 changes: 11 additions & 0 deletions _static/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
Added for MapScript API docs
*/

table.align-default {
margin-left: 0px;
}

div.sphinxsidebarwrapper {
overflow-y: scroll;
}
7 changes: 0 additions & 7 deletions _static/sphinx.css
Original file line number Diff line number Diff line change
Expand Up @@ -284,10 +284,3 @@ div.service-provider {
span.pre {
font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono';
}

/*
Added for MapScript API docs
*/
table.align-default {
margin-left: 0px;
}
1 change: 1 addition & 0 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ def __getattr__(cls, name):
html_last_updated_fmt = '%Y-%m-%d'

html_css_files = [
'custom.css',
'ribbon.css'
]

Expand Down