Commit f9fde567 authored by Mark Otto's avatar Mark Otto

Merge pull request #13464 from nickcolley/#13325-navbar-right-first

Changed last-child to first-child to fix #13325
parents bae2c55a dd0b0cd6
...@@ -272,7 +272,7 @@ ...@@ -272,7 +272,7 @@
} }
} }
&.navbar-right:last-child { &.navbar-right:first-child {
margin-right: -@navbar-padding-horizontal; margin-right: -@navbar-padding-horizontal;
} }
} }
...@@ -327,8 +327,8 @@ ...@@ -327,8 +327,8 @@
padding-bottom: 0; padding-bottom: 0;
.box-shadow(none); .box-shadow(none);
// Outdent the form if last child to line up with content down the page // Outdent the form if first child to line up with content down the page
&.navbar-right:last-child { &.navbar-right:first-child {
margin-right: -@navbar-padding-horizontal; margin-right: -@navbar-padding-horizontal;
} }
} }
...@@ -376,8 +376,8 @@ ...@@ -376,8 +376,8 @@
margin-left: @navbar-padding-horizontal; margin-left: @navbar-padding-horizontal;
margin-right: @navbar-padding-horizontal; margin-right: @navbar-padding-horizontal;
// Outdent the form if last child to line up with content down the page // Outdent the form if first child to line up with content down the page
&.navbar-right:last-child { &.navbar-right:first-child {
margin-right: 0; margin-right: 0;
} }
} }
......
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