Anders and Briegel in Python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

300 lines
5.1KB

  1. /*!
  2. * QUnit 1.23.1
  3. * https://qunitjs.com/
  4. *
  5. * Copyright jQuery Foundation and other contributors
  6. * Released under the MIT license
  7. * https://jquery.org/license
  8. *
  9. * Date: 2016-04-12T17:29Z
  10. */
  11. /** Font Family and Sizes */
  12. #qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-filteredTest, #qunit-userAgent, #qunit-testresult {
  13. font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
  14. }
  15. #qunit-testrunner-toolbar, #qunit-filteredTest, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
  16. #qunit-tests { font-size: smaller; }
  17. /** Resets */
  18. #qunit-tests, #qunit-header, #qunit-banner, #qunit-filteredTest, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {
  19. margin: 0;
  20. padding: 0;
  21. }
  22. /** Header */
  23. #qunit-header {
  24. padding: 0.5em 0 0.5em 1em;
  25. color: #FFFFFF;
  26. background-color: #000000;
  27. font-size: 1.5em;
  28. line-height: 1em;
  29. font-weight: 400;
  30. }
  31. #qunit-header a {
  32. text-decoration: none;
  33. color: #FFFFFF;
  34. }
  35. #qunit-header a:hover,
  36. #qunit-header a:focus {
  37. color: #FFF;
  38. }
  39. #qunit-testrunner-toolbar label {
  40. display: inline-block;
  41. padding: 0 0.5em 0 0.1em;
  42. }
  43. #qunit-banner {
  44. height: 5px;
  45. }
  46. #qunit-testrunner-toolbar {
  47. padding: 0.5em 1em 0.5em 1em;
  48. color: #5E740B;
  49. background-color: #EEE;
  50. overflow: hidden;
  51. }
  52. #qunit-filteredTest {
  53. padding: 0.5em 1em 0.5em 1em;
  54. background-color: #F4FF77;
  55. color: #366097;
  56. }
  57. #qunit-userAgent {
  58. padding: 0.5em 1em 0.5em 1em;
  59. background-color: #000000;
  60. color: #FFF;
  61. }
  62. #qunit-modulefilter-container {
  63. float: right;
  64. padding: 0.2em;
  65. }
  66. .qunit-url-config {
  67. display: inline-block;
  68. padding: 0.1em;
  69. }
  70. .qunit-filter {
  71. display: block;
  72. float: right;
  73. margin-left: 1em;
  74. }
  75. /** Tests: Pass/Fail */
  76. #qunit-tests {
  77. list-style-position: inside;
  78. }
  79. #qunit-tests li {
  80. padding: 0.4em 1em 0.4em 1em;
  81. border-bottom: 1px solid #FFF;
  82. list-style-position: inside;
  83. }
  84. #qunit-tests > li {
  85. display: none;
  86. }
  87. #qunit-tests li.running,
  88. #qunit-tests li.pass,
  89. #qunit-tests li.fail,
  90. #qunit-tests li.skipped {
  91. display: list-item;
  92. }
  93. #qunit-tests.hidepass {
  94. position: relative;
  95. }
  96. #qunit-tests.hidepass li.running,
  97. #qunit-tests.hidepass li.pass {
  98. visibility: hidden;
  99. position: absolute;
  100. width: 0;
  101. height: 0;
  102. padding: 0;
  103. border: 0;
  104. margin: 0;
  105. }
  106. #qunit-tests li strong {
  107. cursor: pointer;
  108. }
  109. #qunit-tests li.skipped strong {
  110. cursor: default;
  111. }
  112. #qunit-tests li a {
  113. padding: 0.5em;
  114. color: #C2CCD1;
  115. text-decoration: none;
  116. }
  117. #qunit-tests li p a {
  118. padding: 0.25em;
  119. color: #6B6464;
  120. }
  121. #qunit-tests li a:hover,
  122. #qunit-tests li a:focus {
  123. color: #000;
  124. }
  125. #qunit-tests li .runtime {
  126. float: right;
  127. font-size: smaller;
  128. }
  129. .qunit-assert-list {
  130. margin-top: 0.5em;
  131. padding: 0.5em;
  132. background-color: #FFF;
  133. }
  134. .qunit-source {
  135. margin: 0.6em 0 0.3em;
  136. }
  137. .qunit-collapsed {
  138. display: none;
  139. }
  140. #qunit-tests table {
  141. border-collapse: collapse;
  142. margin-top: 0.2em;
  143. }
  144. #qunit-tests th {
  145. text-align: right;
  146. vertical-align: top;
  147. padding: 0 0.5em 0 0;
  148. }
  149. #qunit-tests td {
  150. vertical-align: top;
  151. }
  152. #qunit-tests pre {
  153. margin: 0;
  154. white-space: pre-wrap;
  155. word-wrap: break-word;
  156. }
  157. #qunit-tests del {
  158. background-color: #E0F2BE;
  159. color: #374E0C;
  160. text-decoration: none;
  161. }
  162. #qunit-tests ins {
  163. background-color: #FFCACA;
  164. color: #500;
  165. text-decoration: none;
  166. }
  167. /*** Test Counts */
  168. #qunit-tests b.counts { color: #000; }
  169. #qunit-tests b.passed { color: #5E740B; }
  170. #qunit-tests b.failed { color: #710909; }
  171. #qunit-tests li li {
  172. padding: 5px;
  173. background-color: #FFF;
  174. border-bottom: none;
  175. list-style-position: inside;
  176. }
  177. /*** Passing Styles */
  178. #qunit-tests li li.pass {
  179. color: #3C510C;
  180. background-color: #FFF;
  181. border-left: 10px solid #C6E746;
  182. }
  183. #qunit-tests .pass { color: #528CE0; background-color: #D2E0E6; }
  184. #qunit-tests .pass .test-name { color: #366097; }
  185. #qunit-tests .pass .test-actual,
  186. #qunit-tests .pass .test-expected { color: #999; }
  187. #qunit-banner.qunit-pass { background-color: #C6E746; }
  188. /*** Failing Styles */
  189. #qunit-tests li li.fail {
  190. color: #710909;
  191. background-color: #FFF;
  192. border-left: 10px solid #EE5757;
  193. white-space: pre;
  194. }
  195. #qunit-tests .fail { color: #000; background-color: #EE5757; }
  196. #qunit-tests .fail .test-name,
  197. #qunit-tests .fail .module-name { color: #000; }
  198. #qunit-tests .fail .test-actual { color: #EE5757; }
  199. #qunit-tests .fail .test-expected { color: #008000; }
  200. #qunit-banner.qunit-fail { background-color: #EE5757; }
  201. /*** Skipped tests */
  202. #qunit-tests .skipped {
  203. background-color: #EBECE9;
  204. }
  205. #qunit-tests .qunit-skipped-label {
  206. background-color: #F4FF77;
  207. display: inline-block;
  208. font-style: normal;
  209. color: #366097;
  210. line-height: 1.8em;
  211. padding: 0 0.5em;
  212. margin: -0.4em 0.4em -0.4em 0;
  213. }
  214. /** Result */
  215. #qunit-testresult {
  216. padding: 0.5em 1em 0.5em 1em;
  217. color: #2B81AF;
  218. background-color: #D2E0E6;
  219. border-bottom: 1px solid #FFF;
  220. }
  221. #qunit-testresult .module-name {
  222. font-weight: 700;
  223. }
  224. /** Fixture */
  225. #qunit-fixture {
  226. position: absolute;
  227. top: -10000px;
  228. left: -10000px;
  229. width: 1000px;
  230. height: 1000px;
  231. }