backend Create the foundational structure for managing design-system CSS with co-located sources and semantic tokens: - Add `cmd/buildstyles` to concatenate ordered CSS sources into a single shipped stylesheet - Define semantic color and effect tokens in `internal/web/ui/base.css` - Move primitive and catalog CSS sources from `static/css/` to co-located locations under `internal/web/ui/` - Update test contract to verify token presence and proper stylesheet generation - Regenerate `static/styles.css` with new semantic token layer and source annotations
23 lines
516 B
CSS
23 lines
516 B
CSS
.ui-textarea {
|
|
appearance: none;
|
|
background: var(--color-surface-default);
|
|
border: 1px solid var(--color-border-default);
|
|
border-radius: 0.75rem;
|
|
color: var(--color-text-primary);
|
|
font: inherit;
|
|
line-height: 1.4;
|
|
min-height: 7rem;
|
|
padding: 0.85rem 0.95rem;
|
|
resize: vertical;
|
|
width: 100%;
|
|
}
|
|
|
|
.ui-textarea::placeholder {
|
|
color: var(--color-text-faint);
|
|
}
|
|
|
|
.ui-textarea:focus {
|
|
border-color: var(--color-brand-focus);
|
|
box-shadow: 0 0 0 3px var(--color-focus-ring-strong);
|
|
outline: none;
|
|
}
|