Minor styling tweaks to cells judged as new topics.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@1619 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2010-10-22 07:35:27 +00:00
parent 345c1c62ac
commit bc4de76ec5
2 changed files with 3 additions and 2 deletions

View File

@ -88,7 +88,8 @@ DataTableCellUI.prototype._render = function() {
var service = (r.service) ? ReconciliationManager.getServiceFromUrl(r.service) : null;
if (r.j == "new") {
$('<span>').text(cell.v + "Create new topic").appendTo(divContent);
$('<span>').text(cell.v).appendTo(divContent);
$('<span>').addClass("data-table-recon-new").text("new").appendTo(divContent);
$('<a href="javascript:{}"></a>')
.text("Choose new match")

View File

@ -195,7 +195,7 @@ a.data-table-recon-topic {
color: @link_secondary;
}
.data-table-recon-score {
.data-table-recon-score, .data-table-recon-new {
color: #aaa;
margin: 0 0.5em;
}