Commit 073389ca authored by Mark Otto's avatar Mark Otto

Rename .table-condensed to .table-sm

parent 1917b2d8
...@@ -1442,12 +1442,12 @@ th { ...@@ -1442,12 +1442,12 @@ th {
.table > tbody + tbody { .table > tbody + tbody {
border-top: 2px solid #eceeef; border-top: 2px solid #eceeef;
} }
.table-condensed > thead > tr > th, .table-sm > thead > tr > th,
.table-condensed > tbody > tr > th, .table-sm > tbody > tr > th,
.table-condensed > tfoot > tr > th, .table-sm > tfoot > tr > th,
.table-condensed > thead > tr > td, .table-sm > thead > tr > td,
.table-condensed > tbody > tr > td, .table-sm > tbody > tr > td,
.table-condensed > tfoot > tr > td { .table-sm > tfoot > tr > td {
padding: .3rem; padding: .3rem;
} }
.table-bordered { .table-bordered {
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -254,12 +254,12 @@ Add `.table-hover` to enable a hover state on table rows within a `<tbody>`. ...@@ -254,12 +254,12 @@ Add `.table-hover` to enable a hover state on table rows within a `<tbody>`.
</table> </table>
{% endexample %} {% endexample %}
## Condensed table ## Small table
Add `.table-condensed` to make tables more compact by cutting cell padding in half. Add `.table-sm` to make tables more compact by cutting cell padding in half.
{% example html %} {% example html %}
<table class="table table-condensed"> <table class="table table-sm">
<thead> <thead>
<tr> <tr>
<th>#</th> <th>#</th>
......
...@@ -67,14 +67,14 @@ th { ...@@ -67,14 +67,14 @@ th {
// Condensed table w/ half padding // Condensed table w/ half padding
.table-condensed { .table-sm {
> thead, > thead,
> tbody, > tbody,
> tfoot { > tfoot {
> tr { > tr {
> th, > th,
> td { > td {
padding: @table-condensed-cell-padding; padding: @table-sm-cell-padding;
} }
} }
} }
......
...@@ -125,8 +125,8 @@ ...@@ -125,8 +125,8 @@
//** Padding for `<th>`s and `<td>`s. //** Padding for `<th>`s and `<td>`s.
@table-cell-padding: .75rem; @table-cell-padding: .75rem;
//** Padding for cells in `.table-condensed`. //** Padding for cells in `.table-sm`.
@table-condensed-cell-padding: .3rem; @table-sm-cell-padding: .3rem;
//** Default background color used for all tables. //** Default background color used for all tables.
@table-bg: transparent; @table-bg: transparent;
......
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