From: boomsb Date: Mon, 19 Aug 2013 16:30:38 +0000 (-0500) Subject: Update tables.less X-Git-Tag: v3.0.0~9^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfe2dc4109a66d403f8681f2b13aa7291d6aca62;p=thirdparty%2Fbootstrap.git Update tables.less Fixed Table cell sizing with multiple classes by using *= instead of ^= --- diff --git a/less/tables.less b/less/tables.less index 17a765482e..7543b165a2 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; }