mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 11:25:13 +01:00
Debug: strike through transparent text
This commit is contained in:
@@ -633,6 +633,12 @@ public class HtmlHelper {
|
||||
|
||||
Integer color = parseColor(value);
|
||||
|
||||
if (color != null && color == Color.TRANSPARENT) {
|
||||
if (BuildConfig.DEBUG)
|
||||
sb.append("text-decoration:line-through;");
|
||||
color = null;
|
||||
}
|
||||
|
||||
if ("color".equals(key)) {
|
||||
Integer bg = null;
|
||||
if (background_color) {
|
||||
@@ -1763,6 +1769,9 @@ public class HtmlHelper {
|
||||
if (TextUtils.isEmpty(value))
|
||||
return null;
|
||||
|
||||
if ("transparent".equals(value))
|
||||
return Color.TRANSPARENT;
|
||||
|
||||
// https://developer.mozilla.org/en-US/docs/Web/CSS/color_value
|
||||
String c = value
|
||||
.replace("null", "")
|
||||
|
||||
Reference in New Issue
Block a user