增加日志查询页面跟踪器显示

This commit is contained in:
Alex Yang
2025-12-24 10:08:35 +08:00
parent 1f8bd6b97f
commit fe77539da1
11 changed files with 50975 additions and 8762 deletions

View File

@@ -1063,4 +1063,79 @@ tr:hover {
.actions-cell {
display: flex;
gap: 0.5rem;
}
/* 跟踪器状态图标容器 */
.tracker-icon-container {
position: relative;
display: inline-flex;
align-items: center;
cursor: help;
}
/* 跟踪器浮窗样式 */
.tracker-tooltip {
position: absolute;
top: -10px;
left: 100%;
margin-left: 10px;
background-color: white;
border: 1px solid #e2e8f0;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
padding: 12px;
min-width: 250px;
z-index: 50;
font-size: 14px;
color: #333;
/* 添加箭头 */
}
/* 浮窗箭头 */
.tracker-tooltip::before {
content: '';
position: absolute;
top: 15px;
left: -10px;
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 10px solid white;
}
.tracker-tooltip::after {
content: '';
position: absolute;
top: 15px;
left: -11px;
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 10px solid #e2e8f0;
z-index: -1;
}
/* 浮窗标题 */
.tracker-tooltip .font-semibold {
font-weight: 600;
color: #2d3748;
margin-bottom: 8px;
display: block;
}
/* 浮窗内容项 */
.tracker-tooltip > div {
margin-bottom: 6px;
}
/* 浮窗链接样式 */
.tracker-tooltip a {
color: #3182ce;
text-decoration: none;
}
.tracker-tooltip a:hover {
text-decoration: underline;
}