mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #12138 from ethereum/docs-fix-index-link-appearance
Fix index link appearance in docs menu
This commit is contained in:
commit
2493a98cb6
8
docs/_static/css/toggle.css
vendored
8
docs/_static/css/toggle.css
vendored
@ -74,4 +74,10 @@ html.transition *:before,
|
|||||||
html.transition *:after {
|
html.transition *:after {
|
||||||
transition: ease-in-out 200ms !important;
|
transition: ease-in-out 200ms !important;
|
||||||
transition-delay: 0 !important;
|
transition-delay: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
nav.wy-nav-side {
|
||||||
|
/* The default padding of 2em is too small and the "Keyword Index" link gets obscured
|
||||||
|
* by the version toggle. */
|
||||||
|
padding-bottom: 3em;
|
||||||
|
}
|
||||||
|
6
docs/_templates/layout.html
vendored
6
docs/_templates/layout.html
vendored
@ -2,5 +2,9 @@
|
|||||||
|
|
||||||
{% block menu %}
|
{% block menu %}
|
||||||
{{ super() }}
|
{{ super() }}
|
||||||
<a href="{{ pathto('genindex') }}">Keyword Index</a>
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="{{ pathto('genindex') }}">Keyword Index</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Loading…
Reference in New Issue
Block a user