From bfe2dc4109a66d403f8681f2b13aa7291d6aca62 Mon Sep 17 00:00:00 2001 From: boomsb Date: Mon, 19 Aug 2013 11:30:38 -0500 Subject: [PATCH] Update tables.less Fixed Table cell sizing with multiple classes by using *= instead of ^= --- less/tables.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.47.2