diff options
author | Yury Selivanov <yury@magic.io> | 2018-09-17 19:35:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-17 19:35:24 (GMT) |
commit | 394374e30c85f6eacddbbfc7471aab62b54ce021 (patch) | |
tree | 8f40e320a7eb6093fcee25d3cd8456a3ccf1bb9f /Doc/tools | |
parent | c6fd1c1c3a65217958b68df3a4991e4f306e9b7d (diff) | |
download | cpython-394374e30c85f6eacddbbfc7471aab62b54ce021.zip cpython-394374e30c85f6eacddbbfc7471aab62b54ce021.tar.gz cpython-394374e30c85f6eacddbbfc7471aab62b54ce021.tar.bz2 |
bpo-33649: Add low-level APIs index. (GH-9364)
Diffstat (limited to 'Doc/tools')
-rw-r--r-- | Doc/tools/templates/layout.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/tools/templates/layout.html b/Doc/tools/templates/layout.html index 3781172..c399224 100644 --- a/Doc/tools/templates/layout.html +++ b/Doc/tools/templates/layout.html @@ -21,5 +21,14 @@ {% if pagename == 'whatsnew/changelog' and not embedded %} <script type="text/javascript" src="{{ pathto('_static/changelog_search.js', 1) }}"></script>{% endif %} {% endif %} + + {# custom CSS; used in asyncio docs! #} + <style> + @media only screen {{ "{" }} + table.full-width-table {{ "{" }} + width: 100%; + {{ "}" }} + {{ "}" }} + </style> {{ super() }} {% endblock %} |