mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-24 07:30:12 +01:00
Fixed jumping chevrons in sidebar (attempt)
This commit is contained in:
parent
978eab02f4
commit
290de4acc7
1
material/assets/stylesheets/main.4eacb97b.min.css
vendored
Normal file
1
material/assets/stylesheets/main.4eacb97b.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -34,7 +34,7 @@
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
{% block styles %}
|
||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.e38d1c16.min.css' | url }}">
|
||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.4eacb97b.min.css' | url }}">
|
||||
{% if config.theme.palette %}
|
||||
{% set palette = config.theme.palette %}
|
||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.cbb835fc.min.css' | url }}">
|
||||
|
@ -153,6 +153,23 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Sidebar wrapper
|
||||
&__inner {
|
||||
|
||||
// Hack: the scrollbar is only visible when the sidebar's contents overflow,
|
||||
// which is nice, but leads to the problem where the chevrons of expandable
|
||||
// sections will jump by `4px` when the sidebar is shown. We wanted to fix
|
||||
// this problem for so long, but haven't found a clean way of doing it.
|
||||
// Until now. The following declaration is only applied to Webkit browsers
|
||||
// (e.g. Chrome and Safari), which support styling of scrollbars. The trick
|
||||
// is to add conditional padding on the side of the scrollbar only if the
|
||||
// sidebar's content doesn't overflow. This hack is inspired and adapted
|
||||
// from Ayke van Laëthem's year old trick – see https://bit.ly/3Sb1qql
|
||||
@supports selector(::-webkit-scrollbar) {
|
||||
padding-inline-end: calc(100% - #{px2rem(230px)});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// [tablet -]: Show overlay on active drawer
|
||||
|
Loading…
Reference in New Issue
Block a user