perf: 账号名称hover样式优化

This commit is contained in:
rd
2025-07-17 14:13:48 +08:00
parent 21ef913c04
commit ea918038d3
3 changed files with 12 additions and 9 deletions

View File

@ -19,7 +19,9 @@
</template>
<a-checkbox :model-value="isSelected(item)" :value="item.id" @change="toggleSelect(item)"></a-checkbox>
<div class="ml-8px flex-1">
<p class="name cursor-pointer" @click="goDetail(item)">{{ item.name || '-' }}</p>
<a-tooltip content="点击查看账号详情">
<p class="name cursor-pointer hover:!color-#6d4cfe" @click="goDetail(item)">{{ item.name || '-' }}</p>
</a-tooltip>
<div class="field-row">
<span class="label">状态</span>
<StatusBox :status="item.status" />

View File

@ -25,6 +25,7 @@
font-style: normal;
font-weight: 400;
margin-bottom: 11px;
width: fit-content;
// line-height: 22px; /* 157.143% */
}
.label {