~zulcss/samba/server-dailies-3.4

« back to all changes in this revision

Viewing changes to selftest/output/testresults.css

  • Committer: Chuck Short
  • Date: 2010-09-28 20:38:39 UTC
  • Revision ID: zulcss@ubuntu.com-20100928203839-pgjulytsi9ue63x1
Initial version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Stylesheet for Samba test results. 
 
2
 *
 
3
 * Partially based on the CSS file from lcov.
 
4
 */
 
5
 
 
6
/* All views: main title format */
 
7
td.title
 
8
{
 
9
        text-align:     center;
 
10
        padding-bottom: 10px;
 
11
        font-family:    sans-serif;
 
12
        font-size:      20pt;
 
13
        font-style:     italic;
 
14
        font-weight:    bold;
 
15
}
 
16
 
 
17
/* Index table headers */
 
18
td.tableHead
 
19
{
 
20
        text-align:       center;
 
21
        color:            #FFFFFF;
 
22
        background-color: #6688D4;
 
23
        font-family:      sans-serif;
 
24
        font-size:        120%;
 
25
        font-weight:      bold;
 
26
}
 
27
 
 
28
/* Testsuite names */
 
29
td.testSuite
 
30
{
 
31
        text-align:       left;
 
32
        padding-left:     10px;
 
33
        padding-right:    20px; 
 
34
        color:            #284FA8;
 
35
        background-color: #DAE7FE;
 
36
        font-family:      monospace;
 
37
}
 
38
 
 
39
/* Successful */
 
40
td.resultOk
 
41
{
 
42
        text-align:       right;
 
43
        padding-left:     10px;
 
44
        padding-right:    10px;
 
45
        background-color: #A7FC9D;
 
46
        font-weight:      bold;
 
47
}
 
48
 
 
49
/* Failure */
 
50
td.resultFailure
 
51
{
 
52
        text-align:       right;
 
53
        padding-left:     10px;
 
54
        padding-right:    10px;
 
55
        background-color: #FF0000;
 
56
        font-weight:      bold;
 
57
}
 
58
 
 
59
/* Expected failure */
 
60
td.resultExpectedFailure
 
61
{
 
62
        text-align:       right;
 
63
        padding-left:     10px;
 
64
        padding-right:    10px;
 
65
        background-color: #FFA500;
 
66
        font-weight:      bold;
 
67
}
 
68
 
 
69
/* Skipped */
 
70
td.resultSkipped
 
71
{
 
72
        text-align:       center;
 
73
        padding-left:     10px;
 
74
        padding-right:    10px;
 
75
        background-color: #FFEA20;
 
76
        font-weight:      bold;
 
77
}
 
78
 
 
79
td.duration
 
80
{
 
81
        text-align: right;
 
82
}
 
83
 
 
84
td.durationSkipped
 
85
{
 
86
        text-align: right;
 
87
}
 
88
 
 
89
td.outputSkipped
 
90
{
 
91
        background-color: #FFEA20;
 
92
}
 
93
 
 
94
td.outputOk
 
95
{
 
96
        background-color: #A7FC9D;
 
97
}
 
98
 
 
99
td.outputFailure
 
100
{
 
101
        background-color: #FF0000;
 
102
}
 
103
 
 
104
td.outputExpectedFailure
 
105
{
 
106
        background-color: #FFA500;
 
107
}
 
108
 
 
109
div.reason
 
110
{
 
111
        text-align: center;
 
112
        font-weight: bold;
 
113
}
 
114
 
 
115
span.control
 
116
{
 
117
        display: none;
 
118
}
 
119
 
 
120
div.duration
 
121
{
 
122
        text-align: right;
 
123
        font-weight: bold;
 
124
}
 
125
 
 
126
div.command
 
127
{
 
128
        background-color: gray;
 
129
}