From e7c7d47402f7fd2e4e3c495f288b749d261e8a11 Mon Sep 17 00:00:00 2001 From: Kshaw362 Date: Tue, 4 Jun 2024 13:39:50 -0400 Subject: [PATCH] updating the excluded row color to be less pink --- sde_indexing_helper/static/js/candidate_url_list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sde_indexing_helper/static/js/candidate_url_list.js b/sde_indexing_helper/static/js/candidate_url_list.js index c1bbfa90..2e88cd94 100644 --- a/sde_indexing_helper/static/js/candidate_url_list.js +++ b/sde_indexing_helper/static/js/candidate_url_list.js @@ -163,7 +163,7 @@ function initializeDataTable() { ], createdRow: function (row, data, dataIndex) { if (data["excluded"]) { - $(row).attr("style", "background-color: #ab387d !important"); + $(row).attr("style", "background-color: rgba(255, 61, 87, 0.36) !important"); } }, });