diff --git a/Mac/publish/Appcast.xml b/Mac/publish/Appcast.xml index b65c049..e25264f 100755 --- a/Mac/publish/Appcast.xml +++ b/Mac/publish/Appcast.xml @@ -6,15 +6,15 @@ Most recent changes with links to updates. en - Version 0.6.0 + Version 0.6.1 10.5.0 http://jabs.nu/Tentia/download/ReleaseNotes.html - Sat, 19 Jan 2013 04:07:17 +0100 + Sun, 27 Jan 2013 10:14:16 +0100 + sparkle:dsaSignature="MCwCFBzHnd234i20ZHIVPe8/sNEGhCIoAhRy+lZG3h1LUoPO5+7CQWA139hKHQ==" /> diff --git a/WebKit/css/default.css b/WebKit/css/default.css index b277466..e5ae3a2 100644 --- a/WebKit/css/default.css +++ b/WebKit/css/default.css @@ -148,22 +148,6 @@ p { margin-left: 62px; } -li .name:first-child { - margin-left: -3px; -} - -.name { - background: #d8dfea; - font-weight: normal; - padding: 0 3px 2px 3px; - border-radius: 5px; - text-shadow: none; -} - -li:hover .name { - background: #b8c1d0; -} - .is_private { color: white; padding: 0 4px 0 2px; @@ -173,7 +157,6 @@ li:hover .name { font-weight: bold; } - li .date { position: absolute; top: -1.8em; diff --git a/WebKit/scripts/helper/Core.js b/WebKit/scripts/helper/Core.js index 60225b4..ee854f1 100644 --- a/WebKit/scripts/helper/Core.js +++ b/WebKit/scripts/helper/Core.js @@ -665,12 +665,21 @@ function(jQuery, Paths, URI, HostApp, Cache) { + "" ); + // adding show profile on click node.innerHTML = new_text; $(node).find("a.name").click(function(e) { HostApp.showProfileForEntity(e.target.title); return false; }); + // adding comma between names when there is only + // a space in between. + var names = $(node).find("a.name"); + names.each(function(i) { + if(this.nextSibling && $(this.nextSibling.nextSibling).hasClass("name") && this.nextSibling.nodeValue == " " ) { + $(this).after(",") + } + }); } }