diff --git a/lib/editors/note_body_editor.dart b/lib/editors/note_body_editor.dart index 579301b4..77ca32ba 100644 --- a/lib/editors/note_body_editor.dart +++ b/lib/editors/note_body_editor.dart @@ -26,6 +26,7 @@ class NoteBodyEditor extends StatelessWidget { border: InputBorder.none, isDense: true, fillColor: theme.scaffoldBackgroundColor, + hoverColor: theme.scaffoldBackgroundColor, ), controller: textController, textCapitalization: TextCapitalization.sentences, diff --git a/lib/editors/note_title_editor.dart b/lib/editors/note_title_editor.dart index d0d5d323..ca1ca690 100644 --- a/lib/editors/note_title_editor.dart +++ b/lib/editors/note_title_editor.dart @@ -21,6 +21,7 @@ class NoteTitleEditor extends StatelessWidget { border: InputBorder.none, isDense: true, fillColor: theme.scaffoldBackgroundColor, + hoverColor: theme.scaffoldBackgroundColor, ), controller: textController, textCapitalization: TextCapitalization.sentences, diff --git a/lib/editors/org_editor.dart b/lib/editors/org_editor.dart index fc73bf7e..6a769ccc 100644 --- a/lib/editors/org_editor.dart +++ b/lib/editors/org_editor.dart @@ -204,6 +204,7 @@ class _NoteEditor extends StatelessWidget { border: InputBorder.none, isDense: true, fillColor: theme.scaffoldBackgroundColor, + hoverColor: theme.scaffoldBackgroundColor, ), controller: textController, textCapitalization: TextCapitalization.sentences, diff --git a/lib/editors/raw_editor.dart b/lib/editors/raw_editor.dart index f3eef423..a74c1a06 100644 --- a/lib/editors/raw_editor.dart +++ b/lib/editors/raw_editor.dart @@ -188,6 +188,7 @@ class _NoteEditor extends StatelessWidget { border: InputBorder.none, isDense: true, fillColor: theme.scaffoldBackgroundColor, + hoverColor: theme.scaffoldBackgroundColor, ), controller: textController, textCapitalization: TextCapitalization.sentences,