jasmine.css 2.1 KB

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