We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2ceb99 commit 336e6d2Copy full SHA for 336e6d2
Makefile
@@ -2,6 +2,7 @@
2
CPYTHON_PATH = ../cpython
3
PYTHON = python3
4
PACKAGE_ABS_PATH = $(shell pwd)/$(shell find dist/python-docs-theme-*.tar.gz)
5
+SPNINXOPTS ?=
6
7
8
.PHONY: help
@@ -22,7 +23,7 @@ venv:
22
23
.PHONY: html
24
html: venv
25
cd $(CPYTHON_PATH)/Doc && \
- make html
26
+ make SPHINXOPTS="$(SPHINXOPTS)" html
27
28
.PHONY: htmlview
29
htmlview: html
python_docs_theme/static/pydoctheme.css
@@ -123,7 +123,9 @@ form.inline-search input {
123
}
124
125
form.inline-search input[type='submit'] {
126
- width: 40px;
+ /* In some languages, more than 40px is required */
127
+ width: auto;
128
+ min-width: 40px;
129
130
131
div.document {
0 commit comments