diff --git a/main/webapp/modules/core/scripts/views/data-table/cell-ui.js b/main/webapp/modules/core/scripts/views/data-table/cell-ui.js index 4d1524b47..78584f02a 100644 --- a/main/webapp/modules/core/scripts/views/data-table/cell-ui.js +++ b/main/webapp/modules/core/scripts/views/data-table/cell-ui.js @@ -88,7 +88,8 @@ DataTableCellUI.prototype._render = function() { var service = (r.service) ? ReconciliationManager.getServiceFromUrl(r.service) : null; if (r.j == "new") { - $('').text(cell.v + "Create new topic").appendTo(divContent); + $('').text(cell.v).appendTo(divContent); + $('').addClass("data-table-recon-new").text("new").appendTo(divContent); $('') .text("Choose new match") diff --git a/main/webapp/modules/core/styles/views/data-table-view.less b/main/webapp/modules/core/styles/views/data-table-view.less index 442d8d94c..f02743b52 100644 --- a/main/webapp/modules/core/styles/views/data-table-view.less +++ b/main/webapp/modules/core/styles/views/data-table-view.less @@ -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; }