Commit 88a266b8 authored by Mark Otto's avatar Mark Otto

Add tfoot back (addresses more than #8387)

parent 14056409
...@@ -1113,8 +1113,10 @@ th { ...@@ -1113,8 +1113,10 @@ th {
.table thead > tr > th, .table thead > tr > th,
.table tbody > tr > th, .table tbody > tr > th,
.table tfoot > tr > th,
.table thead > tr > td, .table thead > tr > td,
.table tbody > tr > td { .table tbody > tr > td,
.table tfoot > tr > td {
padding: 8px; padding: 8px;
line-height: 1.428571429; line-height: 1.428571429;
vertical-align: top; vertical-align: top;
...@@ -1144,8 +1146,10 @@ th { ...@@ -1144,8 +1146,10 @@ th {
.table-condensed thead > tr > th, .table-condensed thead > tr > th,
.table-condensed tbody > tr > th, .table-condensed tbody > tr > th,
.table-condensed tfoot > tr > th,
.table-condensed thead > tr > td, .table-condensed thead > tr > td,
.table-condensed tbody > tr > td { .table-condensed tbody > tr > td,
.table-condensed tfoot > tr > td {
padding: 4px 5px; padding: 4px 5px;
} }
...@@ -1158,8 +1162,10 @@ th { ...@@ -1158,8 +1162,10 @@ th {
.table-bordered > thead > tr > th, .table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th, .table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td, .table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td { .table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
border-left: 1px solid #dddddd; border-left: 1px solid #dddddd;
} }
......
...@@ -20,7 +20,8 @@ th { ...@@ -20,7 +20,8 @@ th {
margin-bottom: @line-height-computed; margin-bottom: @line-height-computed;
// Cells // Cells
thead, thead,
tbody { tbody,
tfoot {
> tr { > tr {
> th, > th,
> td { > td {
...@@ -63,7 +64,8 @@ th { ...@@ -63,7 +64,8 @@ th {
.table-condensed { .table-condensed {
thead, thead,
tbody { tbody,
tfoot {
> tr { > tr {
> th, > th,
> td { > td {
...@@ -85,7 +87,8 @@ th { ...@@ -85,7 +87,8 @@ th {
border-radius: @border-radius-base; border-radius: @border-radius-base;
> thead, > thead,
> tbody { > tbody,
> tfoot {
> tr { > tr {
> th, > th,
> td { > td {
...@@ -200,7 +203,8 @@ table col[class^="col-"] { ...@@ -200,7 +203,8 @@ table col[class^="col-"] {
display: table-column; display: table-column;
} }
table { table {
td, th { td,
th {
&[class^="col-"] { &[class^="col-"] {
float: none; float: none;
display: table-cell; display: table-cell;
......
Markdown is supported
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