mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-11 18:02:28 +03:00
Fixes #8211: restore proper table grid class behavior
Needs work though—we shouldn't be setting this stuff with the attribute selectors, but it's the easiest solution for now.
This commit is contained in:
+5
-3
@@ -184,16 +184,18 @@ th {
|
||||
// -----------------
|
||||
|
||||
// Reset default table behavior
|
||||
table col[class*="col-span-"] {
|
||||
table col[class^="col-"] {
|
||||
float: none;
|
||||
display: table-column;
|
||||
}
|
||||
table td[class*="col-span-"],
|
||||
table th[class*="col-span-"] {
|
||||
table td[class^="col-"],
|
||||
table th[class^="col-"] {
|
||||
float: none;
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
|
||||
|
||||
// TABLE BACKGROUNDS
|
||||
// -----------------
|
||||
// Exact selectors below required to override .table-striped
|
||||
|
||||
Reference in New Issue
Block a user