simpletest.module.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* Test Table */
  2. #simpletest-form-table th.select-all {
  3. width: 1em;
  4. }
  5. th.simpletest-test-label {
  6. width: 40%;
  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,
  44. tr.simpletest-pass.odd {
  45. background-color: #b6ffb6;
  46. }
  47. tr.simpletest-pass.even {
  48. background-color: #9bff9b;
  49. }
  50. tr.simpletest-fail,
  51. tr.simpletest-fail.odd {
  52. background-color: #ffc9c9;
  53. }
  54. tr.simpletest-fail.even {
  55. background-color: #ffacac;
  56. }
  57. tr.simpletest-exception,
  58. tr.simpletest-exception.odd {
  59. background-color: #f4ea71;
  60. }
  61. tr.simpletest-exception.even {
  62. background-color: #f5e742;
  63. }
  64. tr.simpletest-debug,
  65. tr.simpletest-debug.odd {
  66. background-color: #eee;
  67. }
  68. tr.simpletest-debug.even {
  69. background-color: #fff;
  70. }
  71. a.simpletest-collapse {
  72. height: 0;
  73. width: 0;
  74. top: -99em;
  75. position: absolute;
  76. }
  77. a.simpletest-collapse:focus,
  78. a.simpletest-collapse:hover {
  79. font-size: 80%;
  80. top: 0;
  81. height: auto;
  82. width: auto;
  83. overflow: visible;
  84. position: relative;
  85. z-index: 1000;
  86. }