sul-dlss/argo

View on GitHub
app/assets/stylesheets/workflow_grid.css

Summary

Maintainability
Test Coverage
.workflow-grid-table {
  table {
    counter-reset: rowNumber;
  }

  tr {
    counter-increment: rowNumber;

    td:first-child::before {
      content: counter(rowNumber);
      margin-right: 0.5em;
      min-width: 1em;
    }
  }
}

/* reset button */
.errors {
  form {
    display: inline-block;
  }
}