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
6
docs/_static/css/toggle.css
vendored
6
docs/_static/css/toggle.css
vendored
@ -75,3 +75,9 @@ 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;
|
||||||
|
}
|
||||||
|
4
docs/_templates/layout.html
vendored
4
docs/_templates/layout.html
vendored
@ -2,5 +2,9 @@
|
|||||||
|
|
||||||
{% block menu %}
|
{% block menu %}
|
||||||
{{ super() }}
|
{{ super() }}
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
<a href="{{ pathto('genindex') }}">Keyword Index</a>
|
<a href="{{ pathto('genindex') }}">Keyword Index</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Loading…
Reference in New Issue
Block a user