Project

General

Profile

1 4307 leinfelder
/*
2
 * Copyright 2005 ThoughtWorks, Inc
3
 *
4
 *  Licensed under the Apache License, Version 2.0 (the "License");
5
 *  you may not use this file except in compliance with the License.
6
 *  You may obtain a copy of the License at
7
 *
8
 *      http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 *  Unless required by applicable law or agreed to in writing, software
11
 *  distributed under the License is distributed on an "AS IS" BASIS,
12
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 *  See the License for the specific language governing permissions and
14
 *  limitations under the License.
15
 */
16
17
/*---( Layout )---*/
18
19
* {
20
    margin: 0px;
21
    padding: 0px;
22
}
23
24
body {
25
    overflow: auto;
26
}
27
28
td {
29
    position: static;
30
}
31
32
tr {
33
    vertical-align: top;
34
}
35
36
.layout {
37
    width: 100%;
38
    height: 100%;
39
    border-collapse: collapse;
40
}
41
42
.layout td {
43
    border: 0;
44
}
45
46
iframe {
47
    border: 0px;
48
    width: 100%;
49
    height: 100%;
50
    background: white;
51
    overflow: auto;
52
}
53
54
/*---( Style )---*/
55
56
body, html {
57
    font-family: Verdana, Arial, sans-serif;
58
}
59
60
.selenium th, .selenium td {
61
    border: 1px solid #999;
62
}
63
64
.header {
65
    background: #ccc;
66
    padding: 0;
67
    font-size: 90%;
68
}
69
70
#controlPanel {
71
    padding: 0.5ex;
72
    background: #eee;
73
    overflow: auto;
74
    font-size: 75%;
75
    text-align: center;
76
}
77
78
#controlPanel fieldset {
79
    margin: 0.3ex;
80
    padding: 0.3ex;
81
}
82
83
#controlPanel fieldset legend {
84
    color: black;
85
}
86
87
#controlPanel button {
88
    margin: 0.5ex;
89
}
90
91
#imageButtonPanel button {
92
    width: 24px;
93
    height: 20px;
94
    background-color:white;
95
    background-repeat: no-repeat;
96
    background-position: center;
97
    border-style: solid;
98
    border-color: black;
99
    border-width: 1px;
100
}
101
102
#controlPanel #runSuite {
103
    width: 32px;
104
    background-image: url("icons/all.png");
105
}
106
107
#controlPanel #runSeleniumTest {
108
    width: 32px;
109
    background-image: url("icons/selected.png");
110
}
111
112
.cssPauseTest {
113
    background-image: url("icons/pause.png");
114
}
115
116
.cssPauseTest[disabled]  {
117
    background-image: url("icons/pause_disabled.png");
118
}
119
120
.cssContinueTest {
121
    background-image: url("icons/continue.png");
122
}
123
124
.cssContinueTest[disabled] {
125
    background-image: url("icons/continue_disabled.png");
126
}
127
128
#controlPanel #stepTest {
129
    background-image: url("icons/step.png");
130
}
131
132
#controlPanel #stepTest[disabled] {
133
    background-image: url("icons/step_disabled.png");
134
}
135
136
#controlPanel table {
137
    font-size: 100%;
138
}
139
140
#controlPanel th, #controlPanel td {
141
    border: 0;
142
}
143
144
h1 {
145
    margin: 0.2ex;
146
    font-size: 130%;
147
    font-weight: bold;
148
}
149
150
h2 {
151
    margin: 0.2ex;
152
    font-size: 80%;
153
    font-weight: normal;
154
}
155
156
.selenium a {
157
    color: black;
158
    text-decoration: none;
159
}
160
161
.selenium a:hover {
162
    text-decoration: underline;
163
}
164
165
button, label {
166
    cursor: pointer;
167
}
168
169
#stats {
170
    margin: 0.5em auto 0.5em auto;
171
}
172
173
#stats th, #stats td {
174
    text-align: left;
175
    padding-left: 2px;
176
}
177
178
#stats th {
179
    text-decoration: underline;
180
}
181
182
#stats td.count {
183
    font-weight: bold;
184
    text-align: right;
185
}
186
187
#testRuns {
188
    color: green;
189
}
190
191
#testFailures {
192
    color: red;
193
}
194
195
#commandPasses {
196
    color: green;
197
}
198
199
#commandFailures {
200
    color: red;
201
}
202
203
#commandErrors {
204
    color: #f90;
205
}
206
207
208
/*---( Logging Console )---*/
209
210
#logging-console {
211
    background: #fff;
212
    font-size: 75%;
213
}
214
215
#logging-console #banner {
216
    display: block;
217
    width: 100%;
218
    position: fixed;
219
    top: 0;
220
    background: #ddd;
221
    border-bottom: 1px solid #666;
222
}
223
224
#logging-console #logLevelChooser {
225
    float: right;
226
    margin: 3px;
227
}
228
229
#logging-console ul {
230
    list-style-type: none;
231
    margin: 0px;
232
    margin-top: 3em;
233
    padding-left: 5px;
234
}
235
236
#logging-console li {
237
    margin: 2px;
238
    border-top: 1px solid #ccc;
239
}
240
241
#logging-console li.error {
242
    font-weight: bold;
243
    color: red;
244
}
245
246
#logging-console li.warn {
247
    color: red;
248
}
249
250
#logging-console li.debug {
251
    color: green;
252
}
253
254
div.executionOptions {
255
    padding-left: 5em;
256
}
257
258
div.executionOptions label, div.executionOptions input {
259
    display: block;
260
    float: left;
261
}
262
263
div.executionOptions br {
264
    clear: left;
265
}
266
267
#speedSlider {
268
    text-align: left;
269
    margin: 0px auto;
270
    width: 260px;
271
    line-height: 0px;
272
    font-size: 0px;
273
    padding: 0px;
274
}
275
276
#speedSlider #speedTrack {
277
    background-color: #333;
278
    width: 260px;
279
    height: 2px;
280
    line-height: 2px;
281
    z-index: 1;
282
    border: 1px solid;
283
    border-color: #999 #ddd #ddd #999;
284
    cursor: pointer;
285
}
286
287
#speedSlider #speedHandle {
288
    width: 12px;
289
    top: -8px;
290
    background-color: #666;
291
    position: relative;
292
    margin: 0px;
293
    height: 8px;
294
    line-height: 8px;
295
    z-index: 1;
296
    border: 1px solid;
297
    border-color: #999 #333 #333 #999;
298
    cursor: pointer;
299
}