Show a dot with color of pending spec when no expectations

[fix #76307802]
This commit is contained in:
slackersoft
2014-08-04 12:48:35 -07:00
parent cee3cc56e6
commit b4f49db6bd
2 changed files with 11 additions and 0 deletions

View File

@@ -23,6 +23,8 @@ body { overflow-y: scroll; }
.jasmine_html-reporter .symbol-summary li.disabled:before { color: #bababa; content: "\02022"; }
.jasmine_html-reporter .symbol-summary li.pending { line-height: 17px; }
.jasmine_html-reporter .symbol-summary li.pending:before { color: #ba9d37; content: "*"; }
.jasmine_html-reporter .symbol-summary li.empty { font-size: 14px; }
.jasmine_html-reporter .symbol-summary li.empty:before { color: #ba9d37; content: "\02022"; }
.jasmine_html-reporter .exceptions { color: #fff; float: right; margin-top: 5px; margin-right: 5px; }
.jasmine_html-reporter .bar { line-height: 28px; font-size: 14px; display: block; color: #eee; }
.jasmine_html-reporter .bar.failed { background-color: #ca3a11; }

View File

@@ -154,6 +154,15 @@ body {
content: "*";
}
}
&.empty {
font-size: 14px;
&:before {
color: $pending-color;
content: "\02022";
}
}
}
}