From 0d260e4e5bf9c1d889b7ff45151db403ceeb7fcd Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 22 Mar 2018 12:09:12 +0530 Subject: [PATCH] Add a border to the content area of the comments edit iframe --- src/pyj/book_list/comments_editor.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/book_list/comments_editor.pyj b/src/pyj/book_list/comments_editor.pyj index b83f230593..c3614e4546 100644 --- a/src/pyj/book_list/comments_editor.pyj +++ b/src/pyj/book_list/comments_editor.pyj @@ -419,7 +419,7 @@ class Editor: def create_editor(): - iframe = E.iframe(sandbox='allow-scripts', seamless=True, style='flex-grow: 10', id=self.id) + iframe = E.iframe(sandbox='allow-scripts', seamless=True, style='flex-grow: 10; border: solid 1px currentColor', id=self.id) editor = Editor(iframe) add_editor(editor) return iframe, editor