fix
Showing
1 changed file
with
28 additions
and
0 deletions
| ... | @@ -60,6 +60,34 @@ span.info { | ... | @@ -60,6 +60,34 @@ span.info { |
| 60 | border-radius:5px !important; | 60 | border-radius:5px !important; |
| 61 | box-shadow: 0px 5px 5px -3px black !important; | 61 | box-shadow: 0px 5px 5px -3px black !important; |
| 62 | } | 62 | } |
| 63 | |||
| 64 | .chat-log::-webkit-scrollbar{ | ||
| 65 | /*display: none;*/ | ||
| 66 | } | ||
| 67 | |||
| 68 | /* Let's get this party started */ | ||
| 69 | .chat-log::-webkit-scrollbar { | ||
| 70 | width: 8px; | ||
| 71 | } | ||
| 72 | |||
| 73 | /* Track */ | ||
| 74 | .chat-log::-webkit-scrollbar-track { | ||
| 75 | /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/ | ||
| 76 | -webkit-border-radius: 0px; | ||
| 77 | border-radius: 0px; | ||
| 78 | } | ||
| 79 | |||
| 80 | /* Handle */ | ||
| 81 | .chat-log::-webkit-scrollbar-thumb { | ||
| 82 | -webkit-border-radius: 10px; | ||
| 83 | border-radius: 10px; | ||
| 84 | background: #cccccc; | ||
| 85 | -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); | ||
| 86 | } | ||
| 87 | .chat-log::-webkit-scrollbar-thumb:window-inactive { | ||
| 88 | background: #eeeeee; | ||
| 89 | } | ||
| 90 | |||
| 63 | .message { | 91 | .message { |
| 64 | padding: 7px 20px !important; | 92 | padding: 7px 20px !important; |
| 65 | line-height: 25px; | 93 | line-height: 25px; | ... | ... |
-
Please register or sign in to post a comment