Skip to content

Commit

Permalink
Disable hover effects on ticket list. Useful if you're coloring rows …
Browse files Browse the repository at this point in the history
…based on status.
  • Loading branch information
Mike Nahmias committed Apr 30, 2016
1 parent 2fc6eb3 commit d2e5828
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions scp/css/scp.css
Original file line number Diff line number Diff line change
Expand Up @@ -477,12 +477,13 @@ table.list tbody td {

table.list tbody td { background: #fff; padding: 1px 3px; vertical-align: top; }
table.list tbody tr:nth-child(2n+1) td { background-color: #f0faff; }
table.list tbody tr:hover td { background: #ffe; }
table.list tbody tr:nth-child(2n+1):hover td { background: #ffd; }
/*Disable hover effects on ticket list. Useful if you're coloring rows based on status*/
/*table.list tbody tr:hover td { background: #ffe; }
table.list tbody tr:nth-child(2n+1):hover td { background: #ffd; }*/
/* row highlighting on hover + select */
table.list tbody tr:hover td, table.list tbody tr.highlight td { background: #FFFFDD; }
/*table.list tbody tr:hover td, table.list tbody tr.highlight td { background: #FFFFDD; }*/
/* disabled highlighting on nohover */
table.list tbody tr:hover td.nohover, table.list tbody tr.highlight td.nohover {}
/*table.list tbody tr:hover td.nohover, table.list tbody tr.highlight td.nohover {}*/


table.list tfoot td {
Expand Down

0 comments on commit d2e5828

Please sign in to comment.