simpletest.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* Test Table */
  2. #simpletest-form-table th.select-all {
  3. width: 1em;
  4. }
  5. th.simpletest_test {
  6. width: 16em;
  7. }
  8. .simpletest-image {
  9. display: inline-block;
  10. cursor: pointer;
  11. width: 1em;
  12. }
  13. .simpletest-group-label label {
  14. display: inline;
  15. font-weight: bold;
  16. }
  17. .simpletest-test-label label {
  18. margin-left: 1em; /* LTR */
  19. }
  20. .simpletest-test-description .description {
  21. margin: 0;
  22. }
  23. #simpletest-form-table tr td {
  24. background-color: white;
  25. color: #494949;
  26. }
  27. #simpletest-form-table tr.simpletest-group td {
  28. background-color: #EDF5FA;
  29. color: #494949;
  30. }
  31. table#simpletest-form-table tr.simpletest-group label {
  32. display: inline;
  33. }
  34. div.message > div.item-list {
  35. font-weight: normal;
  36. }
  37. div.simpletest-pass {
  38. color: #33a333;
  39. }
  40. .simpletest-fail {
  41. color: #981010;
  42. }
  43. tr.simpletest-pass.odd {
  44. background-color: #b6ffb6;
  45. }
  46. tr.simpletest-pass.even {
  47. background-color: #9bff9b;
  48. }
  49. tr.simpletest-fail.odd {
  50. background-color: #ffc9c9;
  51. }
  52. tr.simpletest-fail.even {
  53. background-color: #ffacac;
  54. }
  55. tr.simpletest-exception.odd {
  56. background-color: #f4ea71;
  57. }
  58. tr.simpletest-exception.even {
  59. background-color: #f5e742;
  60. }
  61. tr.simpletest-debug.odd {
  62. background-color: #eee;
  63. }
  64. tr.simpletest-debug.even {
  65. background-color: #fff;
  66. }
  67. a.simpletest-collapse {
  68. height: 0;
  69. width: 0;
  70. top: -99em;
  71. position: absolute;
  72. }
  73. a.simpletest-collapse:focus,
  74. a.simpletest-collapse:hover {
  75. font-size: 80%;
  76. top: 0px;
  77. height: auto;
  78. width: auto;
  79. overflow: visible;
  80. position: relative;
  81. z-index: 1000;
  82. }