Skip to content

Commit

Permalink
Vertically center all sortable table rows
Browse files Browse the repository at this point in the history
Our new table style vertically top aligns all table cells. Sortable tables are one liners and often have input fields in them. In conjuntion with the sortable handle this leads to erroneous looking UI.
  • Loading branch information
tvdeyen authored and John Hawthorn committed Aug 17, 2017
1 parent 2fdfc62 commit f772767
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ table {
@extend .table;
border-spacing: 0;

&.sortable td {
vertical-align: middle;
}

th, td {
text-overflow: ellipsis;

Expand Down

0 comments on commit f772767

Please sign in to comment.