Commit 30926450 authored by Mark Otto's avatar Mark Otto
Browse files

Remove grid sizing styles on tables

parent 6749e550
Showing with 2 additions and 36 deletions
+2 -36
...@@ -1544,18 +1544,6 @@ th { ...@@ -1544,18 +1544,6 @@ th {
background-color: #f5f5f5; background-color: #f5f5f5;
} }
table col[class*="col-"] {
position: static;
display: table-column;
float: none;
}
table td[class*="col-"], table th[class*="col-"] {
position: static;
display: table-cell;
float: none;
}
.table-active, .table-active > th, .table-active > td { .table-active, .table-active > th, .table-active > td {
background-color: #f5f5f5; background-color: #f5f5f5;
} }
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
This diff is collapsed.
This diff is collapsed.
...@@ -107,28 +107,6 @@ th { ...@@ -107,28 +107,6 @@ th {
} }
// Table cell sizing
//
// Reset default table behavior
table col[class*="col-"] {
position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
display: table-column;
float: none;
}
table {
td,
th {
&[class*="col-"] {
position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
display: table-cell;
float: none;
}
}
}
// Table backgrounds // Table backgrounds
// //
// Exact selectors below required to override `.table-striped` and prevent // Exact selectors below required to override `.table-striped` and prevent
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment