Browse Source

Fixes basic table bottom row padding issue

pull/1063/head
jlukic 10 years ago
parent
commit
ac076ac23c
1 changed files with 5 additions and 2 deletions
  1. 7
      src/definitions/collections/table.less

7
src/definitions/collections/table.less

@ -696,10 +696,13 @@
.ui.very.basic.table {
border: none;
}
.ui.very.basic.table:not(.sortable) th,
.ui.very.basic.table:not(.sortable) td {
.ui.very.basic.table:not(.sortable):not(.striped) th,
.ui.very.basic.table:not(.sortable):not(.striped) td {
padding: @basicTableCellVerticalPadding @basicTableCellHorizontalPadding;
}
.ui.very.basic.table:not(.sortable):not(.striped) tbody tr:last-child td {
padding-bottom: 0em;
}
/*--------------
Padded

Loading…
Cancel
Save