jasmine/lib/jasmine.css

76 lines
900 B
CSS
Raw Normal View History

body {
2009-10-16 03:00:41 +00:00
font-family: "Helvetica Neue Light", "Lucida Grande", "Calibri", "Arial", sans-serif;
}
2009-10-16 03:00:41 +00:00
body .run_spec {
float:right;
}
2009-10-16 03:00:41 +00:00
.runner.running {
background-color: yellow;
}
2009-10-16 03:00:41 +00:00
2009-08-10 16:54:01 +00:00
.runner {
2009-10-16 03:00:41 +00:00
border: 1px solid gray;
margin: 5px;
padding-left: 1em;
2009-08-17 20:37:33 +00:00
padding-right: 1em;
}
2009-10-16 03:00:41 +00:00
2009-08-11 00:50:03 +00:00
.suite {
border: 1px outset gray;
2009-08-11 01:07:03 +00:00
margin: 5px;
2009-08-11 00:50:03 +00:00
padding-left: 1em;
}
2009-08-11 00:59:24 +00:00
.suite.passed {
background-color: #cfc;
}
.suite.failed {
background-color: #fdd;
}
2009-08-10 16:54:01 +00:00
.spec {
margin: 5px;
clear: both;
2009-08-10 16:54:01 +00:00
}
.passed {
2009-10-16 03:00:41 +00:00
background-color: #cfc;
2009-08-10 16:54:01 +00:00
}
.failed {
2009-10-16 03:00:41 +00:00
background-color: #fdd;
2009-08-10 16:54:01 +00:00
}
.skipped {
color: #777;
background-color: #eee;
}
2009-10-16 03:00:41 +00:00
/*.resultMessage {*/
/*white-space: pre;*/
/*}*/
2009-08-10 16:54:01 +00:00
.stackTrace {
white-space: pre;
font-size: .8em;
margin-left: 10px;
2009-08-10 18:01:03 +00:00
height: 5em;
overflow: auto;
2009-08-11 01:07:03 +00:00
border: 1px inset red;
padding: 1em;
background: #eef;
2009-08-10 16:54:01 +00:00
}
#jasmine_content {
position:fixed;
left: 100%;
}