improve doc app scrollbars

This commit is contained in:
Igor Minar 2010-12-10 17:04:56 -08:00
parent 74120eaa0f
commit f8151afd90

View file

@ -42,7 +42,7 @@ a {
#api-list { #api-list {
position: absolute; position: absolute;
top: 3em; top: 3em;
bottom: 0; bottom: 1em;
overflow-y: scroll; overflow-y: scroll;
padding-right: 0.8em; padding-right: 0.8em;
} }
@ -225,25 +225,24 @@ a {
::-webkit-scrollbar{ ::-webkit-scrollbar{
width:0.8em; width:0.8em;
height:0.8em; margin: 0.2em 0em;
border-left: 1px solid #ccc;
} }
::-webkit-scrollbar:hover{ ::-webkit-scrollbar:hover{
background-color:#eee; background-color:#eee;
} }
::-webkit-resizer{
-webkit-border-radius:0.3em;
background-color:#666;
}
::-webkit-scrollbar-thumb{ ::-webkit-scrollbar-thumb{
min-height:0.8em; min-height:0.8em;
min-width:0.8em; min-width:0.8em;
-webkit-border-radius:0.3em; -webkit-border-radius:0.5em;
background-color: #ddd; background-color: #ddd;
} }
::-webkit-scrollbar-thumb:hover{ ::-webkit-scrollbar-thumb:hover{
background-color: #bbb; background-color: #bbb;
} }
::-webkit-scrollbar-thumb:active{ ::-webkit-scrollbar-thumb:active{
background-color:#888; background-color:#888;
} }