123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /* 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%;
- }
|