reporter.css 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. body {
  2. font-size: 12px;
  3. font-family: "Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, sans-serif;
  4. font-weight: normal;
  5. text-rendering: optimizeLegibility;
  6. -webkit-font-smoothing: antialiased;
  7. margin:0;
  8. padding:0;
  9. }
  10. .treegrid {
  11. margin: 0;
  12. color: #2e3436;
  13. background-color: #ffffff;
  14. padding: 5px 10px 5px 10px;
  15. }
  16. .treegrid .logo {
  17. background: url(images/logo-sencha.png) no-repeat left top;
  18. height: 26px;
  19. font-size: 16px;
  20. padding-top: 4px;
  21. padding-left: 28px;
  22. font-weight: bold;
  23. }
  24. .treegrid .toolBar {
  25. height: 28px;
  26. line-height: 28px;
  27. font-size: 12px;
  28. }
  29. .treegrid .tbody {
  30. background-color: #ffffff;
  31. border: 1px solid #babdb6;
  32. overflow: auto;
  33. }
  34. .treegrid .tabpanel {
  35. height: 280px;
  36. }
  37. .treegrid .resizer {
  38. cursor: row-resize;
  39. text-align: center;
  40. height: 10px;
  41. font-size: 9px;
  42. }
  43. .treegrid .row {
  44. line-height: 19px;
  45. *line-height: 20px;
  46. zoom: 1;
  47. }
  48. .treegrid .statusMessage {
  49. background-color: #ffffff;
  50. height: 20px;
  51. line-height: 20px;
  52. font-size: 12px;
  53. padding-left: 5px;
  54. font-weight: bold;
  55. border: 1px solid #babdb6;
  56. }
  57. .treegrid .statusMessage.failed {
  58. background-color: red;
  59. color: #ffffff;
  60. }
  61. .treegrid .statusMessage.passed {
  62. background-color: green;
  63. color: #ffffff;
  64. }
  65. .treegrid .toolBar .options {
  66. color: #666;
  67. font-size: 10px;
  68. }
  69. .treegrid .toolBar .actionLink {
  70. margin-left: 10px;
  71. text-decoration: underline;
  72. cursor: pointer;
  73. }
  74. .noexpand, .expand, .collapse {
  75. float: left;
  76. width: 16px;
  77. height: 16px;
  78. margin-top: 1px;
  79. }
  80. .expand {
  81. background: url(images/arrows.gif) no-repeat left center;
  82. background-position: -32px 0;
  83. }
  84. .collapse {
  85. background: url(images/arrows.gif) no-repeat left center;
  86. background-position: -48px 0;
  87. }
  88. .checkbox-col {
  89. float: left;
  90. }
  91. .row .spec, .row .suite {
  92. color: white;
  93. font-size: 13px;
  94. }
  95. .row.selected {
  96. opacity: 0.80;
  97. -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  98. filter: alpha(opacity=80);
  99. }
  100. .row {
  101. background-color: #cc610a;
  102. }
  103. .row.failed {
  104. background-color: red;
  105. }
  106. .row.passed {
  107. background-color: green;
  108. }
  109. .row.disabled {
  110. background-color: grey;
  111. }
  112. div.results {
  113. margin: 0 20px 0 20px;
  114. background: #ffffff;
  115. color: #000000;
  116. font-size: 11px;
  117. line-height: 16px;
  118. }
  119. .spec {
  120. padding-bottom: 5px;
  121. }
  122. .tabpanel .toolBar {
  123. height: 30px;
  124. padding-bottom: 10px;
  125. }
  126. .infos .infoMessage {
  127. padding: 5px 5px 5px 5px;
  128. border-bottom: 1px solid #eeeeec;
  129. }
  130. .infos .infoMessage.warning {
  131. color: red;
  132. }
  133. .resultMessage {
  134. white-space: pre;
  135. padding: 5px 5px 5px 5px;
  136. border-top: 1px solid #eeeeec;
  137. }
  138. .resultMessage.pass {
  139. color: green;
  140. }
  141. .resultMessage.fail {
  142. color: red;
  143. }
  144. .resultMessage.first {
  145. border: none;
  146. }
  147. .suite .description, .spec .description {
  148. display: block;
  149. }
  150. .warning .description {
  151. background: url(images/warning.png) no-repeat left center;
  152. }
  153. div.blockTitle {
  154. background-position: left 0;
  155. background-repeat: no-repeat;
  156. padding-left: 30px;
  157. padding-bottom: 2px;
  158. margin: 6px;
  159. }
  160. .blocks div.specSources {
  161. background-image: url(images/spec_sources.png);
  162. }
  163. .blocks div.beforeEach {
  164. background-image: url(images/before_each.png);
  165. }
  166. .blocks div.afterEach {
  167. background-image: url(images/after_each.png);
  168. }
  169. .tabpanel .toolBar span {
  170. height: 30px;
  171. line-height: 30px;
  172. padding: 6px 20px 7px 30px;
  173. background-position: 5px 50%;
  174. background-repeat: no-repeat;
  175. border: 1px solid #babdb6;
  176. background-color: #eeeeec;
  177. margin-right: 10px;
  178. }
  179. .expand:hover, .collapse:hover, .tabpanel .toolBar span:hover,
  180. div.inspectStackTrace:hover {
  181. cursor: pointer;
  182. }
  183. .tabpanel .toolBar span.selected {
  184. background-color: #fff;
  185. }
  186. .tabpanel .toolBar span.infos {
  187. border-left: 1px solid #babdb6;
  188. background-image: url(images/infos.png);
  189. }
  190. .tabpanel .toolBar span.blocks {
  191. background-image: url(images/block.png);
  192. }
  193. .tabpanel .toolBar span.stackTrace {
  194. background-image: url(images/stack_trace.png);
  195. }
  196. .tabpanel .toolBar span.sandbox {
  197. background-image: url(images/dom_sandbox.png);
  198. }
  199. .tabpanel .toolBar span.jsCoverage {
  200. background-image: url(images/jscoverage.png);
  201. }
  202. .tabpanel .toolBar span.jsCoverageSummary {
  203. background-image: url(images/jscoverage-summary.png);
  204. }
  205. .panels {
  206. background: #ffffff;
  207. height: 241px;
  208. border: 1px solid #babdb6;
  209. overflow: auto;
  210. }
  211. .panel {
  212. height: 100%;
  213. }
  214. .panels .hideMe {
  215. position: absolute;
  216. left: -50000px;
  217. top: -50000px;
  218. }
  219. .prettyPrint {
  220. white-space: pre;
  221. word-wrap: break-word;
  222. margin: 0;
  223. }
  224. .panel .sources {
  225. font-size: 12px;
  226. font-weight: bold;
  227. color: #fff;
  228. font-family: monospace;
  229. background-color: #2e3436;
  230. border: 1px solid #babdb6;
  231. margin: 5px;
  232. overflow: auto;
  233. }
  234. .stackTrace .sources {
  235. height: 250px;
  236. }
  237. .panels .lineNumbers, .panels .lineBackground {
  238. margin: 0;
  239. width: 50px;
  240. }
  241. .panels .lineNumbers .lineNumber {
  242. background-color: #fce94f;
  243. color: #2e3436;
  244. width: 40px;
  245. text-align: right;
  246. padding-right: 5px;
  247. }
  248. .panels .lineNumbers .lineNumberRed {
  249. background-color: #cc0000;
  250. }
  251. .panels .lineNumbers .lineNumberGreen {
  252. background-color: #4E9A06;
  253. }
  254. .panels .code {
  255. white-space: pre;
  256. margin: 0;
  257. }
  258. .panels .lineNumber.error {
  259. background-color: #cc0000;
  260. }
  261. .stackTraceLine .fileName {
  262. background: url(images/file.png) no-repeat left 0;
  263. color: #2e3436;
  264. padding-left: 20px;
  265. margin: 5px;
  266. }
  267. div.inspectStackTrace {
  268. color: #fce94f;
  269. font-size: 11px;
  270. text-decoration: underline;
  271. padding-bottom: 4px;
  272. }
  273. .jsHlComment, .c {
  274. color: #d3d7cf !important;
  275. }
  276. .jsHlKeyword {
  277. color: #729fcf !important;
  278. }
  279. .jsHlOperator {
  280. color: #ad7fa8 !important;
  281. }
  282. .jsHlNumber, .t {
  283. color: #edd400 !important;
  284. }
  285. .jsHlString, .s {
  286. color: #fce94f !important;
  287. }
  288. .sources table td {
  289. vertical-align: top;
  290. }
  291. .jsCoverageSummary table {
  292. width: 100%;
  293. }
  294. .jsCoverageSummary table.summary td {
  295. padding: 5px;
  296. border-bottom: 1px solid #babdb6;
  297. }
  298. .jsCoverageSummary table td.percentage {
  299. width: 350px;
  300. }
  301. .jsCoverageSummary .line.header {
  302. background-color: #eeeeec;
  303. font-weight: bold;
  304. }
  305. .jsCoverageSummary .line.total {
  306. font-weight: bold;
  307. }
  308. .jsCoverageSummary .percentage .limit {
  309. height: 18px;
  310. border: 1px solid green;
  311. }
  312. .jsCoverageSummary .percentage .result {
  313. height: 18px;
  314. background-color: green;
  315. }
  316. .jsCoverageSummary .fileName a {
  317. text-decoration: underline;
  318. }
  319. .jsCoverageSummary .back {
  320. padding-left: 5px;
  321. text-decoration: underline;
  322. font-size: 12px;
  323. }
  324. .sandboxIframe {
  325. border: 0 none;
  326. height: 1800px;
  327. width: 1800px;
  328. background: url(images/iframe-bg.png) repeat;
  329. }