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