freeze v0.2.0

This commit is contained in:
2026-05-16 20:07:52 +02:00
parent afeb46a210
commit bdbb6c0a1c
9 changed files with 857 additions and 161 deletions

View File

@@ -197,4 +197,200 @@ button.secondary {
font-weight: 500;
line-height: 1;
white-space: nowrap;
}
}
.app-header-actions {
display: flex;
align-items: center;
gap: 0.5rem;
}
.app-help-button {
border: 1px solid #4b5563;
border-radius: 999px;
background: transparent;
color: #e5e7eb;
padding: 0.35rem 0.65rem;
font-size: 0.85rem;
font-weight: 500;
cursor: pointer;
line-height: 1;
}
.app-help-button:hover,
.app-help-button:focus-visible {
background: #374151;
outline: none;
}
.help-dialog-backdrop {
position: fixed;
inset: 0;
z-index: 80;
background: rgba(15, 23, 42, 0.65);
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
}
.help-dialog-panel {
width: min(920px, 100%);
max-height: min(88vh, 760px);
overflow: auto;
background: #ffffff;
border-radius: 0.9rem;
box-shadow: 0 24px 60px rgba(15, 23, 42, 0.4);
}
.help-dialog-header {
position: sticky;
top: 0;
z-index: 1;
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 1rem;
padding: 1rem;
background: #ffffff;
border-bottom: 1px solid #e5e7eb;
}
.help-dialog-header h2 {
margin: 0;
font-size: 1.1rem;
}
.help-dialog-header p {
margin: 0.35rem 0 0;
color: #4b5563;
font-size: 0.9rem;
line-height: 1.45;
}
.help-close-button {
flex: 0 0 auto;
border: none;
border-radius: 999px;
width: 2rem;
height: 2rem;
background: #e5e7eb;
color: #111827;
cursor: pointer;
font-size: 1.25rem;
line-height: 1;
}
.help-dialog-content {
display: grid;
grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
gap: 1rem;
padding: 1rem;
}
.help-section {
border: 1px solid #e5e7eb;
border-radius: 0.75rem;
padding: 0.9rem;
background: #f9fafb;
}
.help-section h3 {
margin: 0 0 0.75rem;
font-size: 0.95rem;
}
.help-step-list {
display: flex;
flex-direction: column;
gap: 0.65rem;
}
.help-step {
border-radius: 0.65rem;
background: #ffffff;
border: 1px solid #e5e7eb;
padding: 0.75rem;
}
.help-step h4 {
margin: 0;
font-size: 0.9rem;
}
.help-step p,
.help-note {
margin: 0.35rem 0 0;
color: #4b5563;
font-size: 0.85rem;
line-height: 1.45;
}
.shortcut-grid {
display: grid;
grid-template-columns: max-content minmax(0, 1fr);
gap: 0.45rem 0.75rem;
align-items: center;
}
.shortcut-grid kbd {
display: inline-flex;
justify-content: center;
border-radius: 0.4rem;
border: 1px solid #d1d5db;
background: #ffffff;
padding: 0.2rem 0.45rem;
font-size: 0.78rem;
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
color: #111827;
box-shadow: inset 0 -1px 0 #d1d5db;
white-space: nowrap;
}
.shortcut-grid span {
color: #4b5563;
font-size: 0.85rem;
line-height: 1.35;
}
.help-concepts {
grid-column: 1 / -1;
}
.help-concepts dl {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 0.75rem;
margin: 0;
}
.help-concepts dl > div {
background: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 0.65rem;
padding: 0.75rem;
}
.help-concepts dt {
font-weight: 700;
font-size: 0.85rem;
margin-bottom: 0.3rem;
}
.help-concepts dd {
margin: 0;
color: #4b5563;
font-size: 0.82rem;
line-height: 1.4;
}
@media (max-width: 760px) {
.help-dialog-content,
.help-concepts dl {
grid-template-columns: 1fr;
}
.app-header-content {
align-items: flex-start;
}
}