This commit is contained in:
670788339
2025-11-03 18:58:33 +08:00
parent 897684b4f2
commit b0bc517936

View File

@@ -309,17 +309,20 @@ export default {
margin-bottom: 6px; margin-bottom: 6px;
} }
/* 添加标签计数样式 */ /* 优化内部计数样式 */
.tag-count { .tag-count {
position: absolute; position: absolute;
right: 10px; right: 30px; /* 避开下拉箭头 */
hight: 30px;
top: 50%; top: 50%;
transform: translateY(-45%); transform: translateY(-50%);
font-size: 12px; font-size: 12px;
color: #999; color: #999;
background: white; background: rgba(255, 255, 255, 0.9);
padding: 0 5px; padding: 2px 6px;
border-radius: 3px;
pointer-events: none; pointer-events: none;
z-index: 10; /* 确保在最上层 */
border: 1px solid #e4e7ed;
} }
</style> </style>