From: Matt Date: Fri, 6 Feb 2009 00:22:59 +0000 (+0000) Subject: * fix zebra rows in mailbox view not working after sort/move X-Git-Tag: v7.86~1491 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=9869171ccf8bbbbcee907fabfc1196be47517fce;hp=06410ef3a6eb6fdfafc9085b2eeadd4a74969c66;p=citadel.git * fix zebra rows in mailbox view not working after sort/move * apply cursor: pointer to sort toggles --- 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; }