Merge pull request #261 from nagisa77/codex/add-info-icon-for-experience-module

Add experience info tooltip
This commit is contained in:
Tim
2025-07-28 13:56:07 +08:00
committed by GitHub

View File

@@ -31,6 +31,13 @@
</div>
<div class="profile-level-target">🎉目标 Lv.{{ levelInfo.currentLevel + 1 }}</div>
</div>
<div class="profile-level-target">
目标 Lv.{{ levelInfo.currentLevel + 1 }}
<i
class="fas fa-info-circle profile-exp-info"
title="经验值可通过发帖、评论等操作获得,达到目标后即可提升等级,解锁更多功能。"
></i>
</div>
</div>
</div>
</div>
@@ -593,6 +600,12 @@ export default {
opacity: 0.8;
}
.profile-exp-info {
margin-left: 4px;
opacity: 0.5;
cursor: pointer;
}
.profile-info {
display: flex;
flex-direction: row;