fix: scope form focus rule, robust .hidden, drop unused shadow tokens, funnel amber stage

This commit is contained in:
hehihoho3@gmail.com 2026-05-31 01:38:08 +09:00
parent 04891a7838
commit 632a2d4f8a
3 changed files with 3 additions and 8 deletions

View File

@ -118,7 +118,7 @@ ul {
.justify-end { justify-content: flex-end; } .justify-end { justify-content: flex-end; }
.items-start { align-items: flex-start; } .items-start { align-items: flex-start; }
.block { display: block; } .block { display: block; }
.hidden { display: none; } .hidden { display: none !important; }
.relative { position: relative; } .relative { position: relative; }
.absolute { position: absolute; } .absolute { position: absolute; }
.inset-0 { inset: 0; } .inset-0 { inset: 0; }
@ -722,7 +722,7 @@ select, input[type="text"], input[type="search"], input[type="number"], input[ty
font-size: 0.875rem; font-size: 0.875rem;
transition: border-color 0.2s ease, background 0.2s ease; transition: border-color 0.2s ease, background 0.2s ease;
} }
select:focus, input:focus, textarea:focus { select:focus, input[type="text"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="date"]:focus, input[type="datetime-local"]:focus, textarea:focus {
outline: none; outline: none;
border-color: var(--primary); border-color: var(--primary);
background: rgba(255, 255, 255, 0.06); background: rgba(255, 255, 255, 0.06);

View File

@ -43,11 +43,6 @@
--space-6: 1.5rem; --space-6: 1.5rem;
--space-8: 2rem; --space-8: 2rem;
/* Elevation */
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
--shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.3);
--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.35);
--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
} }

View File

@ -182,7 +182,7 @@
document.getElementById('funnel').innerHTML = document.getElementById('funnel').innerHTML =
bar('미검토', bs.NEW, total, '#64748b') + bar('미검토', bs.NEW, total, '#64748b') +
bar('검토중', bs.REVIEWING, total, 'var(--primary)') + bar('검토중', bs.REVIEWING, total, 'var(--primary)') +
bar('작업대상', bs.TARGET, total, 'var(--primary)') + bar('작업대상', bs.TARGET, total, 'var(--warning)') +
bar('완료', bs.DONE, total, 'var(--success)') + bar('완료', bs.DONE, total, 'var(--success)') +
bar('발행완료', pbs.PUBLISHED, total, 'var(--success)'); bar('발행완료', pbs.PUBLISHED, total, 'var(--success)');