-
Bug
-
Resolution: Unresolved
-
Low
-
None
-
10.3.8, 10.4.0
-
None
-
10.03
-
1
-
Severity 3 - Minor
-
Issue Summary
The caret is invisible when using the Free Form Editor (from Checklists for Jira).
Steps to Reproduce
- Create a Custom Field of the Checklist type (added by the 3rd-party app Checklists for Jira)
- From the Issue View, select the option 'Modify in editor' for the Checklist field to open the Free Form Editor
Expected Results
Actual Results
Workaround
Adding the following CSS code in the announcement banner makes the caret be displayed.
<style>
textarea {
caret-color: black;
}
html[data-color-mode="dark"] textarea {
caret-color: white;
}
</style>