Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

169 linhas
2.1 KiB

  1. body {
  2. font-family: "Helvetica Neue Light", "Lucida Grande", "Calibri", "Arial", sans-serif;
  3. }
  4. a {
  5. text-decoration: none;
  6. }
  7. .jasmine_reporter a:visited, .jasmine_reporter a {
  8. color: #303;
  9. }
  10. .jasmine_reporter a:hover, .jasmine_reporter a:active {
  11. color: blue;
  12. }
  13. .run_spec {
  14. float:right;
  15. padding-right: 5px;
  16. font-size: .8em;
  17. text-decoration: none;
  18. }
  19. .jasmine_reporter {
  20. margin: 0 5px;
  21. }
  22. .banner {
  23. color: #303;
  24. background-color: #fef;
  25. padding: 5px;
  26. }
  27. .logo {
  28. float: left;
  29. font-size: 1.1em;
  30. padding-left: 5px;
  31. }
  32. .logo .version {
  33. font-size: .6em;
  34. padding-left: 1em;
  35. }
  36. .runner.running {
  37. background-color: yellow;
  38. }
  39. .options {
  40. text-align: right;
  41. font-size: .8em;
  42. }
  43. .suite {
  44. border: 1px outset gray;
  45. margin: 5px 0;
  46. padding-left: 1em;
  47. }
  48. .suite .suite {
  49. margin: 5px;
  50. }
  51. .suite.passed {
  52. background-color: #dfd;
  53. }
  54. .suite.failed {
  55. background-color: #fdd;
  56. }
  57. .spec {
  58. margin: 5px;
  59. padding-left: 1em;
  60. clear: both;
  61. }
  62. .spec.failed, .spec.passed, .spec.skipped {
  63. padding-bottom: 5px;
  64. border: 1px solid gray;
  65. }
  66. .spec.failed {
  67. background-color: #fbb;
  68. border-color: red;
  69. }
  70. .spec.passed {
  71. background-color: #bfb;
  72. border-color: green;
  73. }
  74. .spec.skipped {
  75. background-color: #bbb;
  76. }
  77. .messages {
  78. border-left: 1px dashed gray;
  79. padding-left: 1em;
  80. padding-right: 1em;
  81. }
  82. .passed {
  83. background-color: #cfc;
  84. display: none;
  85. }
  86. .failed {
  87. background-color: #fbb;
  88. }
  89. .skipped {
  90. color: #777;
  91. background-color: #eee;
  92. display: none;
  93. }
  94. /*.resultMessage {*/
  95. /*white-space: pre;*/
  96. /*}*/
  97. .resultMessage span.result {
  98. display: block;
  99. line-height: 2em;
  100. color: black;
  101. }
  102. .resultMessage .mismatch {
  103. color: black;
  104. }
  105. .stackTrace {
  106. white-space: pre;
  107. font-size: .8em;
  108. margin-left: 10px;
  109. max-height: 5em;
  110. overflow: auto;
  111. border: 1px inset red;
  112. padding: 1em;
  113. background: #eef;
  114. }
  115. .finished-at {
  116. padding-left: 1em;
  117. font-size: .6em;
  118. }
  119. .show-passed .passed,
  120. .show-skipped .skipped {
  121. display: block;
  122. }
  123. #jasmine_content {
  124. position:fixed;
  125. right: 100%;
  126. }
  127. .runner {
  128. border: 1px solid gray;
  129. display: block;
  130. margin: 5px 0;
  131. padding: 2px 0 2px 10px;
  132. }