Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
f459d76e
Commit
f459d76e
authored
Aug 16, 2013
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes #9475
parent
60d150df
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
9 deletions
+11
-9
dist/css/bootstrap.css
dist/css/bootstrap.css
+4
-1
dist/css/bootstrap.min.css
dist/css/bootstrap.min.css
+1
-1
less/navbar.less
less/navbar.less
+6
-7
No files found.
dist/css/bootstrap.css
View file @
f459d76e
...
@@ -3231,7 +3231,6 @@ button.close {
...
@@ -3231,7 +3231,6 @@ button.close {
padding-right
:
15px
;
padding-right
:
15px
;
padding-left
:
15px
;
padding-left
:
15px
;
overflow-x
:
visible
;
overflow-x
:
visible
;
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
;
...
@@ -3257,6 +3256,10 @@ button.close {
...
@@ -3257,6 +3256,10 @@ button.close {
clear
:
both
;
clear
:
both
;
}
}
.navbar-collapse.in
{
overflow-y
:
auto
;
}
@media
(
min-width
:
768px
)
{
@media
(
min-width
:
768px
)
{
.navbar-collapse
{
.navbar-collapse
{
width
:
auto
;
width
:
auto
;
...
...
dist/css/bootstrap.min.css
View file @
f459d76e
This source diff could not be displayed because it is too large. You can
view the blob
instead.
less/navbar.less
View file @
f459d76e
...
@@ -51,20 +51,19 @@
...
@@ -51,20 +51,19 @@
// content for the user's viewport.
// content for the user's viewport.
.navbar-collapse {
.navbar-collapse {
max-height: 340px;
overflow-x: visible;
padding-right: @navbar-padding-horizontal;
padding-right: @navbar-padding-horizontal;
padding-left: @navbar-padding-horizontal;
padding-left: @navbar-padding-horizontal;
border-top: 1px solid darken(@navbar-bg, 7%);
border-top: 1px solid darken(@navbar-bg, 7%);
box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
// Clear floated elements and prevent collapsing of padding
.clearfix();
.clearfix();
// This is not automatically added to the `.navbar-fixed-top` because it causes
// z-index bugs in iOS7 (possibly earlier).
max-height: 340px;
overflow-x: visible;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
-webkit-overflow-scrolling: touch;
&.in {
overflow-y: auto;
}
@media (min-width: @grid-float-breakpoint) {
@media (min-width: @grid-float-breakpoint) {
width: auto;
width: auto;
padding-right: 0;
padding-right: 0;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment