testng-reports1.css 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. body {
  2. background-color: whitesmoke;
  3. margin: 0 0 5px 5px;
  4. }
  5. ul {
  6. margin-top: 10px;
  7. margin-left:-10px;
  8. }
  9. li {
  10. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  11. padding:5px 5px;
  12. }
  13. a {
  14. text-decoration: none;
  15. color: black;
  16. font-size: 14px;
  17. }
  18. a:hover {
  19. color:black ;
  20. text-decoration: underline;
  21. }
  22. .navigator-selected {
  23. /* #ffa500; Mouse hover color after click Orange.*/
  24. background:#027368
  25. }
  26. .wrapper {
  27. position: absolute;
  28. top: 60px;
  29. bottom: 0;
  30. left: 400px;
  31. right: 0;
  32. margin-right:9px;
  33. overflow: auto;/*imortant*/
  34. }
  35. .navigator-root {
  36. position: absolute;
  37. top: 60px;
  38. bottom: 0;
  39. left: 0;
  40. width: 400px;
  41. overflow-y: auto;/*important*/
  42. }
  43. .suite {
  44. margin: -5px 10px 10px 5px;
  45. background-color: whitesmoke ;/*Colour of the left bside box*/
  46. }
  47. .suite-name {
  48. font-size: 24px;
  49. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;/*All TEST SUITE*/
  50. color: white;
  51. }
  52. .main-panel-header {
  53. padding: 5px;
  54. background-color: #027368; /*afeeee*/;
  55. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  56. color:white;
  57. font-size: 18px;
  58. }
  59. .main-panel-content {
  60. padding: 5px;
  61. margin-bottom: 10px;
  62. background-color: #CCD0D1; /*d0ffff*/; /*Belongs to backGround of rightSide boxes*/
  63. }
  64. .rounded-window {
  65. border-style: dotted;
  66. border-width: 1px;/*Border of left Side box*/
  67. background-color: whitesmoke;
  68. border-radius: 10px;
  69. }
  70. .rounded-window-top {
  71. border-top-right-radius: 10px 10px;
  72. border-top-left-radius: 10px 10px;
  73. border-style: solid;
  74. border-width: 1px;
  75. overflow: auto;/*Top of RightSide box*/
  76. }
  77. .light-rounded-window-top {
  78. background-color: #027368;
  79. padding-left:120px;
  80. border-radius: 10px;
  81. }
  82. .rounded-window-bottom {
  83. border-bottom-right-radius: 10px 10px;
  84. border-bottom-left-radius: 10px 10px;
  85. overflow: auto;/*Bottom of rightSide box*/
  86. }
  87. .method-name {
  88. font-size: 14px;
  89. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  90. font-weight: bold;
  91. }
  92. .method-content {
  93. border-style: solid;
  94. border-width: 0 0 1px 0;
  95. margin-bottom: 10px;
  96. padding-bottom: 5px;
  97. width: 100%;
  98. }
  99. .parameters {
  100. font-size: 14px;
  101. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  102. }
  103. .stack-trace {
  104. white-space: pre;
  105. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  106. font-size: 12px;
  107. font-weight: bold;
  108. margin-top: 0;
  109. margin-left: 20px; /*Error Stack Trace Message*/
  110. }
  111. .testng-xml {
  112. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  113. }
  114. .method-list-content {
  115. margin-left: 10px;
  116. }
  117. .navigator-suite-content {
  118. margin-left: 10px;
  119. font: 12px 'Lucida Grande';
  120. }
  121. .suite-section-title {
  122. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  123. font-size: 14px;
  124. font-weight:bold;
  125. background-color: #8C8887;
  126. margin-left: -10px;
  127. margin-top:10px;
  128. padding:6px;
  129. }
  130. .suite-section-content {
  131. list-style-image: url(bullet_point.png);
  132. background-color: whitesmoke;
  133. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  134. overflow: hidden;
  135. }
  136. .top-banner-root {
  137. position: absolute;
  138. top: 0;
  139. height: 45px;
  140. left: 0;
  141. right: 0;
  142. padding: 5px;
  143. margin: 0 0 5px 0;
  144. background-color: #027368;
  145. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  146. font-size: 18px;
  147. color: #fff;
  148. text-align: center;/*Belongs to the Top of Report*//*Status: - Completed*/
  149. }
  150. .top-banner-title-font {
  151. font-size: 25px;
  152. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  153. padding: 3px;
  154. float: right;
  155. }
  156. .test-name {
  157. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  158. font-size: 16px;
  159. }
  160. .suite-icon {
  161. padding: 5px;
  162. float: right;
  163. height: 20px;
  164. }
  165. .test-group {
  166. font: 20px 'Lucida Grande';
  167. margin: 5px 5px 10px 5px;
  168. border-width: 0 0 1px 0;
  169. border-style: solid;
  170. padding: 5px;
  171. }
  172. .test-group-name {
  173. font-weight: bold;
  174. }
  175. .method-in-group {
  176. font-size: 16px;
  177. margin-left: 80px;
  178. }
  179. table.google-visualization-table-table {
  180. width: 100%;
  181. }
  182. .reporter-method-name {
  183. font-size: 14px;
  184. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  185. }
  186. .reporter-method-output-div {
  187. padding: 5px;
  188. margin: 0 0 5px 20px;
  189. font-size: 12px;
  190. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  191. border-width: 0 0 0 1px;
  192. border-style: solid;
  193. }
  194. .ignored-class-div {
  195. font-size: 14px;
  196. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  197. }
  198. .ignored-methods-div {
  199. padding: 5px;
  200. margin: 0 0 5px 20px;
  201. font-size: 12px;
  202. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  203. border-width: 0 0 0 1px;
  204. border-style: solid;
  205. }
  206. .border-failed {
  207. border-radius:2px;
  208. border-style: solid;
  209. border-width: 0 0 0 10px;
  210. border-color: #F20505;
  211. }
  212. .border-skipped {
  213. border-radius:2px;
  214. border-style: solid;
  215. border-width: 0 0 0 10px;
  216. border-color: #F2BE22;
  217. }
  218. .border-passed {
  219. border-radius:2px;
  220. border-style: solid;
  221. border-width: 0 0 0 10px;
  222. border-color: #038C73;
  223. }
  224. .times-div {
  225. text-align: center;
  226. padding: 5px;
  227. }
  228. .suite-total-time {
  229. font: 16px 'Lucida Grande';
  230. }
  231. .configuration-suite {
  232. margin-left: 20px;
  233. }
  234. .configuration-test {
  235. margin-left: 40px;
  236. }
  237. .configuration-class {
  238. margin-left: 60px;
  239. }
  240. .configuration-method {
  241. margin-left: 80px;
  242. }
  243. .test-method {
  244. margin-left: 100px;
  245. }
  246. .chronological-class {
  247. background-color: #CCD0D1;
  248. border-width: 0 0 1px 1px;/*Chronological*/
  249. }
  250. .method-start {
  251. float: right;
  252. }
  253. .chronological-class-name {
  254. padding: 0 0 0 5px;
  255. margin-top:5px;
  256. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  257. color: #008;
  258. }
  259. .after, .before, .test-method {
  260. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  261. font-size: 14px;
  262. margin-top:5px;
  263. }
  264. .navigator-suite-header {
  265. font-size: 18px;
  266. margin: 0px 10px 10px 5px;
  267. padding: 5px;
  268. border-radius: 10px;
  269. background-color: #027368;
  270. color: white;
  271. font-weight:bold;
  272. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  273. text-align: center; /*All Suites on top of left box*//*Status: -Completed*/
  274. }
  275. .collapse-all-icon {
  276. padding: 3px;
  277. float: right;
  278. }
  279. .button{
  280. position: absolute;
  281. margin-left:500px;
  282. margin-top:8px;
  283. background-color: white;
  284. color:#027368;
  285. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  286. font-weight:bold;
  287. border-color:#027368;
  288. border-radius:25px;
  289. cursor: pointer;
  290. height:30px;
  291. width:150px;
  292. outline: none;
  293. }
  294. /*Author: - Akhil Gullapalli*/