Hello developers,
my CSS styles don't work in RichTextEditor
.richTextEditorEditArea {
margin-left: 10px;
margin-right: 0px;
margin-top: 0px;
margin-bottom: 0px;
}
when drawing components, the value in margin-left is taken instead of margin-bottom.
After searching in debug mode, I found in the file RichTextEditor .js such a function
isc.A. getContentFrameHeight = function isc_RichTextCanvas_getContentFrameheight() {
return this.getHeight() - this.getHMarginBorderPad()
}
wouldn't it be better to call getVMarginBorderPad at this point?
Version v12.1p_2020-05-01
my CSS styles don't work in RichTextEditor
.richTextEditorEditArea {
margin-left: 10px;
margin-right: 0px;
margin-top: 0px;
margin-bottom: 0px;
}
when drawing components, the value in margin-left is taken instead of margin-bottom.
After searching in debug mode, I found in the file RichTextEditor .js such a function
isc.A. getContentFrameHeight = function isc_RichTextCanvas_getContentFrameheight() {
return this.getHeight() - this.getHMarginBorderPad()
}
wouldn't it be better to call getVMarginBorderPad at this point?
Version v12.1p_2020-05-01
Comment