Fix invisible message detail scrollbar

// FREEBIE
This commit is contained in:
lilia 2015-11-07 18:35:11 -08:00
parent 573d14f6fb
commit 334e26af13
2 changed files with 7 additions and 6 deletions

View file

@ -7,6 +7,10 @@
.panel { .panel {
height: 100%; height: 100%;
} }
::-webkit-scrollbar-thumb {
background: rgba(0,0,0,0.15);
}
} }
.conversation-title { .conversation-title {
display: block; display: block;
@ -224,16 +228,13 @@
} }
} }
&::-webkit-scrollbar-thumb {
background: rgba(0,0,0,0.15);
}
} }
.message-detail, .message-detail,
.message-list { .message-list {
list-style: none; list-style: none;
li { li {
margin: 0 8px 16px; margin: 0 8px 16px;

View file

@ -543,6 +543,8 @@ input.search {
border-radius: 10px; } border-radius: 10px; }
.conversation .panel { .conversation .panel {
height: 100%; } height: 100%; }
.conversation ::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.15); }
.conversation-title { .conversation-title {
display: block; display: block;
@ -698,8 +700,6 @@ input.search {
cursor: pointer; } cursor: pointer; }
.message-list .timestamp:hover { .message-list .timestamp:hover {
text-decoration: underline; } text-decoration: underline; }
.message-list::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.15); }
.message-detail, .message-detail,
.message-list { .message-list {