Use \d7 instead of plain 'x' for more square appearance

[finishes #48434179]
This commit is contained in:
slackersoft
2014-01-18 17:33:57 -10:00
parent 9c7ba43ebd
commit 2a8b5a30b6
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ body { background-color: #eeeeee; padding: 0; margin: 5px; overflow-y: scroll; }
.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; }
.html-reporter .symbol-summary li.failed:before { color: #b03911; content: "x"; font-weight: bold; margin-left: -1px; }
.html-reporter .symbol-summary li.failed:before { color: #b03911; content: "\d7"; font-weight: bold; margin-left: -1px; }
.html-reporter .symbol-summary li.disabled { font-size: 14px; }
.html-reporter .symbol-summary li.disabled:before { color: #bababa; content: "\02022"; }
.html-reporter .symbol-summary li.pending { line-height: 17px; }

View File

@@ -113,7 +113,7 @@ body {
&:before {
color: $failing-color;
content: "x";
content: "\d7";
font-weight: bold;
margin-left: -1px;
}