From ce249a555c8601e5d6a945c8438a930b903fb152 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 8 May 2016 13:51:25 -0700 Subject: [PATCH] document table border collapse change, move from old normalize to our reboot --- docs/content/reboot.md | 2 +- scss/_reboot.scss | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/content/reboot.md b/docs/content/reboot.md index 9df0a75599..20a76c82cb 100644 --- a/docs/content/reboot.md +++ b/docs/content/reboot.md @@ -148,7 +148,7 @@ The `
` element is reset to remove its `margin-top` and use `rem` units for
 
 ## Tables
 
-Tables are slightly adjusted to style ``s and ensure consistent `text-align` throughout. Additional changes for borders, padding, and more come with [the `.table` class]({{ site.baseurl }}/content/tables/).
+Tables are slightly adjusted to style ``s, collapse borders, and ensure consistent `text-align` throughout. Additional changes for borders, padding, and more come with [the `.table` class]({{ site.baseurl }}/content/tables/).
 
 
diff --git a/scss/_reboot.scss b/scss/_reboot.scss index deb9613cc6..7c74b978e1 100644 --- a/scss/_reboot.scss +++ b/scss/_reboot.scss @@ -268,6 +268,8 @@ textarea { // table { + // No longer part of Normalize since v4 + border-collapse: collapse; // Reset for nesting within parents with `background-color`. background-color: $table-bg; }