From 2ea299380b2ad19fd8c5ce9e5021160e97970e2f Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 16 Oct 2012 22:14:51 +0100 Subject: [PATCH] history: small style change --- SparkleShare/Common/HTML/event-log.html | 4 +++- SparkleShare/SparkleEventLogController.cs | 9 +++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/SparkleShare/Common/HTML/event-log.html b/SparkleShare/Common/HTML/event-log.html index 302dec08..06a3d95e 100755 --- a/SparkleShare/Common/HTML/event-log.html +++ b/SparkleShare/Common/HTML/event-log.html @@ -109,7 +109,6 @@ .history-header { color: #aaa; padding-top: 22px; - font-weight: bold; float: left; width: 90%; margin-left: 32px; @@ -186,16 +185,19 @@ td.time { color: ; padding-right: 9px; + font-size: ; } td.date { color: ; text-align: right; padding-right: 6px; + font-size: ; } td.restore { text-align: right; + font-size: ; } td.avatar { diff --git a/SparkleShare/SparkleEventLogController.cs b/SparkleShare/SparkleEventLogController.cs index 7784c638..d81001f7 100755 --- a/SparkleShare/SparkleEventLogController.cs +++ b/SparkleShare/SparkleEventLogController.cs @@ -364,14 +364,15 @@ namespace SparkleShare { public string GetHistoryHTMLLog (List change_sets, string file_path) { - string html = "
« Back  |  "; + string html = "
" + + "« Back  |  "; if (change_sets.Count > 1) - html += "Revisions for “"; + html += "Revisions for “"; else - html += "No revisions for “"; + html += "No revisions for “"; - html += Path.GetFileName (file_path) + "”"; + html += Path.GetFileName (file_path) + "”"; html += "
"; int count = 0;