Skip to content
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
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
CPYTHON_PATH = ../cpython
PYTHON = python3
PACKAGE_ABS_PATH = $(shell pwd)/$(shell find dist/python-docs-theme-*.tar.gz)
SPHINXOPTS =


.PHONY: help
Expand All @@ -22,7 +23,7 @@ venv:
.PHONY: html
html: venv
cd $(CPYTHON_PATH)/Doc && \
make html
make SPHINXOPTS="$(SPHINXOPTS)" html

.PHONY: htmlview
htmlview: html
Expand Down
4 changes: 3 additions & 1 deletion python_docs_theme/static/pydoctheme.css
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ form.inline-search input {
}

form.inline-search input[type='submit'] {
width: 40px;
/* In some languages, more than 40px is required */
width: auto;
min-width: 40px;
}

div.document {
Expand Down
Loading