Reduced the padding for compact tables. This hopefully fixes issue #1689.

- Legacy-Id: 9531
This commit is contained in:
Henrik Levkowetz 2015-04-21 16:37:55 +00:00
parent d0f05cf924
commit 47d5f3411b
4 changed files with 4 additions and 4 deletions

View file

@ -2295,7 +2295,7 @@ th {
.table-condensed > thead > tr > td, .table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td, .table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td { .table-condensed > tfoot > tr > td {
padding: 5px; padding: 3px;
} }
.table-bordered { .table-bordered {
border: 1px solid #ddd; border: 1px solid #ddd;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -158,7 +158,7 @@
//** Padding for `<th>`s and `<td>`s. //** Padding for `<th>`s and `<td>`s.
@table-cell-padding: 8px; @table-cell-padding: 8px;
//** Padding for cells in `.table-condensed`. //** Padding for cells in `.table-condensed`.
@table-condensed-cell-padding: 5px; @table-condensed-cell-padding: 3px;
//** Default background color used for all tables. //** Default background color used for all tables.
@table-bg: transparent; @table-bg: transparent;