mirror of
https://github.com/koel/koel
synced 2025-01-02 07:48:44 +00:00
51 lines
873 B
Text
51 lines
873 B
Text
/**
|
|
* ALL YOUR DIRTY UGLY HACKS ARE BELONG TO US.
|
|
*/
|
|
|
|
/**
|
|
* Make elements draggable in old WebKit
|
|
*/
|
|
[draggable] {
|
|
@apply select-none;
|
|
}
|
|
|
|
/**
|
|
* Make webkit scrollbars a bit more good looking on non-mac systems.
|
|
*/
|
|
html.non-mac {
|
|
::-webkit-scrollbar {
|
|
@apply w-[10px] h-[10px];
|
|
}
|
|
|
|
::-webkit-scrollbar-button {
|
|
@apply w-0 h-0;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
@apply bg-k-bg-primary border border-white/20 rounded-[50px];
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
@apply bg-[#303030];
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:active {
|
|
@apply bg-k-bg-primary;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
@apply bg-k-bg-primary border-0 rounded-[50px];
|
|
}
|
|
|
|
::-webkit-scrollbar-track:hover {
|
|
@apply bg-k-bg-primary;
|
|
}
|
|
|
|
::-webkit-scrollbar-track:active {
|
|
@apply bg-[#333];
|
|
}
|
|
|
|
::-webkit-scrollbar-corner {
|
|
@apply bg-transparent;
|
|
}
|
|
}
|