aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2015-10-29 00:32:20 -0700
committerChris Rebert <[email protected]>2015-10-29 00:32:20 -0700
commit7d766e4a94299f811e8eab522bfb128a350cca4a (patch)
tree8236208c4a62e1c7049c6af3bf962d26171d9f75
parentf564c683f776173c1dc828cc6095358c0fd4d74c (diff)
downloadbootstrap-7d766e4a94299f811e8eab522bfb128a350cca4a.tar.xz
bootstrap-7d766e4a94299f811e8eab522bfb128a350cca4a.zip
Yes, we still need this. Silly IE9 😢
See the IE9 note in https://developer.mozilla.org/en-US/docs/Web/CSS/%3Ahover#Browser_compatibility The prereqs to trigger the bug are still present in v4. /fyi @mdo [skip sauce] [skip validator]
-rw-r--r--scss/_tables.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/scss/_tables.scss b/scss/_tables.scss
index 5f0698fb9..d5dccefef 100644
--- a/scss/_tables.scss
+++ b/scss/_tables.scss
@@ -109,13 +109,13 @@
.table-responsive {
display: block;
width: 100%;
+ min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)
overflow-x: auto;
- // Todo: find out if we need this still.
+ // TODO: find out if we need this still.
//
// border: 1px solid $table-border-color;
- // -ms-overflow-style: -ms-autohiding-scrollbar;
- // min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)
+ // -ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057
}