From 536dd58f70c1626b3c843e9a26e322bcc4bef598 Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Thu, 13 May 2021 11:28:27 +0800 Subject: [PATCH] =?UTF-8?q?BI-86802=20fix:=20=E9=BC=A0=E6=A0=87=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=20&&=20=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/base/single/editor/editor.textarea.js | 6 +++--- src/less/core/utils/cursor.less | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/base/single/editor/editor.textarea.js b/src/base/single/editor/editor.textarea.js index 29ca9589f..4a8bd176b 100644 --- a/src/base/single/editor/editor.textarea.js +++ b/src/base/single/editor/editor.textarea.js @@ -87,7 +87,7 @@ BI.TextAreaEditor = BI.inherit(BI.Single, { if (!this.watermark) { this.watermark = BI.createWidget({ type: "bi.label", - cls: "bi-water-mark cursor-default textarea-watermark", + cls: "bi-water-mark cursor-text textarea-watermark", textAlign: "left", whiteSpace: "normal", text: o.watermark, @@ -99,9 +99,9 @@ BI.TextAreaEditor = BI.inherit(BI.Single, { this.watermark.element.bind({ mousedown: function (e) { if (self.isEnabled()) { - self.editor.focus(); + self.focus(); } else { - self.editor.blur(); + self.blur(); } e.stopEvent(); } diff --git a/src/less/core/utils/cursor.less b/src/less/core/utils/cursor.less index 696d08a56..7e7019f30 100644 --- a/src/less/core/utils/cursor.less +++ b/src/less/core/utils/cursor.less @@ -8,4 +8,9 @@ .cursor-move{ cursor: move; } + +.cursor-text{ + cursor: text; +} + /*****************cursor*****************/ \ No newline at end of file