blast_report.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. }
  67. /* CViTjs support */
  68. .blast-top:after {
  69. clear: both;
  70. display: table;
  71. content: "";
  72. }
  73. .blast-job-info {
  74. float: left;
  75. margin-bottom: 25px;
  76. }
  77. .cvitjs {
  78. float: left;
  79. margin-top: 10px;
  80. margin-bottom: 25px;
  81. }
  82. .cvitjs #cvit-div{
  83. padding: 5px 0 0 0;
  84. }
  85. .report-table {
  86. clear: both;
  87. position: static;
  88. }