添加延迟显示支持

This commit is contained in:
CN-JS-HuiBai
2026-04-05 23:38:53 +08:00
parent 84972cdaeb
commit 058a6c73a1
7 changed files with 450 additions and 176 deletions

View File

@@ -1604,6 +1604,7 @@ input:checked+.slider:before {
display: flex;
gap: 12px;
margin-bottom: 12px;
align-items: flex-end;
}
.form-group {
@@ -1776,6 +1777,29 @@ input:checked+.slider:before {
letter-spacing: 0.05em;
}
.source-type-badge {
display: inline-flex;
align-items: center;
padding: 2px 8px;
border-radius: 10px;
font-size: 0.65rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.02em;
}
.source-type-badge.type-server {
background: rgba(99, 102, 241, 0.1);
color: #818cf8;
border: 1px solid rgba(99, 102, 241, 0.2);
}
.source-type-badge.type-other {
background: rgba(139, 92, 246, 0.1);
color: #a78bfa;
border: 1px solid rgba(139, 92, 246, 0.2);
}
.source-status-online {
background: rgba(16, 185, 129, 0.1);
color: var(--accent-emerald);