mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-27 15:05:31 +01:00
Add a border to the content area of the comments edit iframe
This commit is contained in:
parent
2ddfa2aa43
commit
0d260e4e5b
1 changed files with 1 additions and 1 deletions
|
|
@ -419,7 +419,7 @@ def update_state(self, data):
|
|||
|
||||
|
||||
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue