7ac4ddf0 by RSA

fix

1 parent 64bb4f9d
......@@ -60,6 +60,34 @@ span.info {
border-radius:5px !important;
box-shadow: 0px 5px 5px -3px black !important;
}
.chat-log::-webkit-scrollbar{
/*display: none;*/
}
/* Let's get this party started */
.chat-log::-webkit-scrollbar {
width: 8px;
}
/* Track */
.chat-log::-webkit-scrollbar-track {
/*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
-webkit-border-radius: 0px;
border-radius: 0px;
}
/* Handle */
.chat-log::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: #cccccc;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
.chat-log::-webkit-scrollbar-thumb:window-inactive {
background: #eeeeee;
}
.message {
padding: 7px 20px !important;
line-height: 25px;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!