Combined border-radius and styled the webkit scrollbar

This commit is contained in:
Robin Buse 2011-08-16 18:50:03 +03:00
parent 4f4c15bb07
commit 35cc74df27

View file

@ -1275,12 +1275,11 @@ ul#colorpickerswatches li:hover
} }
#chatbox #chatbox
{ {
background-color: #f3f7f9; background-color: #f7f7f7;
border-left: 1px solid #999; border-left: 1px solid #999;
border-right: 1px solid #999; border-right: 1px solid #999;
border-top: 1px solid #999; border-top: 1px solid #999;
border-top-left-radius: 5px; border-radius: 5px 5px 0 0;
border-top-right-radius: 5px;
bottom: 0px; bottom: 0px;
display: none; display: none;
height: 200px; height: 200px;
@ -1291,6 +1290,16 @@ ul#colorpickerswatches li:hover
width: 180px; width: 180px;
z-index: 400; z-index: 400;
} }
::-webkit-scrollbar {
width: 9px;
}
::-webkit-scrollbar-track {
background: #eee;
}
::-webkit-scrollbar-thumb {
background: #bbb;
cursor: pointer;
}
#chattext #chattext
{ {
background-color: white; background-color: white;