blast_report.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /**
  2. * @file
  3. * Handles CSS Themeing of the BLAST Results
  4. */
  5. /* -- Ensure users see lack of results. */
  6. p.blast-no-results {
  7. color: red;
  8. font-weight: bold;
  9. font-style: italic;
  10. }
  11. /* -- Theme the table of results */
  12. table#blast_report th {
  13. text-align: left;
  14. }
  15. table#blast_report tr td {
  16. vertical-align : top;
  17. }
  18. table#blast_report tr.odd td {
  19. cursor:pointer;
  20. vertical-align : top;
  21. }
  22. table#blast_report .arrow {
  23. background:transparent url('../images/arrows.png') no-repeat scroll 0px -16px;
  24. width:16px;
  25. height:16px;
  26. display:block;
  27. }
  28. table#blast_report div.up {
  29. background-position:0px 0px;
  30. }
  31. table#blast_report td.number, #blast_report th.number {
  32. width: 10px;
  33. border-left: none;
  34. }
  35. table#blast_report td.evalue, #blast_report th.evalue {
  36. width: 100px;
  37. }
  38. table#blast_report td.arrow-col, #blast_report th.arrow-col {
  39. width: 10px;
  40. border-right: none;
  41. }
  42. /* -- Alignment */
  43. table#blast_report tr.alignment-row .title{
  44. font-weight: bold;
  45. }
  46. table#blast_report tr.alignment-row .hsp-title{
  47. padding-top: 15px;
  48. font-weight: bold;
  49. }
  50. table#blast_report tr.alignment-row{
  51. width: 100%;
  52. }
  53. table#blast_report .alignment {
  54. width: 625px;
  55. }
  56. table#blast_report .alignment-title {
  57. font-weight: bold;
  58. }
  59. table#blast_report div.alignment-row{
  60. padding: 10px 30px;
  61. font-family: monospace;
  62. white-space: nowrap;
  63. }
  64. table#blast_report div.alignment-subrow{
  65. padding-bottom: 15px;
  66. }