diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index 7cfe0eb399..baee1afdd9 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 912be887a3..45ae99964d 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1228,20 +1228,19 @@ table { } .table-bordered { border: 1px solid #ddd; + border-left: 0; border-collapse: separate; *border-collapse: collapsed; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } -.table-bordered th + th, -.table-bordered td + td, -.table-bordered th + td, -.table-bordered td + th { +.table-bordered th, .table-bordered td { border-left: 1px solid #ddd; } .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; + border-bottom: 1px solid #ddd; } .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/docs/base-css.html b/docs/base-css.html index 79ea2ac55a..3a6494ddc1 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -571,7 +571,7 @@ For example, <code>section</code> should be wrapped as inline. # First Name Last Name - Language + Username @@ -579,19 +579,19 @@ For example, <code>section</code> should be wrapped as inline. 1 Mark Otto - CSS + @mdo 2 Jacob Thornton - Javascript + @fat 3 - Stu - Dent - HTML + Larry + the Bird + @twitter @@ -616,7 +616,7 @@ For example, <code>section</code> should be wrapped as inline. # First Name Last Name - Language + Username @@ -624,19 +624,19 @@ For example, <code>section</code> should be wrapped as inline. 1 Mark Otto - CSS + @mdo 2 Jacob Thornton - Javascript + @fat 3 - Stu - Dent - HTML + Larry + the Bird + @twitter @@ -660,31 +660,31 @@ For example, <code>section</code> should be wrapped as inline. # First Name Last Name - Language + Username - 1 - Mark Otto - CSS + 1 + Mark + Otto + @mdo + + + Mark + Otto + @TwBootstrap 2 Jacob Thornton - Javascript - - - 3 - Stu - Dent + @fat 3 - Brosef - Stalin - HTML + Larry the Bird + @twitter @@ -708,7 +708,7 @@ For example, <code>section</code> should be wrapped as inline. # First Name Last Name - Language + Username @@ -716,19 +716,18 @@ For example, <code>section</code> should be wrapped as inline. 1 Mark Otto - CSS + @mdo 2 Jacob Thornton - Javascript + @fat 3 - Stu - Dent - HTML + Larry the Bird + @twitter @@ -749,37 +748,36 @@ For example, <code>section</code> should be wrapped as inline.
+ + + + + - - - + + + + - + - + - - - - - - - - - + +
Full name
#First NameLast NameLanguageFirst NameLast NameUsername
1 Mark OttoCSS@mdo
2 Jacob ThorntonJavascript@fat
3StuDentHTML
4BrosefStalinHTMLLarry the Bird@twitter
diff --git a/docs/templates/pages/base-css.mustache b/docs/templates/pages/base-css.mustache index 8345e4a248..fde1e002ef 100644 --- a/docs/templates/pages/base-css.mustache +++ b/docs/templates/pages/base-css.mustache @@ -495,7 +495,7 @@ # {{_i}}First Name{{/i}} {{_i}}Last Name{{/i}} - {{_i}}Language{{/i}} + {{_i}}Username{{/i}} @@ -503,19 +503,19 @@ 1 Mark Otto - CSS + @mdo 2 Jacob Thornton - Javascript + @fat 3 - Stu - Dent - HTML + Larry + the Bird + @twitter @@ -540,7 +540,7 @@ # {{_i}}First Name{{/i}} {{_i}}Last Name{{/i}} - {{_i}}Language{{/i}} + {{_i}}Username{{/i}} @@ -548,19 +548,19 @@ 1 Mark Otto - CSS + @mdo 2 Jacob Thornton - Javascript + @fat 3 - Stu - Dent - HTML + Larry + the Bird + @twitter @@ -584,7 +584,7 @@ # {{_i}}First Name{{/i}} {{_i}}Last Name{{/i}} - {{_i}}Language{{/i}} + {{_i}}Username{{/i}} @@ -592,29 +592,23 @@ 1 Mark Otto - CSS + @mdo Mark Otto - HTML + @TwBootstrap 2 Jacob Thornton - Javascript - - - 3 - Stu - Dent + @fat 3 - Brosef - Stalin - HTML + Larry the Bird + @twitter @@ -638,7 +632,7 @@ # {{_i}}First Name{{/i}} {{_i}}Last Name{{/i}} - {{_i}}Language{{/i}} + {{_i}}Username{{/i}} @@ -646,19 +640,18 @@ 1 Mark Otto - CSS + @mdo 2 Jacob Thornton - Javascript + @fat 3 - Stu - Dent - HTML + Larry the Bird + @twitter @@ -679,37 +672,36 @@
+ + + + + - - - + + + + - + - + - - - - - - - - - + +
{{_i}}Full name{{/i}}
#{{_i}}First Name{{/i}}{{_i}}Last Name{{/i}}{{_i}}Language{{/i}}{{_i}}First Name{{/i}}{{_i}}Last Name{{/i}}{{_i}}Username{{/i}}
1 Mark OttoCSS@mdo
2 Jacob ThorntonJavascript@fat
3StuDentHTML
4BrosefStalinHTMLLarry the Bird@twitter
diff --git a/less/tables.less b/less/tables.less index 1342de2ff6..d8bce582f0 100644 --- a/less/tables.less +++ b/less/tables.less @@ -64,13 +64,12 @@ table { .table-bordered { border: 1px solid #ddd; + border-left: 0; border-collapse: separate; // Done so we can round those corners! *border-collapse: collapsed; // IE7 can't round corners anyway .border-radius(4px); - th + th, - td + td, - th + td, - td + th { + th, + td { border-left: 1px solid #ddd; } // Prevent a double border @@ -78,6 +77,7 @@ table { tbody:first-child tr:first-child th, tbody:first-child tr:first-child td { border-top: 0; + border-bottom: 1px solid #ddd; } // For first th or td in the first row in the first thead or tbody thead:first-child tr:first-child th:first-child,