Ensure to reset padding and border as well for textarea in richtext (#13012)

This commit is contained in:
Bjarne Fyrstenborg
2023-01-24 09:18:54 +01:00
committed by GitHub
parent 8fdb5a55ea
commit 14af1aea9b

View File

@@ -3,7 +3,7 @@
<ng-form name="rteForm">
<div class="umb-rte-editor-con">
<input type="text" id="{{model.alias}}" ng-focus="focus()" name="modelValue" ng-model="model.value" style="position:absolute;top:0;width:0;height:0;" />
<input type="text" id="{{model.alias}}" ng-focus="focus()" name="modelValue" ng-model="model.value" style="position:absolute;top:0;width:0;height:0;padding:0;border:none;" />
<div disable-hotkeys id="{{textAreaHtmlId}}" class="umb-rte-editor" ng-style="{ width: containerWidth, height: containerHeight, overflow: containerOverflow}"></div>
</div>
</ng-form>