jasmine.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. visibility:hidden;
  38. text-align: right;
  39. font-size: .8em;
  40. }
  41. .suite {
  42. border: 1px outset gray;
  43. margin: 5px 0;
  44. padding-left: 1em;
  45. }
  46. .suite .suite {
  47. margin: 5px;
  48. }
  49. .suite.passed {
  50. background-color: #dfd;
  51. }
  52. .suite.failed {
  53. background-color: #fdd;
  54. }
  55. .spec {
  56. margin: 5px;
  57. padding-left: 1em;
  58. clear: both;
  59. }
  60. .spec.failed, .spec.passed, .spec.skipped {
  61. padding-bottom: 5px;
  62. border: 1px solid gray;
  63. }
  64. .spec.failed {
  65. background-color: #fbb;
  66. border-color: red;
  67. }
  68. .spec.passed {
  69. background-color: #bfb;
  70. border-color: green;
  71. }
  72. .spec.skipped {
  73. background-color: #bbb;
  74. }
  75. .messages {
  76. border-left: 1px dashed gray;
  77. padding-left: 1em;
  78. padding-right: 1em;
  79. }
  80. .passed {
  81. background-color: #cfc;
  82. display: none;
  83. }
  84. .failed {
  85. background-color: #fbb;
  86. }
  87. .skipped {
  88. color: #777;
  89. background-color: #eee;
  90. display: none;
  91. }
  92. /*.resultMessage {*/
  93. /*white-space: pre;*/
  94. /*}*/
  95. .resultMessage span.result {
  96. display: block;
  97. line-height: 2em;
  98. color: black;
  99. }
  100. .resultMessage .mismatch {
  101. color: black;
  102. }
  103. .stackTrace {
  104. white-space: pre;
  105. font-size: .8em;
  106. margin-left: 10px;
  107. max-height: 5em;
  108. overflow: auto;
  109. border: 1px inset red;
  110. padding: 1em;
  111. background: #eef;
  112. }
  113. .finished-at {
  114. padding-left: 1em;
  115. font-size: .6em;
  116. }
  117. .show-passed .passed,
  118. .show-skipped .skipped {
  119. display: block;
  120. }
  121. #jasmine_content {
  122. position:fixed;
  123. right: 100%;
  124. }
  125. .runner {
  126. border: 1px solid gray;
  127. display: block;
  128. margin: 5px 0;
  129. padding: 2px 0 2px 10px;
  130. }