From 9869171ccf8bbbbcee907fabfc1196be47517fce Mon Sep 17 00:00:00 2001 From: Matt Date: Fri, 6 Feb 2009 00:22:59 +0000 Subject: [PATCH] * fix zebra rows in mailbox view not working after sort/move * apply cursor: pointer to sort toggles --- webcit/static/summaryview.js | 2 ++ webcit/static/webcit.css | 3 +++ 2 files changed, 5 insertions(+) diff --git a/webcit/static/summaryview.js b/webcit/static/summaryview.js index d1fa66e38..497a61140 100644 --- a/webcit/static/summaryview.js +++ b/webcit/static/summaryview.js @@ -178,6 +178,8 @@ function resortAndDisplay(sortMode) { try { var currentRow = rowArray[x]; var className = currentRow.className; + className = className.replace("table-alt-row",""); + className = className.replace("table-row",""); if (((x-1) % 2) == 0) { className += " table-alt-row"; } else { diff --git a/webcit/static/webcit.css b/webcit/static/webcit.css index 5d8d65645..86342013e 100644 --- a/webcit/static/webcit.css +++ b/webcit/static/webcit.css @@ -614,6 +614,9 @@ body, #global { .col3 { width: 20%; } +.col1, .col2, .col3 { + cursor: pointer; +} .new_message { font-weight: bold; !important; } -- 2.30.2