• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1body {
2  font-family: Verdana, Helvetica, sans-serif;
3  width: 600px;
4  padding: 0px;
5  color: #444;
6}
7h1 {
8  background-color: #EEE;
9  color: #444;
10  font-size: 14pt;
11  font-style: italic;
12  margin: 0px;
13  padding: 5px;
14}
15h2 {
16  background-color: #AAA;
17  color: white;
18  font-weight: bold;
19  font-size: 9pt;
20  margin: 0px;
21  padding: 5px;
22}
23ul {
24  margin: 0px;
25  padding: 0px;
26  list-style: none;
27}
28li {
29  padding: 5px;
30}
31table {
32  border-spacing: 0px;
33}
34th {
35  background-color: #AAA;
36  color: white;
37  padding: 5px;
38  width: 100px;
39  font-size: 9pt;
40}
41td {
42  text-align: center;
43}
44tr:hover, li:hover {
45  background-color: #EEE;
46}
47
48.status-group {
49  font-size: 90%;
50}
51
52.status-bug {
53  font-weight: bold;
54}
55
56.status-group ul {
57  font-size: 90%;
58}
59
60.status-group ul li {
61  padding: 2px 0 2px 7px;
62  overflow: hidden;
63}
64
65.status-group ul li:hover {
66  background: #ddd;
67}
68
69.status-date {
70  color: #AAA;
71  float: right;
72  font-size: 8pt;
73}
74
75.status-cell {
76  margin: 1px;
77  padding: 1px 2px;
78  font-size: 9pt;
79  border: 1px solid transparent;
80}
81.status-cell:hover {
82  border: 1px solid black;
83}
84.status-cell.pass {
85  background-color: #8FDF5F;
86  cursor: pointer;
87  /* border: 1px solid #4F8530; */
88}
89.status-cell.fail {
90  background-color: #E98080;
91  cursor: pointer;
92  /* border: 1px solid #A77272; */
93}
94.status-cell.pending {
95  background-color: #FFFC6C;
96  cursor: pointer;
97  /* border: 1px solid #C5C56D; */
98}
99.status-cell.error {
100  background-color: #E0B0FF;
101  cursor: pointer;
102  /* border: 1px solid #ACA0B3; */
103}
104