diff options
| author | Mark Otto <[email protected]> | 2012-03-11 20:03:55 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-03-11 20:03:55 -0700 |
| commit | 2e52946fd3e71ef33da7035471a0e1051010df52 (patch) | |
| tree | 748b5d9625e5acb0a300257a0e965a01f6d0de34 | |
| parent | 4109c62cf745250e05267c1c5498865b5b548dcf (diff) | |
| download | bootstrap-2e52946fd3e71ef33da7035471a0e1051010df52.tar.xz bootstrap-2e52946fd3e71ef33da7035471a0e1051010df52.zip | |
fix lingering tables bug
| -rw-r--r-- | docs/assets/bootstrap.zip | bin | 55127 -> 55144 bytes | |||
| -rw-r--r-- | docs/assets/css/bootstrap.css | 5 | ||||
| -rw-r--r-- | less/tables.less | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip Binary files differindex b0dcb4e0b..931523438 100644 --- a/docs/assets/bootstrap.zip +++ b/docs/assets/bootstrap.zip diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 6fa86fd95..6754007bd 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1200,6 +1200,11 @@ table { .table-bordered td { border-left: 1px solid #dddddd; } +.table-bordered thead:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child td { + border-top: 0; +} .table-bordered thead:first-child tr:first-child th:first-child, .table-bordered tbody:first-child tr:first-child td:first-child { -webkit-border-radius: 4px 0 0 0; diff --git a/less/tables.less b/less/tables.less index 22f9a29b9..7111cb806 100644 --- a/less/tables.less +++ b/less/tables.less @@ -79,6 +79,7 @@ table { thead:first-child tr:first-child th, tbody:first-child tr:first-child th, tbody:first-child tr:first-child td { + border-top: 0; } // For first th or td in the first row in the first thead or tbody thead:first-child tr:first-child th:first-child, |
