notion-enhancer/mods/core/scrollbars.css

37 lines
1.1 KiB
CSS

/*
* notion-enhancer
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com>
* (c) 2020 TarasokUA
* (https://dragonwocky.me/) under the MIT license
*/
.smooth-scrollbars .notion-scroller {
cursor: auto;
}
.smooth-scrollbars ::-webkit-scrollbar {
width: 8px; /* vertical */
height: 8px; /* horizontal */
}
.smooth-scrollbars ::-webkit-scrollbar-corner {
background-color: transparent; /* overlap */
}
.smooth-scrollbars ::-webkit-scrollbar-thumb {
border-radius: 5px;
}
.smooth-scrollbars .notion-dark-theme ::-webkit-scrollbar-thumb {
background-color: var(--theme_dark--scrollbar);
border: var(--theme_dark--scrollbar-border);
}
.smooth-scrollbars .notion-dark-theme ::-webkit-scrollbar-thumb:hover {
background: var(--theme_dark--scrollbar_hover);
}
.smooth-scrollbars .notion-light-theme ::-webkit-scrollbar-thumb {
background-color: var(--theme_light--scrollbar);
border: 1px solid var(--theme_light--scrollbar-border);
}
.smooth-scrollbars .notion-light-theme ::-webkit-scrollbar-thumb:hover {
background: var(--theme_light--scrollbar_hover);
}