diff options
| author | boomsb <[email protected]> | 2013-08-19 11:30:38 -0500 |
|---|---|---|
| committer | boomsb <[email protected]> | 2013-08-19 11:30:38 -0500 |
| commit | bfe2dc4109a66d403f8681f2b13aa7291d6aca62 (patch) | |
| tree | 04a6460db7c46bc6fb4790662cf3669fc264c2f1 | |
| parent | b5698361266345c653e7b21ec109bb0f9592129c (diff) | |
| download | bootstrap-bfe2dc4109a66d403f8681f2b13aa7291d6aca62.tar.xz bootstrap-bfe2dc4109a66d403f8681f2b13aa7291d6aca62.zip | |
Update tables.less
Fixed Table cell sizing with multiple classes by using *= instead of ^=
| -rw-r--r-- | less/tables.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/tables.less b/less/tables.less index 17a765482..7543b165a 100644 --- a/less/tables.less +++ b/less/tables.less @@ -137,14 +137,14 @@ th { // // Reset default table behavior -table col[class^="col-"] { +table col[class*="col-"] { float: none; display: table-column; } table { td, th { - &[class^="col-"] { + &[class*="col-"] { float: none; display: table-cell; } |
