From 5ff39207159d49086bb35d69b93f253eb511910a Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Thu, 17 Mar 2011 01:18:01 +0000 Subject: [PATCH] [log][html] Add link colours on linux too --- SparkleShare/SparkleLog.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SparkleShare/SparkleLog.cs b/SparkleShare/SparkleLog.cs index 889bb0ac..d9cab1bc 100644 --- a/SparkleShare/SparkleLog.cs +++ b/SparkleShare/SparkleLog.cs @@ -177,7 +177,9 @@ namespace SparkleShare { HTML = SparkleShare.Controller.GetHTMLLog (System.IO.Path.GetFileName (LocalPath)); - HTML = HTML.Replace ("", (Style.FontDescription.Size / 1024 + 0.5) + "pt"); + HTML = HTML.Replace ("", (Style.FontDescription.Size / 1024 + 0.5) + "pt"); + HTML = HTML.Replace ("", "#0085cf"); + HTML = HTML.Replace ("", "#009ff8"); HTML = HTML.Replace ("", "\"" + Style.FontDescription.Family + "\""); HTML = HTML.Replace ("", SparkleUIHelpers.GdkColorToHex (Style.Foreground (StateType.Normal))); HTML = HTML.Replace ("", SparkleUIHelpers.GdkColorToHex (new TreeView ().Style.Base (StateType.Normal)));