mirror of
https://github.com/tulir/gomuks.git
synced 2025-04-20 10:33:41 -05:00
33 lines
480 B
CSS
33 lines
480 B
CSS
blockquote.reply-body {
|
|
margin: 0 0 .25rem;
|
|
border-left: 2px solid #aaa;
|
|
padding: .25rem .5rem;
|
|
|
|
&:hover {
|
|
border-color: black;
|
|
|
|
> div.message-text {
|
|
color: black;
|
|
}
|
|
}
|
|
|
|
> div.message-text {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
color: #666;
|
|
|
|
}
|
|
|
|
> div.reply-sender {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
> div.sender-avatar {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
margin-right: .25rem;
|
|
}
|
|
}
|
|
}
|