Merge pull request #4 from b3log/master

Make the scrollbar more pretty in modern browsers.
This commit is contained in:
dx 2012-09-12 00:44:42 -07:00
commit be511d4e90

View File

@ -525,3 +525,17 @@ nav ul ul {
margin-bottom : 25px; margin-bottom : 25px;
width : 531px; width : 531px;
} }
/* Scrollbar */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background-color: #bbb;
}
::-webkit-scrollbar-thumb {
background-color: #eee;
}
::-webkit-scrollbar-thumb:hover {
background-color: #888;
}