style.css 942 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* tables
  2. table.tablesorter {
  3. font-family:arial;
  4. background-color: #CDCDCD;
  5. margin:10px 0pt 15px;
  6. font-size: 8pt;
  7. width: 100%;
  8. text-align: left;
  9. }
  10. table.tablesorter thead tr th, table.tablesorter tfoot tr th {
  11. background-color: #e6EEEE;
  12. border: 1px solid #FFF;
  13. font-size: 8pt;
  14. padding: 4px;
  15. }*/
  16. table.tablesorter thead tr .header {
  17. background-image: url(bg.gif);
  18. background-repeat: no-repeat;
  19. background-position: center right;
  20. cursor: pointer;
  21. background-color: white;
  22. }
  23. table.tablesorter tbody td {
  24. color: #3D3D3D;
  25. padding: 4px;
  26. background-color: #FFF;
  27. vertical-align: top;
  28. }
  29. table.tablesorter tbody tr.odd td {
  30. background-color:#F0F0F6;
  31. }
  32. table.tablesorter thead tr .headerSortUp {
  33. background-image: url(asc.gif);
  34. }
  35. table.tablesorter thead tr .headerSortDown {
  36. background-image: url(desc.gif);
  37. }
  38. /*table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
  39. background-color: #8dbdd8;
  40. }*/