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;
overflow-y: auto;
resize: none;

@ -47,3 +47,21 @@
text-overflow: ellipsis;
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 {
ul {
> li {
list-style-type: disc;
ul > li {
list-style-type: circle;
ul > li {
list-style-type: square;
}
}
}
margin-bottom: 10px;
}
.fix-lists;
blockquote {
font-size: 85%;

Loading…
Cancel
Save