add ai.syui.card.old

This commit is contained in:
2026-01-21 02:30:44 +09:00
parent 55c504e338
commit 3ea39cb224
8 changed files with 532 additions and 8 deletions

View File

@@ -0,0 +1,44 @@
/* Card Migration Page Styles */
.migrate-title {
font-weight: 500;
color: var(--text-secondary, #666);
}
.migrated-badge {
color: #00a060;
font-size: 0.9em;
}
.migrate-btn {
background: var(--btn-color, #0066cc);
color: white;
border: none;
padding: 6px 16px;
border-radius: 4px;
font-size: 0.9em;
cursor: pointer;
transition: opacity 0.2s;
}
.migrate-btn:hover {
opacity: 0.9;
}
.migrate-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.no-data {
color: var(--text-secondary, #666);
text-align: center;
padding: 32px;
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
.migrate-title {
color: var(--text-secondary, #aaa);
}
}