fix: add proper theming for preset textareas

Fixed black text on white background in preset system additions and authors note textareas by adding CSS rules with !important to override inline styles.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-10-16 17:46:43 -07:00
parent 71bac12cd9
commit bc05747f5f

View File

@@ -1261,6 +1261,24 @@ body {
border-color: var(--accent); border-color: var(--accent);
} }
/* Fix theming for textareas with inline styles */
#preset-system-editable,
#preset-authors-note-editable {
background: var(--bg-tertiary) !important;
border: 1px solid var(--border) !important;
border-radius: 8px;
padding: 12px;
color: var(--text-primary) !important;
font-family: inherit;
resize: vertical;
}
#preset-system-editable:focus,
#preset-authors-note-editable:focus {
outline: none;
border-color: var(--accent) !important;
}
.form-group select { .form-group select {
-webkit-appearance: none; -webkit-appearance: none;
-moz-appearance: none; -moz-appearance: none;