diff options
| author | Mark Otto <[email protected]> | 2014-07-14 00:23:46 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-07-14 00:23:46 -0700 |
| commit | e6ee1b228fa06200c677e86696e4a7a72ccf57a7 (patch) | |
| tree | c2cf6ecb23e84cc0d64b06d45749c645c882969b /less | |
| parent | d60d34231a7e76684d43f9c1fb8b1d60d589183e (diff) | |
| download | bootstrap-e6ee1b228fa06200c677e86696e4a7a72ccf57a7.tar.xz bootstrap-e6ee1b228fa06200c677e86696e4a7a72ccf57a7.zip | |
inverse table idea
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; |
