qunit.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. body {
  2. font-family:"Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
  3. }
  4. h3,
  5. p,
  6. #qunit-userAgent,
  7. #qunit-banner,
  8. ol {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. li {
  13. list-style-position: inside;
  14. }
  15. #qunit-tests {
  16. font-size: smaller;
  17. /* IE6/7 seem to have trouble displaying an OL with no LI children */
  18. #border-bottom: 1px solid #fff;
  19. #margin-bottom: -1px;
  20. }
  21. #qunit-tests li {
  22. padding: 0.4em 2.5em;
  23. border-bottom: 1px solid #fff;
  24. font-size: small;
  25. }
  26. #qunit-tests li ol {
  27. margin-top: 0.5em;
  28. padding: 0.5em;
  29. background-color: #fff;
  30. -moz-box-shadow: inset 0px 1px 8px #ccc;
  31. -webkit-box-shadow: inset 0px 1px 8px #ccc;
  32. box-shadow: inset 0px 1px 8px #ccc;
  33. }
  34. #qunit-tests li ol,
  35. #qunit-header,
  36. #qunit-testresult {
  37. -moz-border-radius: 10px;
  38. -webkit-border-radius: 10px;
  39. border-radius: 10px;
  40. }
  41. #qunit-tests li li {
  42. border-bottom: none;
  43. margin: 0.5em;
  44. background-color: #fff;
  45. list-style-position: inside;
  46. padding: 0.4em 0.5em;
  47. }
  48. #qunit-tests li li.pass {
  49. border-left: 26px solid #0a0;
  50. background-color: #fff;
  51. color: #0a0;
  52. }
  53. #qunit-tests li li.fail {
  54. border-left: 26px solid #f00;
  55. background-color: #fff;
  56. color: #f00;
  57. }
  58. #qunit-tests li.pass,
  59. h3,
  60. p {
  61. color: #913D00;
  62. background-color: #FDEBDC;
  63. }
  64. h3,
  65. p {
  66. font-size: small;
  67. padding: 0.4em 0.5em 0.4em 2.5em;
  68. border-bottom: 1px solid #fff;
  69. }
  70. h3 a,
  71. p a {
  72. color: #FF7F00;
  73. }
  74. h3 a:hover,
  75. p a:hover {
  76. color: #000;
  77. }
  78. #qunit-tests li.fail {
  79. background-color: #f99;
  80. color: #000;
  81. }
  82. #qunit-tests li strong {
  83. cursor: pointer;
  84. }
  85. #qunit-header {
  86. color: #fff;
  87. background-color: #FF7F00;
  88. margin: 0;
  89. padding: 0.5em 2em;
  90. -moz-border-radius-bottomright: 0;
  91. -moz-border-radius-bottomleft: 0;
  92. -webkit-border-bottom-right-radius: 0;
  93. -webkit-border-bottom-left-radius: 0;
  94. border-bottom-right-radius: 0;
  95. border-bottom-left-radius: 0;
  96. }
  97. #qunit-header h1 {
  98. float: left;
  99. margin: 0;
  100. padding: 0;
  101. line-height: 2em;
  102. font-size: x-large;
  103. }
  104. #qunit-header small {
  105. float: right;
  106. font-weight: 700;
  107. line-height: 3.5em;
  108. }
  109. #qunit-header a {
  110. color: #fff;
  111. }
  112. #qunit-header a:hover {
  113. color: #000;
  114. }
  115. /* Added span inside #qunit-banner to work around IE6 #id.class bug */
  116. #qunit-banner span {
  117. display: block;
  118. height: 5px;
  119. _overflow: hidden;
  120. }
  121. #qunit-banner.qunit-pass span {
  122. background-color: #0a0;
  123. }
  124. #qunit-banner.qunit-fail span,
  125. #qunit-testrunner-toolbar {
  126. background-color: #f99;
  127. }
  128. #qunit-testrunner-toolbar {
  129. padding: 0;
  130. /*width: 80%;*/
  131. padding: 0em 0 0.5em 2em;
  132. font-size: small;
  133. }
  134. #qunit-userAgent {
  135. background-color: #913D00;
  136. color: #fff;
  137. font-size: small;
  138. padding: 0.5em 0 0.5em 2.5em;
  139. }
  140. #qunit-testresult {
  141. margin: 0;
  142. font-size: small;
  143. color: #913D00;
  144. background-color: #FDEBDC;
  145. padding: 0.5em 0.5em 0.5em 2.5em;
  146. -moz-border-radius-topright: 0;
  147. -moz-border-radius-topleft: 0;
  148. -webkit-border-top-right-radius: 0;
  149. -webkit-border-top-left-radius: 0;
  150. border-top-right-radius: 0;
  151. border-top-left-radius: 0;
  152. }
  153. strong b.fail {
  154. color: #f00;
  155. }
  156. strong b.pass {
  157. color: #0a0;
  158. }