comparison core/modules/simpletest/css/simpletest.module.css @ 0:4c8ae668cc8c

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