From 20d460296d069f5dccc4b1768af348fd3193b861 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 7 Dec 2018 20:36:10 +0300 Subject: [PATCH] fix unread hl styling --- js/Headlines.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/Headlines.js b/js/Headlines.js index 5e0e7de81..bdaf49014 100755 --- a/js/Headlines.js +++ b/js/Headlines.js @@ -246,6 +246,7 @@ define(["dojo/_base/declare"], function (declare) { if (hl.marked) row_class += " marked"; if (hl.published) row_class += " published"; + if (hl.unread) row_class += " Unread"; if (App.isCombinedMode()) { row_class += App.getInitParam("cdm_expanded") ? " expanded" : " expandable";