Skip to content

Commit

Permalink
Fixes #10601: Use overflow-y: auto; for navbar collapse instead of vi…
Browse files Browse the repository at this point in the history
…sible to better enable scrolling on Android 4.x
  • Loading branch information
mdo committed Oct 21, 2013
1 parent ee9be1a commit eed53d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/css/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -4370,7 +4370,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
overflow: visible !important;
}
.navbar-collapse.in {
overflow-y: visible;
overflow-y: auto;
}
.navbar-collapse .navbar-nav.navbar-left:first-child {
margin-left: -15px;
Expand Down
2 changes: 1 addition & 1 deletion dist/css/bootstrap.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion less/navbar.less
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
}

&.in {
overflow-y: visible;
overflow-y: auto;
}

// Account for first and last children spacing
Expand Down

0 comments on commit eed53d7

Please sign in to comment.