[log] change colour on link hover instead of underlining

This commit is contained in:
Hylke Bons 2011-03-07 01:34:15 +00:00
parent 167a27783f
commit 2d599887af
3 changed files with 3 additions and 2 deletions

View file

@ -126,6 +126,7 @@ namespace SparkleShare {
html = html.Replace ("<!-- $small-color -->", "#ddd");
html = html.Replace ("<!-- $day-entry-header-background-color -->", "#f5f5f5");
html = html.Replace ("<!-- $a-color -->", "#0085cf");
html = html.Replace ("<!-- $a-hover-color -->", "#009ff8");
html = html.Replace ("<!-- $no-buddy-icon-background-image -->",
"file://" + Path.Combine (NSBundle.MainBundle.ResourcePath, "Pixmaps", "avatar-default.png"));

View file

@ -157,7 +157,7 @@ namespace SparkleShare {
string title = _("Ouch! Mid-air collision!");
string subtext = _("Don't worry, SparkleShare made a copy of each conflicting file.");
new SparkleBubble(title, subtext).Show ();
new SparkleBubble (title, subtext).Show ();
});
};

View file

@ -62,7 +62,7 @@
}
a:hover {
text-decoration: underline;
color: <!-- $a-hover-color -->;
}
td {