mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 07:37:25 +01:00
82 lines
2.5 KiB
Stylus
82 lines
2.5 KiB
Stylus
/* Gmail style scrollbar */
|
|
.task-column::-webkit-scrollbar {
|
|
width: 12px
|
|
}
|
|
.task-column::-webkit-scrollbar-thumb {
|
|
border-width: 1px 1px 1px 2px
|
|
}
|
|
.task-column::-webkit-scrollbar-track {
|
|
border-width: 0
|
|
}
|
|
.task-column::-webkit-scrollbar {
|
|
height: 16px;
|
|
overflow: visible;
|
|
width: 16px;
|
|
}
|
|
.task-column::-webkit-scrollbar-button {
|
|
height: 0;
|
|
width: 0;
|
|
}
|
|
.task-column::-webkit-scrollbar-track {
|
|
background-clip: padding-box;
|
|
border: solid transparent;
|
|
border-width: 0 0 0 4px;
|
|
}
|
|
.task-column::-webkit-scrollbar-track:horizontal {
|
|
border-width: 4px 0 0
|
|
}
|
|
.task-column::-webkit-scrollbar-track:hover {
|
|
background-color: rgba(150,150,150,.05);
|
|
box-shadow: inset 1px 0 0 rgba(150,150,150,.1);
|
|
}
|
|
.task-column::-webkit-scrollbar-track:horizontal:hover {
|
|
box-shadow: inset 0 1px 0 rgba(150,150,150,.1)
|
|
}
|
|
.task-column::-webkit-scrollbar-track:active {
|
|
background-color: rgba(150,150,150,.05);
|
|
box-shadow: inset 1px 0 0 rgba(150,150,150,.14),inset -1px 0 0 rgba(150,150,150,.07);
|
|
}
|
|
.task-column::-webkit-scrollbar-track:horizontal:active {
|
|
box-shadow: inset 0 1px 0 rgba(150,150,150,.14),inset 0 -1px 0 rgba(150,150,150,.07)
|
|
}
|
|
.task-column::-webkit-scrollbar-thumb {
|
|
background-color: rgba(150,150,150,.2);
|
|
background-clip: padding-box;
|
|
border: solid transparent;
|
|
border-width: 1px 1px 1px 6px;
|
|
min-height: 28px;
|
|
padding: 100px 0 0;
|
|
box-shadow: inset 1px 1px 0 rgba(150,150,150,.1),inset 0 -1px 0 rgba(150,150,150,.07);
|
|
}
|
|
.task-column::-webkit-scrollbar-thumb:horizontal {
|
|
border-width: 6px 1px 1px;
|
|
padding: 0 0 0 100px;
|
|
box-shadow: inset 1px 1px 0 rgba(150,150,150,.1),inset -1px 0 0 rgba(150,150,150,.07);
|
|
}
|
|
.task-column::-webkit-scrollbar-thumb:hover {
|
|
background-color: rgba(150,150,150,.4);
|
|
box-shadow: inset 1px 1px 1px rgba(150,150,150,.25);
|
|
}
|
|
.task-column::-webkit-scrollbar-thumb:active {
|
|
background-color: rgba(150,150,150,0.5);
|
|
box-shadow: inset 1px 1px 3px rgba(150,150,150,0.35);
|
|
}
|
|
.task-column::-webkit-scrollbar-track {
|
|
border-width: 0 1px 0 6px
|
|
}
|
|
.task-column::-webkit-scrollbar-track:horizontal {
|
|
border-width: 6px 0 1px
|
|
}
|
|
.task-column::-webkit-scrollbar-track:hover {
|
|
background-color: rgba(150,150,150,.035);
|
|
box-shadow: inset 1px 1px 0 rgba(150,150,150,.14),inset -1px -1px 0 rgba(150,150,150,.07);
|
|
}
|
|
.task-column::-webkit-scrollbar-thumb {
|
|
border-width: 0 1px 0 6px
|
|
}
|
|
.task-column::-webkit-scrollbar-thumb:horizontal {
|
|
border-width: 6px 0 1px
|
|
}
|
|
.task-column::-webkit-scrollbar-corner {
|
|
background: transparent
|
|
} |