mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-23 14:40:49 +08:00
Compare commits
2 Commits
pr-redis
...
feature/re
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
722d784691 | ||
|
|
5dab838482 |
@@ -26,8 +26,12 @@
|
|||||||
<span v-if="level >= 2" class="reply-item">
|
<span v-if="level >= 2" class="reply-item">
|
||||||
<i class="fas fa-reply reply-icon"></i>
|
<i class="fas fa-reply reply-icon"></i>
|
||||||
<span class="reply-info">
|
<span class="reply-info">
|
||||||
<BaseImage class="reply-avatar" :src="comment.parentUserAvatar || '/default-avatar.svg'" alt="avatar"
|
<BaseImage
|
||||||
@click="comment.parentUserClick && comment.parentUserClick()" />
|
class="reply-avatar"
|
||||||
|
:src="comment.parentUserAvatar || '/default-avatar.svg'"
|
||||||
|
alt="avatar"
|
||||||
|
@click="comment.parentUserClick && comment.parentUserClick()"
|
||||||
|
/>
|
||||||
<span class="reply-user-name">{{ comment.parentUserName }}</span>
|
<span class="reply-user-name">{{ comment.parentUserName }}</span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
@@ -381,7 +385,8 @@ const handleContentClick = (e) => {
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
.reply-item, .reply-info {
|
.reply-item,
|
||||||
|
.reply-info {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -397,13 +402,16 @@ const handleContentClick = (e) => {
|
|||||||
|
|
||||||
.reply-icon {
|
.reply-icon {
|
||||||
color: var(--primary-color);
|
color: var(--primary-color);
|
||||||
margin-right: 10px;
|
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
|
margin-right: 10px;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
|
transform: scaleX(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.reply-user-name {
|
.reply-user-name {
|
||||||
opacity: 0.3;
|
opacity: 0.3;
|
||||||
|
display: none;
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.medal-name {
|
.medal-name {
|
||||||
|
|||||||
Reference in New Issue
Block a user