You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.0 KiB

4 years ago
.list{
li{
border-top: 1px solid #f1f1f1;
&:first-child{
border-top: 0;
}
.inner{
position: relative;
display: flex;
justify-content: space-between;
4 years ago
padding: 16px 0;
4 years ago
.avatar{
4 years ago
width: 48px;
height: 48px;
4 years ago
border-radius: 50%;
}
.texts{
flex: 1;
4 years ago
margin-left: 24px;
.username{
color: rgba(0, 0, 0, 0.85);
font-size: 16px;
}
.desc{
margin: 8px 0;
}
.date{
color: rgba(0, 0, 0, 0.45);
font-size: 14px;
}
}
.action{
margin-top: 15px;
.btn{
padding: 5px 16px;
color: $main-color;
4 years ago
font-size: 14px;
4 years ago
background-color: #fff;
border: 1px solid;
border-radius: 4px;
cursor: pointer;
&:hover{
opacity: .8;
4 years ago
}
4 years ago
&:first-child{
margin-right: 5px;
4 years ago
}
4 years ago
&.del{
color: rgba(0, 0, 0, 0.65);
border: 1px solid rgba(0, 0, 0, 0.15);
4 years ago
}
}
}
}
.reply{
margin-top: 20px;
}
}
&.children{
4 years ago
margin-left: 72px;
padding-left: 24px;
background-color: rgba(0, 0, 0, 0.02);
border-radius: 8px;
4 years ago
li{
4 years ago
border-top-color: rgba(0, 0, 0, 0.06);
4 years ago
}
}
}
.toggle{
4 years ago
margin: 16px 0;
4 years ago
text-align: center;
color: $main-color;
4 years ago
font-size: 14px;
4 years ago
span{
cursor: pointer;
}
}
/deep/.quill{
background-color: #fff;
}