]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Update tables.less 9864/head
authorboomsb <bradley.booms@gmail.com>
Mon, 19 Aug 2013 16:30:38 +0000 (11:30 -0500)
committerboomsb <bradley.booms@gmail.com>
Mon, 19 Aug 2013 16:30:38 +0000 (11:30 -0500)
Fixed Table cell sizing with multiple classes by using *= instead of ^=

less/tables.less

index 17a765482ea0671016707da8f6d9541a1b5a43e1..7543b165a2eea45b3facaf419ae8509b87456e17 100644 (file)
@@ -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;
     }