diff options
| author | Mark Otto <[email protected]> | 2013-01-11 23:38:53 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-01-11 23:38:53 -0800 |
| commit | 19e2ad0eb64c0e6bd40557c2ce3585702b54f6f9 (patch) | |
| tree | 88a698aa03b901e2de2fd902f1b70285d1f82225 /docs | |
| parent | 6f894c62a57fd93e9ba41230d794cd8ad48c03d1 (diff) | |
| download | bootstrap-19e2ad0eb64c0e6bd40557c2ce3585702b54f6f9.tar.xz bootstrap-19e2ad0eb64c0e6bd40557c2ce3585702b54f6f9.zip | |
Fixes #6538: Add th support to all the .table-rounded selectors
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index c632f371e..57325606f 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -2053,14 +2053,16 @@ table { } .table-bordered thead:first-child tr:first-child > th:first-child, -.table-bordered tbody:first-child tr:first-child > td:first-child { +.table-bordered tbody:first-child tr:first-child > td:first-child, +.table-bordered tbody:first-child tr:first-child > th:first-child { -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topleft: 4px; } .table-bordered thead:first-child tr:first-child > th:last-child, -.table-bordered tbody:first-child tr:first-child > td:last-child { +.table-bordered tbody:first-child tr:first-child > td:last-child, +.table-bordered tbody:first-child tr:first-child > th:last-child { -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-topright: 4px; @@ -2068,7 +2070,9 @@ table { .table-bordered thead:last-child tr:last-child > th:first-child, .table-bordered tbody:last-child tr:last-child > td:first-child, -.table-bordered tfoot:last-child tr:last-child > td:first-child { +.table-bordered tbody:last-child tr:last-child > th:first-child, +.table-bordered tfoot:last-child tr:last-child > td:first-child, +.table-bordered tfoot:last-child tr:last-child > th:first-child { -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomleft: 4px; @@ -2076,7 +2080,9 @@ table { .table-bordered thead:last-child tr:last-child > th:last-child, .table-bordered tbody:last-child tr:last-child > td:last-child, -.table-bordered tfoot:last-child tr:last-child > td:last-child { +.table-bordered tbody:last-child tr:last-child > th:last-child, +.table-bordered tfoot:last-child tr:last-child > td:last-child, +.table-bordered tfoot:last-child tr:last-child > th:last-child { -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px; |
