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:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user