修改提交

This commit is contained in:
筱野
2025-08-20 23:08:42 +08:00
parent 3a45212737
commit c32c86051c
12 changed files with 197 additions and 28 deletions

View File

@@ -32,13 +32,13 @@
}
.info-popover {
position: absolute;
top: 22px;
left: 0;
width: 50%;
padding: 8px 10px;
background: rgba(0, 0, 0, 0.85);
bottom: 22px;
left: -65px;
width: 130px;
padding:12px;
background: rgba(57, 59, 68, 0.90);
color: #fff;
border-radius: 6px;
border-radius: 8px;
font-size: 12px;
line-height: 1.6;
z-index: 1001;
@@ -47,6 +47,17 @@
overflow-wrap: break-word;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.info-popover::before {
content: '';
position: absolute;
bottom: -6px;
left: 68px; /* 对齐图标宽12px可按需微调 */
width: 0;
height: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 6px solid rgba(57, 59, 68, 0.90);
}
}
}