mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 03:43:45 +08:00
44 lines
1.0 KiB
SCSS
44 lines
1.0 KiB
SCSS
@mixin chat-scrollbar() {
|
|
--scrollbarBg: transparent;
|
|
--scrollbarThumbBg: var(--primary-low);
|
|
--scrollbarWidth: 10px;
|
|
|
|
scrollbar-color: transparent var(--scrollbarBg);
|
|
transition: scrollbar-color 0.25s ease-in-out;
|
|
|
|
// chrome, safari
|
|
&::-webkit-scrollbar-thumb {
|
|
background-color: var(--scrollbarThumbBg);
|
|
border-radius: calc(var(--scrollbarWidth) / 2);
|
|
border: calc(var(--scrollbarWidth) / 4) solid var(--secondary);
|
|
}
|
|
|
|
&::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
&::-webkit-scrollbar {
|
|
width: var(--scrollbarWidth);
|
|
}
|
|
|
|
// firefox
|
|
& {
|
|
scrollbar-color: var(--scrollbarThumbBg) var(--scrollbarBg);
|
|
scrollbar-width: thin;
|
|
}
|
|
|
|
&::-moz-scrollbar-thumb {
|
|
background-color: var(--scrollbarThumbBg);
|
|
border-radius: calc(var(--scrollbarWidth) / 2);
|
|
border: calc(var(--scrollbarWidth) / 4) solid var(--secondary);
|
|
}
|
|
|
|
&::-moz-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
&::-moz-scrollbar {
|
|
width: var(--scrollbarWidth);
|
|
}
|
|
}
|