* fix zebra rows in mailbox view not working after sort/move
authorMatt <matt@uncensored.citadel.org>
Fri, 6 Feb 2009 00:22:59 +0000 (00:22 +0000)
committerMatt <matt@uncensored.citadel.org>
Fri, 6 Feb 2009 00:22:59 +0000 (00:22 +0000)
* apply cursor: pointer to sort toggles

webcit/static/summaryview.js
webcit/static/webcit.css

index d1fa66e386edcb658e3f51905d741b92066a5d5e..497a611400846f422ed62bfd60c4fbf0f6fcea54 100644 (file)
@@ -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 {
index 5d8d6564550da3f7be61b566367ff6fde6aca6a5..86342013e86dc169a3e467816e3a661c8324c9db 100644 (file)
@@ -614,6 +614,9 @@ body, #global {
 .col3 {
     width: 20%;
 }
+.col1, .col2, .col3 {
+    cursor: pointer;
+}
 .new_message {
     font-weight: bold; !important;
 }