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

21 lines
389 B
SCSS
Raw Normal View History

2013-06-19 16:28:57 +02:00
::-webkit-scrollbar {
2013-07-02 15:42:41 +02:00
height: 8px;
2013-07-02 18:47:47 +02:00
width: 8px;
2013-06-19 16:28:57 +02:00
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-track:hover {
background-color: rgba(0, 0, 0, .05);
box-shadow: inset 1px 0 0 rgba(0, 0, 0, .1)
}
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb:hover {
background: rgba(0, 0, 0, 0.5);
}