]> gitweb.fperrin.net Git - Dictionary.git/commitdiff
Also adjust link colour for dark theme HTML view.
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>
Fri, 22 May 2020 07:35:54 +0000 (09:35 +0200)
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>
Fri, 22 May 2020 07:35:54 +0000 (09:35 +0200)
src/com/hughes/android/dictionary/DictionaryActivity.java

index 15efdbe06c6f65f8d6308979546bfd02bd23dba1..4665192120772d7ccb4851c54e0fc30aa4c0ab8d 100644 (file)
@@ -1583,11 +1583,11 @@ public class DictionaryActivity extends AppCompatActivity {
         else if (typeface == Typeface.SANS_SERIF) { style = "font-family: sans-serif;"; }
         else if (typeface == Typeface.MONOSPACE) { style = "font-family: monospace;"; }
         if (application.getSelectedTheme() == DictionaryApplication.Theme.DEFAULT)
-            style += "background-color: black; color: white;";
+            style += "body { background-color: black; color: white; } a { color: #00aaff; }";
         // Log.d(LOG, "html=" + html);
         startActivityForResult(
             HtmlDisplayActivity.getHtmlIntent(getApplicationContext(), String.format(
-                    "<html><head><meta name=\"viewport\" content=\"width=device-width\"></head><body style=\"%s\">%s</body></html>", style, html),
+                    "<html><head><meta name=\"viewport\" content=\"width=device-width\"><style type=\"text/css\">%s</style></head><body>%s</body></html>", style, html),
                                               htmlTextToHighlight, false),
             0);
     }