Commit 9b66e6b0 authored by Mark Otto's avatar Mark Otto

fixes #9790: nullify right padding in container-ed navbars when last element...

fixes #9790: nullify right padding in container-ed navbars when last element in collapse is a right aligned navbar nav
parent 776fb435
...@@ -4047,6 +4047,9 @@ textarea.input-group-sm > .input-group-btn > .btn { ...@@ -4047,6 +4047,9 @@ textarea.input-group-sm > .input-group-btn > .btn {
.navbar-collapse.in { .navbar-collapse.in {
overflow-y: visible; overflow-y: visible;
} }
.navbar-collapse .navbar-nav.navbar-right:last-child {
margin-right: -15px;
}
} }
.container > .navbar-header, .container > .navbar-header,
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -77,6 +77,10 @@ ...@@ -77,6 +77,10 @@
&.in { &.in {
overflow-y: visible; overflow-y: visible;
} }
.navbar-nav.navbar-right:last-child {
margin-right: -@navbar-padding-horizontal;
}
} }
} }
......
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