style.css 2.8 KB

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