mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Only show sidebar scrollbar on hover or focus
This commit is contained in:
parent
b75c6494e6
commit
b82f8a587d
@ -133,24 +133,25 @@
|
|||||||
scrollbar-gutter: stable;
|
scrollbar-gutter: stable;
|
||||||
scrollbar-color: var(--md-default-fg-color--lighter) transparent;
|
scrollbar-color: var(--md-default-fg-color--lighter) transparent;
|
||||||
|
|
||||||
// Sidebar scroll wrapper on hover
|
|
||||||
&:hover {
|
|
||||||
scrollbar-color: var(--md-accent-fg-color) transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Webkit scrollbar
|
// Webkit scrollbar
|
||||||
&::-webkit-scrollbar {
|
&::-webkit-scrollbar {
|
||||||
width: px2rem(4px);
|
width: px2rem(4px);
|
||||||
height: px2rem(4px);
|
height: px2rem(4px);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Webkit scrollbar thumb
|
// Sidebar scroll wrapper on focus/hover
|
||||||
&::-webkit-scrollbar-thumb {
|
&:focus-within,
|
||||||
background-color: var(--md-default-fg-color--lighter);
|
&:hover {
|
||||||
|
scrollbar-color: var(--md-accent-fg-color) transparent;
|
||||||
|
|
||||||
// Webkit scrollbar thumb on hover
|
// Webkit scrollbar thumb
|
||||||
&:hover {
|
&::-webkit-scrollbar-thumb {
|
||||||
background-color: var(--md-accent-fg-color);
|
background-color: var(--md-default-fg-color--lighter);
|
||||||
|
|
||||||
|
// Webkit scrollbar thumb on hover
|
||||||
|
&:hover {
|
||||||
|
background-color: var(--md-accent-fg-color);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user