]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Backport #30685
authorMartijn Cuppens <martijn.cuppens@gmail.com>
Wed, 29 Apr 2020 15:03:41 +0000 (17:03 +0200)
committerXhmikosR <xhmikosr@gmail.com>
Sat, 2 May 2020 12:39:19 +0000 (15:39 +0300)
`<pre>`: Disable auto-hiding scrollbar in IE & legacy Edge

scss/_reboot.scss

index e9b5a7edddd99c02b25d29ad2ee3e4c54fa0966d..5a9cef886270a708469e752752829edf0f80ae5c 100644 (file)
@@ -229,6 +229,9 @@ pre {
   margin-bottom: 1rem;
   // Don't allow content to break outside
   overflow: auto;
+  // Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,
+  // making it impossible to interact with the content
+  -ms-overflow-style: scrollbar;
 }