diff options
Diffstat (limited to 'less')
| -rw-r--r-- | less/tables.less | 18 | ||||
| -rw-r--r-- | less/variables.less | 2 |
2 files changed, 19 insertions, 1 deletions
diff --git a/less/tables.less b/less/tables.less index 31b575163..c2319854a 100644 --- a/less/tables.less +++ b/less/tables.less @@ -246,3 +246,21 @@ table { } } +.table-inverse { + color: @gray-lighter; + background-color: @gray-dark; + + &.table-bordered { + border: 0; + } + + > thead, + > tbody { + > tr { + > th, + > td { + border-color: @gray; + } + } + } +} diff --git a/less/variables.less b/less/variables.less index 665194069..27973d61b 100644 --- a/less/variables.less +++ b/less/variables.less @@ -124,7 +124,7 @@ //## Customizes the `.table` component with basic values, each used across all table variations. //** Padding for `<th>`s and `<td>`s. -@table-cell-padding: .5rem; +@table-cell-padding: .75rem; //** Padding for cells in `.table-condensed`. @table-condensed-cell-padding: .3rem; |
