修复地理位置漂移的BUG

This commit is contained in:
CN-JS-HuiBai
2026-04-05 17:05:15 +08:00
parent a9fe0f219a
commit dc865c6d9d
3 changed files with 152 additions and 14 deletions

View File

@@ -877,6 +877,52 @@ input:checked+.slider:before {
color: var(--text-muted);
border-bottom: 1px solid var(--border-color);
background: rgba(0, 0, 0, 0.2);
transition: all 0.2s ease;
}
.server-table th.sortable {
cursor: pointer;
position: relative;
user-select: none;
}
.server-table th.sortable:hover {
background: rgba(99, 102, 241, 0.08);
color: var(--text-primary);
}
.server-table th.sortable.active {
color: var(--accent-indigo);
background: rgba(99, 102, 241, 0.05);
border-bottom-color: var(--accent-indigo);
}
.sort-icon {
display: inline-block;
width: 12px;
height: 12px;
vertical-align: middle;
margin-left: 4px;
opacity: 0.3;
transition: all 0.2s ease;
position: relative;
}
.server-table th.sortable.active .sort-icon {
opacity: 1;
}
.sort-icon::after {
content: '↕';
font-size: 0.8rem;
}
.server-table th.sortable.active[data-dir="asc"] .sort-icon::after {
content: '↑';
}
.server-table th.sortable.active[data-dir="desc"] .sort-icon::after {
content: '↓';
}
.server-table td {