test.css (502B)
1 .test_ok { 2 color: #0d0; 3 display: none; 4 } 5 6 .test_not_ok { 7 color: red; 8 display: block; 9 } 10 11 .test_todo { 12 /* color: orange; */ 13 display: block; 14 } 15 16 .test_ok, 17 .test_not_ok, 18 .test_todo { 19 border-bottom-width: 2px; 20 border-bottom-style: solid; 21 border-bottom-color: black; 22 } 23 24 .all_pass { 25 background-color: #0d0; 26 } 27 28 .some_fail { 29 background-color: red; 30 } 31 32 .todo_only { 33 background-color: orange; 34 } 35 36 .tests_report { 37 border-width: 2px; 38 border-style: solid; 39 width: 20em; 40 display: table; 41 }