]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Yes, we still need this. Silly IE9 😢
authorChris Rebert <github@chrisrebert.com>
Thu, 29 Oct 2015 07:32:20 +0000 (00:32 -0700)
committerChris Rebert <github@chrisrebert.com>
Thu, 29 Oct 2015 07:32:20 +0000 (00:32 -0700)
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]

scss/_tables.scss

index 5f0698fb9becabc682cd4416a6c1505323e992a5..d5dccefef5565e1127e5b1ace7812da14aec360d 100644 (file)
 .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
 }