fix: replace monospaced ALL CAPS labels with Inter sentence case
Remove IBM Plex Mono + text-transform: uppercase from all UI labels. CSS classes .font-mono-label and .font-mono-overline now use Inter with no text-transform. Inline monospace+uppercase styles in StatusDropdown, TagsDropdown, ReferencedByPanel, AiActionCard replaced. Tailwind uppercase removed from Sidebar, CommandPalette, PulseView, CreateNoteDialog, CreateTypeDialog. Hardcoded ALL CAPS text (COLOR, ICON, TEMPLATE) converted to sentence case. Code blocks and commit hashes remain monospaced. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -149,22 +149,20 @@
|
||||
}
|
||||
}
|
||||
|
||||
/* --- IBM Plex Mono label styles (from typography scale) --- */
|
||||
/* --- Label typography (Inter, sentence case) --- */
|
||||
/* t8: Section labels, metadata tags — 11px medium */
|
||||
.font-mono-label {
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
font-family: 'Inter', sans-serif;
|
||||
font-size: 11px;
|
||||
font-weight: 500;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/* t9: Overlines, category labels — 10px regular */
|
||||
.font-mono-overline {
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
font-family: 'Inter', sans-serif;
|
||||
font-size: 10px;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.02em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.referenced-by-panel button:hover {
|
||||
|
||||
Reference in New Issue
Block a user