2010-01-12 21:59:54 +00:00
|
|
|
@charset "UTF-8";
|
|
|
|
|
/* CSS Document */
|
|
|
|
|
|
|
|
|
|
#runner {
|
2010-05-20 22:55:41 +00:00
|
|
|
position: absolute;
|
|
|
|
|
top:5px;
|
|
|
|
|
left:10px;
|
2010-01-12 21:59:54 +00:00
|
|
|
right:10px;
|
|
|
|
|
height: 200px;
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-20 22:55:41 +00:00
|
|
|
.console {
|
|
|
|
|
display: block;
|
|
|
|
|
overflow: scroll;
|
|
|
|
|
height: 200px;
|
|
|
|
|
border: 1px solid black;
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-12 21:59:54 +00:00
|
|
|
#testView {
|
2010-05-20 22:55:41 +00:00
|
|
|
position: absolute;
|
|
|
|
|
bottom:10px;
|
|
|
|
|
top:230px;
|
|
|
|
|
left:10px;
|
2010-01-12 21:59:54 +00:00
|
|
|
right:10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#testView iframe {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-20 22:55:41 +00:00
|
|
|
|
|
|
|
|
///////////////
|
2010-01-12 21:59:54 +00:00
|
|
|
|
|
|
|
|
.collapsed .log {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.run, .info, .error {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 0 1em;
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
white-space: pre;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.run {
|
|
|
|
|
background-color: lightgrey;
|
|
|
|
|
padding: 0 .2em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.run.pass {
|
|
|
|
|
background-color: lightgreen;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.run.fail {
|
|
|
|
|
background-color: lightred;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.name, .time, .state {
|
|
|
|
|
padding-right: 2em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
error {
|
|
|
|
|
color: red;
|
|
|
|
|
}
|