Stop Jasmine's CSS affecting the style of the body tag

[fixes #600]
This commit is contained in:
Lee Penkman
2014-06-03 18:04:15 +12:00
committed by Sheel Choksi
parent 7d93541c09
commit aac6968ed8
2 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
body { background-color: #eeeeee; padding: 0; margin: 5px; overflow-y: scroll; }
body { overflow-y: scroll; }
.html-reporter { font-size: 11px; font-family: Monaco, "Lucida Console", monospace; line-height: 14px; color: #333333; }
.html-reporter { background-color: #eeeeee; padding: 5px; margin: -8px; font-size: 11px; font-family: Monaco, "Lucida Console", monospace; line-height: 14px; color: #333333; }
.html-reporter a { text-decoration: none; }
.html-reporter a:hover { text-decoration: underline; }
.html-reporter p, .html-reporter h1, .html-reporter h2, .html-reporter h3, .html-reporter h4, .html-reporter h5, .html-reporter h6 { margin: 0; line-height: 14px; }

View File

@@ -19,13 +19,13 @@ $font-size: 11px;
$large-font-size: 14px;
body {
background-color: $page-background-color;
padding: 0;
margin: 5px;
overflow-y: scroll;
}
.html-reporter {
background-color: $page-background-color;
padding: 5px;
margin: -8px;
font-size: $font-size;
font-family: Monaco, "Lucida Console", monospace;