mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-04 06:09:14 -04:00
Combined border-radius and styled the webkit scrollbar
This commit is contained in:
parent
4f4c15bb07
commit
35cc74df27
1 changed files with 12 additions and 3 deletions
|
@ -1275,12 +1275,11 @@ ul#colorpickerswatches li:hover
|
|||
}
|
||||
#chatbox
|
||||
{
|
||||
background-color: #f3f7f9;
|
||||
background-color: #f7f7f7;
|
||||
border-left: 1px solid #999;
|
||||
border-right: 1px solid #999;
|
||||
border-top: 1px solid #999;
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
border-radius: 5px 5px 0 0;
|
||||
bottom: 0px;
|
||||
display: none;
|
||||
height: 200px;
|
||||
|
@ -1291,6 +1290,16 @@ ul#colorpickerswatches li:hover
|
|||
width: 180px;
|
||||
z-index: 400;
|
||||
}
|
||||
::-webkit-scrollbar {
|
||||
width: 9px;
|
||||
}
|
||||
::-webkit-scrollbar-track {
|
||||
background: #eee;
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #bbb;
|
||||
cursor: pointer;
|
||||
}
|
||||
#chattext
|
||||
{
|
||||
background-color: white;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue