Files
Athou_commafeed/src/main/app/sass/generic/_scrollbar.scss

22 lines
415 B
SCSS
Raw Normal View History

2013-06-19 16:28:57 +02:00
::-webkit-scrollbar {
2022-01-02 16:03:09 +01:00
height: 8px;
width: 8px;
2013-06-19 16:28:57 +02:00
}
::-webkit-scrollbar-track {
2022-01-02 16:03:09 +01:00
background: rgba(0, 0, 0, 0.1);
2013-06-19 16:28:57 +02:00
}
::-webkit-scrollbar-track:hover {
2022-01-02 16:03:09 +01:00
background-color: rgba(0, 0, 0, 0.05);
box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1);
2013-06-19 16:28:57 +02:00
}
::-webkit-scrollbar-thumb {
2022-01-02 16:03:09 +01:00
background: rgba(0, 0, 0, 0.2);
2013-06-19 16:28:57 +02:00
}
::-webkit-scrollbar-thumb:hover {
2022-01-02 16:03:09 +01:00
background: rgba(0, 0, 0, 0.5);
}