Added 'CloudLink' class to links in category cloud.

This commit is contained in:
Dario Solera 2010-09-10 05:21:52 +00:00
parent 62221a84dd
commit 4d8fb62fc5
2 changed files with 3 additions and 3 deletions

View file

@ -16,5 +16,5 @@ using System.Reflection;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("3.0.3.556")]
[assembly: AssemblyFileVersion("3.0.3.556")]
[assembly: AssemblyVersion("3.0.3.557")]
[assembly: AssemblyFileVersion("3.0.3.557")]

View file

@ -2279,7 +2279,7 @@ namespace ScrewTurn.Wiki {
//sb.Append(Tools.UrlEncode(categories[i].FullName));
sb.Append(@"<a href=""");
UrlTools.BuildUrl(sb, "AllPages.aspx?Cat=", Tools.UrlEncode(categories[i].FullName));
sb.Append(@""" style=""font-size: ");
sb.Append(@""" class=""CloudLink"" style=""font-size: ");
sb.Append(ComputeSize((float)categories[i].Pages.Length / (float)tot * 100F).ToString());
sb.Append(@"px;"">");
sb.Append(NameTools.GetLocalName(categories[i].FullName));