Trix field does not support dark mode in Nova 4 #3955
Replies: 3 comments 2 replies
-
|
Trix doesn't currently support dark mode: basecamp/trix#947 We will update the field once it does. |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
If someone wanted at least such an adjustment so that it could be viewed html.dark {
.trix-button-row {
.trix-button-group {
border-color: #0f172a;
.trix-button {
background-color: #94a3b8;
border-color: #0f172a;
&.trix-active {
background-color: lighten(#94a3b8, 10%);
}
}
}
}
.trix-content {
background-color: #0f172a;
border-color: #344155;
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment



Uh oh!
There was an error while loading. Please reload this page.
-
Description:
Great work on the Nova 4 release! :-)
Nova 4 introduces the awesome dark mode. However we just found that the Trix editor does not display in the best way possible for darkmode. See screenshot.
Detailed steps to reproduce the issue on a fresh Nova installation:
Add any Trix field to a nova 4 installation with dark mode enabled.
Possible solution
Since Trix ships with
background-image css svgicons. Its not possible to modify the color easily. However a possible "acceptable" solution could be to just let the tool bar not be in darkmode:The text box itself looks different but definitely acceptable in my opinion. Bonus if it would look the same as the rest of nova
<textarea>styling.Beta Was this translation helpful? Give feedback.
All reactions