Fix list behaviour in chats

main
Julian Lam 10 years ago
parent 0b959083bd
commit 5c0d508dc9

@ -70,7 +70,8 @@
} }
} }
ul { .chat-content {
.fix-lists;
height: 250px; height: 250px;
overflow-y: auto; overflow-y: auto;
resize: none; resize: none;

@ -46,4 +46,22 @@
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
}
.fix-lists {
ul {
> li {
list-style-type: disc;
ul > li {
list-style-type: circle;
ul > li {
list-style-type: square;
}
}
}
margin-bottom: 10px;
}
} }

@ -239,21 +239,7 @@
} }
.content { .content {
ul { .fix-lists;
> li {
list-style-type: disc;
ul > li {
list-style-type: circle;
ul > li {
list-style-type: square;
}
}
}
margin-bottom: 10px;
}
blockquote { blockquote {
font-size: 85%; font-size: 85%;

Loading…
Cancel
Save