From 5ab99abd97ecbfff2e7a44200bba912f60eef695 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 26 Nov 2016 01:44:06 -0800 Subject: [PATCH] prevent double border on responsive .table-border --- scss/_tables.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scss/_tables.scss b/scss/_tables.scss index 89b03e4b18..0d2492a0be 100644 --- a/scss/_tables.scss +++ b/scss/_tables.scss @@ -150,6 +150,11 @@ // // border: $table-border-width solid $table-border-color; // -ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057 + + // Prevent double border on horizontal scroll due to use of `display: block;` + &.table-bordered { + border: 0; + } }