diff --git a/static/style.css b/static/style.css index 24003a1..ff7e6d7 100644 --- a/static/style.css +++ b/static/style.css @@ -56,10 +56,9 @@ li.ok { background: url('images/ok.png') no-repeat left top; } li.failure, li.warning, li.ok { - list-style-type: none; - margin-left:-20px; - padding-left: 20px; + padding-left: 30px; background-size: 16px 16px; + background-position: 5px 10px; } li.failureExpand, li.prExpand { @@ -75,10 +74,6 @@ li.failureExpand a { color:#CC0000; } -.prTestFailures li.failure, .verbosePr { - margin-bottom:1.12em; -} - .invocation { font-family: monospace; } diff --git a/ts/test-results.tsx b/ts/test-results.tsx index 0aae112..a09baa1 100644 --- a/ts/test-results.tsx +++ b/ts/test-results.tsx @@ -729,7 +729,7 @@ class FailureFilterLink extends React.Component { function renderFailureBase(failure: Failure, extra:JSX.Element=null) { let testLine = failure.test ?
{failure.test}
: null let key = failure.step + "!" + failure.test - return
  • + return
  • {failureDescribe(failure.kind)} while running {failure.step}
    @@ -901,7 +901,7 @@ class PrBuildDisplay extends ExpandableWithFailures render() { let prFailuresSortedKeys = this.props.prBuildListing.sortedKeys() let prFailureDisplay = this.listRender(prFailuresSortedKeys) - return
      + return
        {prFailureDisplay}
      } @@ -1044,7 +1044,7 @@ class PrDisplay extends Expandable { label = "No test failures!" result =
      -
      • {label}
      +
      • {label}
      } @@ -1261,7 +1261,7 @@ let ContentArea = React.createClass({ :
      {failure.step}
      - return
    • + return
    • {title} {failureListing.count} failure{failureListing.count>1?"s":""}{" "} (failed on

      Showing {formatRange(dateRange)} | Out of {trials} runs:

      -
        +
          {failureDisplay}
        diff --git a/ts/test-status.tsx b/ts/test-status.tsx index f109fe5..536c86d 100644 --- a/ts/test-status.tsx +++ b/ts/test-status.tsx @@ -76,15 +76,16 @@ class BuildStatus extends React.Component { // Set icon for lane entry (via CSS class) switch(build.result) { case "UNSTABLE": - className = "warning" + className = "warning list-group-item" break case "SUCCESS": - className = "ok" + className = "ok list-group-item" break case null: + className = "list-group-item" break default: - className = "failure" + className = "failure list-group-item" break } @@ -101,7 +102,7 @@ class BuildStatus extends React.Component { return
        {buildLink} -
          {displayList}
        +
          {displayList}
        } }