Commit 5b4fe08f authored by Mark Otto's avatar Mark Otto

fixes #9439: use overflow: auto on navbar collapse

parent fa330f30
...@@ -3154,10 +3154,10 @@ button.close { ...@@ -3154,10 +3154,10 @@ button.close {
} }
.navbar-collapse { .navbar-collapse {
max-height: 360px; max-height: 340px;
padding: 5px 15px; padding: 5px 15px;
overflow-x: visible; overflow-x: visible;
overflow-y: scroll; overflow-y: auto;
border-top: 1px solid #e6e6e6; border-top: 1px solid #e6e6e6;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -59,9 +59,9 @@ ...@@ -59,9 +59,9 @@
// This is not automatically added to the `.navbar-fixed-top` because it causes // This is not automatically added to the `.navbar-fixed-top` because it causes
// z-index bugs in iOS7 (possibly earlier). // z-index bugs in iOS7 (possibly earlier).
max-height: 360px; max-height: 340px;
overflow-x: visible; overflow-x: visible;
overflow-y: scroll; overflow-y: auto;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
@media (min-width: @grid-float-breakpoint) { @media (min-width: @grid-float-breakpoint) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment