You are here

simpletest.module.css in SimpleTest 8.3

/* Test Table */
#simpletest-form-table th.select-all {
  width: 1em;
}
th.simpletest-test-label {
  width: 40%;
}

.simpletest-image {
  display: inline-block;
  width: 1em;
  cursor: pointer;
}
.simpletest-group-label label {
  display: inline;
  font-weight: bold;
}
.simpletest-test-label label {
  margin-left: 1em; /* LTR */
}
.simpletest-test-description .description {
  margin: 0;
}
#simpletest-form-table tr td {
  color: #494949;
  background-color: white;
}
#simpletest-form-table tr.simpletest-group td {
  color: #494949;
  background-color: #edf5fa;
}

table#simpletest-form-table tr.simpletest-group label {
  display: inline;
}

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

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

tr.simpletest-pass,
tr.simpletest-pass.odd {
  background-color: #b6ffb6;
}
tr.simpletest-pass.even {
  background-color: #9bff9b;
}
tr.simpletest-fail,
tr.simpletest-fail.odd {
  background-color: #ffc9c9;
}
tr.simpletest-fail.even {
  background-color: #ffacac;
}
tr.simpletest-exception,
tr.simpletest-exception.odd {
  background-color: #f4ea71;
}
tr.simpletest-exception.even {
  background-color: #f5e742;
}
tr.simpletest-debug,
tr.simpletest-debug.odd {
  background-color: #eee;
}
tr.simpletest-debug.even {
  background-color: #fff;
}

a.simpletest-collapse {
  position: absolute;
  top: -99em;
  width: 0;
  height: 0;
}
a.simpletest-collapse:focus,
a.simpletest-collapse:hover {
  position: relative;
  z-index: 1000;
  top: 0;
  overflow: visible;
  width: auto;
  height: auto;
  font-size: 80%;
}

File

css/simpletest.module.css
View source
  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. width: 1em;
  11. cursor: pointer;
  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. color: #494949;
  25. background-color: white;
  26. }
  27. #simpletest-form-table tr.simpletest-group td {
  28. color: #494949;
  29. background-color: #edf5fa;
  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. position: absolute;
  73. top: -99em;
  74. width: 0;
  75. height: 0;
  76. }
  77. a.simpletest-collapse:focus,
  78. a.simpletest-collapse:hover {
  79. position: relative;
  80. z-index: 1000;
  81. top: 0;
  82. overflow: visible;
  83. width: auto;
  84. height: auto;
  85. font-size: 80%;
  86. }