TF-751 [WEB] Change cursor move in email content
This commit is contained in:
@@ -26,9 +26,7 @@ String generateHtml(String content, {
|
|||||||
double? minWidth,
|
double? minWidth,
|
||||||
String? styleCSS,
|
String? styleCSS,
|
||||||
String? javaScripts,
|
String? javaScripts,
|
||||||
bool? hideScrollBar,
|
bool? hideScrollBar
|
||||||
String? resize,
|
|
||||||
String? cursor,
|
|
||||||
}) {
|
}) {
|
||||||
return '''
|
return '''
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
@@ -38,8 +36,6 @@ String generateHtml(String content, {
|
|||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<style>
|
<style>
|
||||||
.tmail-content {
|
.tmail-content {
|
||||||
cursor: ${cursor ?? 'move'};
|
|
||||||
resize: ${resize ?? 'both'};
|
|
||||||
min-height: ${minHeight ?? 0}px;
|
min-height: ${minHeight ?? 0}px;
|
||||||
min-width: ${minWidth ?? 0}px;
|
min-width: ${minWidth ?? 0}px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|||||||
Reference in New Issue
Block a user