You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But the rest of the selectors ignore it. For example:
// For first th or td in the last row in the last thead or tbody
thead:last-child tr:last-child > th:first-child,
tbody:last-child tr:last-child > td:first-child,
tfoot:last-child tr:last-child > td:first-child {
.border-bottom-left-radius(@baseBorderRadius);
}
I believe that this should have an additional selector:
tbody:last-child tr:last-child > th:first-child,
I think all the other border radius selectors in table-bordered have the same issue.
The text was updated successfully, but these errors were encountered:
<th>
is valid inside<tbody>
-- it appears in the spec examples at http://www.w3.org/TR/html5/tabular-data.html#examples, and Bootstrap includes a selector for it to remove the doubletop-border
:But the rest of the selectors ignore it. For example:
I believe that this should have an additional selector:
I think all the other border radius selectors in
table-bordered
have the same issue.The text was updated successfully, but these errors were encountered: