Code simplification, move to wizard style UI, JSON file cache (scans every 15 mins)

This commit is contained in:
markmental 2026-03-02 13:45:28 -05:00
commit 92362efd47
11 changed files with 1027 additions and 438 deletions

View file

@ -118,8 +118,55 @@ h1 {
margin-bottom: 1.5rem;
}
.wizard-panel {
margin-bottom: 1rem;
}
.wizard-step {
font-family: 'Orbitron', sans-serif;
font-size: 0.8rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--accent-primary);
margin-bottom: 1rem;
}
.wizard-section {
display: grid;
gap: 0.5rem;
}
.wizard-toolbar {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.4rem;
}
.wizard-toolbar .btn {
padding: 0.55rem 0.4rem;
font-size: 0.7rem;
}
.wizard-library {
font-family: 'Orbitron', sans-serif;
font-size: 0.78rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-secondary);
}
.wizard-path {
color: var(--text-primary);
background: var(--bg-tertiary);
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 0.45rem 0.6rem;
font-size: 0.82rem;
word-break: break-word;
}
.tab-btn {
flex: 1;
width: 100%;
padding: 0.75rem;
background: var(--bg-tertiary);
border: 1px solid var(--border-color);
@ -222,6 +269,10 @@ h1 {
font-size: 0.85rem;
}
.file-item.folder-entry {
background: var(--bg-tertiary);
}
.file-item:hover {
border-color: var(--accent-primary);
background: var(--bg-tertiary);