# HG changeset patch # User Thierry Florac # Date 1542030619 -3600 # Node ID a7a2eeb833b7d75681e81d4ad16ef4ec10dade04 # Parent 11d950caf9d22feb2e77253ea16802298876bf3d# Parent a5e56749ca3d78368a9b85f601936b05a17ce18d Merge branch dev-dc diff -r 11d950caf9d2 -r a7a2eeb833b7 src/pyams_content/component/paragraph/zmi/verbatim.py --- a/src/pyams_content/component/paragraph/zmi/verbatim.py Mon Nov 12 14:44:27 2018 +0100 +++ b/src/pyams_content/component/paragraph/zmi/verbatim.py Mon Nov 12 14:50:19 2018 +0100 @@ -72,9 +72,9 @@ edit_permission = MANAGE_CONTENT_PERMISSION def updateWidgets(self, prefix=None): - super(VerbatimParagraphAddForm, self).updateWidgets(prefix) + super().updateWidgets(prefix) if 'quote' in self.widgets: - self.widgets['quote'].widget_css_class = 'input height-100' + self.widgets['quote'].widget_css_class = 'input height-200' def create(self, data): return VerbatimParagraph() @@ -115,7 +115,7 @@ def updateWidgets(self, prefix=None): super(VerbatimParagraphPropertiesEditForm, self).updateWidgets(prefix) if 'quote' in self.widgets: - self.widgets['quote'].widget_css_class = 'input height-100' + self.widgets['quote'].widget_css_class = 'input height-200' def get_ajax_output(self, changes): output = super(self.__class__, self).get_ajax_output(changes)