You are here

simpletest.css in SimpleTest 7

Same filename and directory in other branches
  1. 5 simpletest.css
  2. 6.2 simpletest.css
  3. 6 simpletest.css
  4. 7.2 simpletest.css
/* Addon for the simpletest module */
#simpletest {
}

/* Test Table */
#simpletest-form-table th.select-all {
  width: 25px;
}

th.simpletest_test {
  width: 160px;
}

table#simpletest-form-table tr td {
  background-color: white;
  color: #494949;
}

table#simpletest-form-table tr.simpletest-group td {
  background-color: #EDF5FA;
  color: #494949;
}

div.message > div.item-list {
  font-weight: normal;
}

div.simpletest-pass {
  color: #33a333;
}

.simpletest-fail {
  color: #981010;
}

tr.simpletest-pass.odd {
  background: #b6ffb6;
}

tr.simpletest-pass.even {
  background: #9bff9b;
}

tr.simpletest-fail.odd {
  background: #ffc9c9;
}

tr.simpletest-fail.even {
  background: #ffacac;
}

tr.simpletest-exception.odd {
  background: #f4ea71;
}

tr.simpletest-exception.even {
  background: #f5e742;
}

tr.simpletest-debug.odd {
  background: #eeeeee;
}

tr.simpletest-debug.even {
  background: #ffffff;
}

div.simpletest-image {
  display: inline;
  cursor: pointer;
}

File

simpletest.css
View source
  1. /* Addon for the simpletest module */
  2. #simpletest {
  3. }
  4. /* Test Table */
  5. #simpletest-form-table th.select-all {
  6. width: 25px;
  7. }
  8. th.simpletest_test {
  9. width: 160px;
  10. }
  11. table#simpletest-form-table tr td {
  12. background-color: white;
  13. color: #494949;
  14. }
  15. table#simpletest-form-table tr.simpletest-group td {
  16. background-color: #EDF5FA;
  17. color: #494949;
  18. }
  19. div.message > div.item-list {
  20. font-weight: normal;
  21. }
  22. div.simpletest-pass {
  23. color: #33a333;
  24. }
  25. .simpletest-fail {
  26. color: #981010;
  27. }
  28. tr.simpletest-pass.odd {
  29. background: #b6ffb6;
  30. }
  31. tr.simpletest-pass.even {
  32. background: #9bff9b;
  33. }
  34. tr.simpletest-fail.odd {
  35. background: #ffc9c9;
  36. }
  37. tr.simpletest-fail.even {
  38. background: #ffacac;
  39. }
  40. tr.simpletest-exception.odd {
  41. background: #f4ea71;
  42. }
  43. tr.simpletest-exception.even {
  44. background: #f5e742;
  45. }
  46. tr.simpletest-debug.odd {
  47. background: #eeeeee;
  48. }
  49. tr.simpletest-debug.even {
  50. background: #ffffff;
  51. }
  52. div.simpletest-image {
  53. display: inline;
  54. cursor: pointer;
  55. }