1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

<pre>: Disable auto-hiding scrollbar in legacy Edge (#30685)

Disable auto-hiding scrollbar in legacy Edge to avoid overlap, making it impossible to interact with the content.
This commit is contained in:
Martijn Cuppens 2020-04-29 16:51:25 +02:00 committed by GitHub
parent 9922ef5c16
commit 7153c2c3bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -290,6 +290,8 @@ samp {
// 1. Remove browser default top margin
// 2. Reset browser default of `1em` to use `rem`s
// 3. Don't allow content to break outside
// 4. Disable auto-hiding scrollbar in legacy Edge to avoid overlap,
// making it impossible to interact with the content
pre {
display: block;
@ -298,6 +300,7 @@ pre {
overflow: auto; // 3
@include font-size($code-font-size);
color: $pre-color;
-ms-overflow-style: scrollbar; // 4
// Account for some code outputs that place code tags in pre tags
code {