TF-1961 Left align signature and title header reply/forward email

(cherry picked from commit 9ec81d062d945076d80f4eb4d0cc4e792514cb79)
This commit is contained in:
dab246
2023-08-18 19:04:50 +07:00
committed by Dat Vu
parent e2de23fdfd
commit e06d35f1e1
2 changed files with 14 additions and 1 deletions
@@ -35,4 +35,9 @@ extension HtmlExtension on String {
} }
return this; return this;
} }
String addCiteTag() => addBlockTag(
'cite',
attribute: 'style="text-align: left;display: block;"'
);
} }
@@ -75,7 +75,7 @@ class HtmlUtils {
const options = { const options = {
root: null, // Use the viewport as the root root: null, // Use the viewport as the root
rootMargin: "0px", rootMargin: "0px",
threshold: 0.1 // Specify the threshold for intersection threshold: 0 // Specify the threshold for intersection
}; };
const handleIntersection = (entries, observer) => { const handleIntersection = (entries, observer) => {
@@ -131,6 +131,10 @@ class HtmlUtils {
border-radius: 4px; border-radius: 4px;
overflow: auto; overflow: auto;
} }
div.tmail-signature {
text-align: left;
}
</style> </style>
'''; ''';
} else if (PlatformInfo.isMobile) { } else if (PlatformInfo.isMobile) {
@@ -138,6 +142,10 @@ class HtmlUtils {
#editor { #editor {
direction: ${direction.name}; direction: ${direction.name};
} }
div.tmail-signature {
text-align: left;
}
'''; ''';
} else { } else {
return ''; return '';