| /*
  Estes Scripts foram Copiados de arquivos do projeto phpmyadmin
  Permanece todos os direitos reservados
*/
/* odd items 1,3,5,7,... */
.odd {
    background: #E5E5E5;
}
/* even items 2,4,6,8,... */
.even {
    background: #D5D5D5;
}
/* odd table rows 1,3,5,7,... */
table tr.odd th,
table tr.odd {
    background-image:   none;
    background:         #E5E5E5;
    text-align:         left;
}
/* even table rows 2,4,6,8,... */
table tr.even th,
table tr.even {
    background-image:   none;
    background:         #D5D5D5;
    text-align:         left;
}
/* marked tbale rows */
table tr.marked th,
table tr.marked {
    background:   #ffcc99;
    color:   #000000;
}
/* hovered items */
/*.odd:hover,
.even:hover,
.hover {
    background: #ccffcc;
    color: #000000;
} */
/* hovered table rows */
table tr.odd:hover th,
table tr.even:hover th,
table tr.hover th {
    background:   #ccffcc;
    color:   #000000;
}
table#marcar tr.odd:hover,table#marcar tr.even:hover,
table#marcar tr.hover { background-color: #C0FFFF; }
 |