style.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. body {
  2. font-family: Helvetica, Arial, sans-serif;
  3. font-size: 12px;
  4. min-width: 1200px;
  5. color: #999;
  6. }
  7. h2 {
  8. font-size: 16px;
  9. color: black;
  10. }
  11. p {
  12. color: black;
  13. }
  14. a {
  15. color: #999;
  16. }
  17. table {
  18. border-collapse: collapse;
  19. }
  20. /******************************
  21. * SUMMARY INFORMATION
  22. ******************************/
  23. #environment td {
  24. padding: 5px;
  25. border: 1px solid #E6E6E6;
  26. }
  27. #environment tr:nth-child(odd) {
  28. background-color: #f6f6f6;
  29. }
  30. /******************************
  31. * TEST RESULT COLORS
  32. ******************************/
  33. span.passed, .passed .col-result {
  34. color: green;
  35. }
  36. span.skipped, span.xfailed, span.rerun, .skipped .col-result, .xfailed .col-result, .rerun .col-result {
  37. color: orange;
  38. }
  39. span.error, span.failed, span.xpassed, .error .col-result, .failed .col-result, .xpassed .col-result {
  40. color: red;
  41. }
  42. /******************************
  43. * RESULTS TABLE
  44. *
  45. * 1. Table Layout
  46. * 2. Extra
  47. * 3. Sorting items
  48. *
  49. ******************************/
  50. /*------------------
  51. * 1. Table Layout
  52. *------------------*/
  53. #results-table {
  54. border: 1px solid #e6e6e6;
  55. color: #999;
  56. font-size: 12px;
  57. width: 100%
  58. }
  59. #results-table th, #results-table td {
  60. padding: 5px;
  61. border: 1px solid #E6E6E6;
  62. text-align: left
  63. }
  64. #results-table th {
  65. font-weight: bold
  66. }
  67. /*------------------
  68. * 2. Extra
  69. *------------------*/
  70. .log:only-child {
  71. height: inherit
  72. }
  73. .log {
  74. background-color: #e6e6e6;
  75. border: 1px solid #e6e6e6;
  76. color: black;
  77. display: block;
  78. font-family: "Courier New", Courier, monospace;
  79. height: 230px;
  80. overflow-y: scroll;
  81. padding: 5px;
  82. white-space: pre-wrap
  83. }
  84. div.image {
  85. border: 1px solid #e6e6e6;
  86. float: right;
  87. height: 240px;
  88. margin-left: 5px;
  89. overflow: hidden;
  90. width: 320px
  91. }
  92. div.image img {
  93. width: 320px
  94. }
  95. .collapsed {
  96. display: none;
  97. }
  98. .expander::after {
  99. content: " (show details)";
  100. color: #BBB;
  101. font-style: italic;
  102. cursor: pointer;
  103. }
  104. .collapser::after {
  105. content: " (hide details)";
  106. color: #BBB;
  107. font-style: italic;
  108. cursor: pointer;
  109. }
  110. /*------------------
  111. * 3. Sorting items
  112. *------------------*/
  113. .sortable {
  114. cursor: pointer;
  115. }
  116. .sort-icon {
  117. font-size: 0px;
  118. float: left;
  119. margin-right: 5px;
  120. margin-top: 5px;
  121. /*triangle*/
  122. width: 0;
  123. height: 0;
  124. border-left: 8px solid transparent;
  125. border-right: 8px solid transparent;
  126. }
  127. .inactive .sort-icon {
  128. /*finish triangle*/
  129. border-top: 8px solid #E6E6E6;
  130. }
  131. .asc.active .sort-icon {
  132. /*finish triangle*/
  133. border-bottom: 8px solid #999;
  134. }
  135. .desc.active .sort-icon {
  136. /*finish triangle*/
  137. border-top: 8px solid #999;
  138. }