Add a border to the content area of the comments edit iframe

This commit is contained in:
Kovid Goyal 2018-03-22 12:09:12 +05:30
parent 2ddfa2aa43
commit 0d260e4e5b
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -419,7 +419,7 @@ class Editor:
def create_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) editor = Editor(iframe)
add_editor(editor) add_editor(editor)
return iframe, editor return iframe, editor