[ruby/rdoc] Scrollable sidebar

This change makes the sidebar scrollable via `position: sticky` and `overflow: auto`;
See also <https://caniuse.com/?search=sticky>

https://github.com/ruby/rdoc/commit/4d52e24840
This commit is contained in:
Masafumi Koba 2021-09-11 16:33:34 +09:00 коммит произвёл git
Родитель 49447f828b
Коммит 2e4516be26
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -186,6 +186,10 @@ nav {
font-family: Helvetica, sans-serif; font-family: Helvetica, sans-serif;
font-size: 14px; font-size: 14px;
border-right: 1px solid #ccc; border-right: 1px solid #ccc;
position: sticky;
top: 0;
overflow: auto;
height: calc(100vh - 100px); /* reduce the footer height */
} }
main { main {