You are here

simpletest.css in SimpleTest 6

Same filename and directory in other branches
  1. 5 simpletest.css
  2. 6.2 simpletest.css
  3. 7.2 simpletest.css
  4. 7 simpletest.css
/* Addon for the simpletest module */
#simpletest {
}
div.simpletest-pass {
  background: #b6ffb6;
}

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

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

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

File

simpletest.css
View source
  1. /* Addon for the simpletest module */
  2. #simpletest {
  3. }
  4. div.simpletest-pass {
  5. background: #b6ffb6;
  6. }
  7. div.simpletest-fail {
  8. background: #ffc9c9;
  9. }
  10. tr.simpletest-pass.odd {
  11. background: #b6ffb6;
  12. }
  13. tr.simpletest-pass.even {
  14. background: #9bff9b;
  15. }
  16. tr.simpletest-fail.odd {
  17. background: #ffc9c9;
  18. }
  19. tr.simpletest-fail.even {
  20. background: #ffacac;
  21. }