Merge pull request #428 from tjgrathwell/htmlreporter-inline-block-dots

Change HTMLReporter symbols to be inline-block instead of floated
This commit is contained in:
Sheel Choksi
2013-09-16 20:55:49 -07:00
2 changed files with 2 additions and 4 deletions

View File

@@ -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: block; float: left; height: 7px; width: 14px; margin-bottom: 7px; font-size: 16px; }
.html-reporter .symbol-summary li { display: inline-block; height: 7px; 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; }

View File

@@ -93,11 +93,9 @@ body {
margin: $line-height 0;
li {
display: block;
float: left;
display: inline-block;
height: $line-height / 2;
width: $line-height;
margin-bottom: $line-height / 2;
font-size: 16px;