Files
schisandra-cloud-album-front/src/components/CommentReply/src/CommentList/index.scss
landaiqing e8ba4a1010 🎨 updated comment
2024-11-04 11:35:42 +08:00

147 lines
3.2 KiB
SCSS

.reply-header {
.reply-header-title {
font-size: 18px;
line-height: 30px;
font-weight: 600;
}
}
.reply-list {
margin-top: 10px;
border: 1px dashed #e9e9e9;
border-radius: 10px;
background-color: var(--comment-list-background-color);
padding: 10px;
min-width: 650px;
.reply-item {
margin-top: 10px;
}
.reply-avatar {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
border-radius: 50%;
}
.reply-avatar-img {
cursor: pointer;
}
.reply-pagination {
display: flex;
justify-content: flex-end;
margin-top: 10px;
}
.reply-content {
margin-left: 20px;
.reply-name {
font-size: 14px;
font-weight: 600;
cursor: pointer;
}
.reply-name:hover {
color: rgba(15, 15, 16, 0.68);
}
.reply-tag {
font-size: 10px;
font-weight: 800;
margin-left: 5px;
cursor: pointer;
}
.reply-level-icon {
width: 40px;
margin-left: 5px;
cursor: pointer;
}
.reply-ip {
font-size: 12px;
color: var(--comment-text-color);
}
.reply-time {
font-size: 12px;
color: var(--comment-text-color);
}
.reply-card {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 600px;
//margin-top: 5px;
.reply-text {
overflow: auto;
}
.reply-images {
margin-top: 5px;
}
.reply-action-item {
margin-top: 10px;
.reply-action-btn {
font-size: 13px;
color: var(--comment-text-color);
cursor: pointer;
}
.reply-action-icon {
font-size: 14px;
color: var(--comment-text-color);
cursor: pointer;
}
.reply-action-icon:hover {
font-size: 14px;
color: #08a327;
cursor: pointer;
}
.reply-action-btn:hover {
font-size: 13px;
color: #08a327;
cursor: pointer;
}
.reply-action-icon-number {
font-size: 12px;
cursor: pointer;
color: var(--comment-text-color);
}
}
.reply-action-item-right {
margin-top: 10px;
.reply-action-btn {
font-size: 15px;
color: var(--comment-text-color);
cursor: pointer;
}
.reply-action-btn:hover {
font-size: 15px;
color: #08a327;
cursor: pointer;
}
.reply-action-info {
font-size: 10px;
color: var(--comment-text-color);
cursor: pointer;
}
}
}
}
}