TF-751 [WEB] Change cursor move in email content

This commit is contained in:
dab246
2022-08-02 17:57:03 +07:00
committed by Dat H. Pham
parent e184a81921
commit 94cca20308
@@ -26,9 +26,7 @@ String generateHtml(String content, {
double? minWidth,
String? styleCSS,
String? javaScripts,
bool? hideScrollBar,
String? resize,
String? cursor,
bool? hideScrollBar
}) {
return '''
<!DOCTYPE html>
@@ -38,8 +36,6 @@ String generateHtml(String content, {
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>
.tmail-content {
cursor: ${cursor ?? 'move'};
resize: ${resize ?? 'both'};
min-height: ${minHeight ?? 0}px;
min-width: ${minWidth ?? 0}px;
overflow: auto;