diff --git a/lib/jasmine-core/jasmine.css b/lib/jasmine-core/jasmine.css index 1a243585..9a60c996 100644 --- a/lib/jasmine-core/jasmine.css +++ b/lib/jasmine-core/jasmine.css @@ -11,7 +11,7 @@ body { background-color: #eeeeee; padding: 0; margin: 5px; overflow-y: scroll; } .html-reporter .banner { margin-top: 14px; } .html-reporter .duration { color: #aaaaaa; float: right; } .html-reporter .symbol-summary { overflow: hidden; *zoom: 1; margin: 14px 0; } -.html-reporter .symbol-summary li { display: inline-block; height: 7px; width: 14px; font-size: 16px; } +.html-reporter .symbol-summary li { display: inline-block; height: 8px; width: 14px; font-size: 16px; } .html-reporter .symbol-summary li.passed { font-size: 14px; } .html-reporter .symbol-summary li.passed:before { color: #5e7d00; content: "\02022"; } .html-reporter .symbol-summary li.failed { line-height: 9px; } diff --git a/src/html/_HTMLReporter.scss b/src/html/_HTMLReporter.scss index 72b588db..3cfb3936 100644 --- a/src/html/_HTMLReporter.scss +++ b/src/html/_HTMLReporter.scss @@ -94,7 +94,7 @@ body { li { display: inline-block; - height: $line-height / 2; + height: ($line-height / 2) + 1; width: $line-height; font-size: 16px;