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

Merge pull request #9451 from Luis-TP/3.0.0-wip

Fix .navbar-right > .dropdown-menu alignment
parents 66122fa1 c79fa6ad
......@@ -3354,6 +3354,10 @@ button.close {
.navbar-right {
float: right !important;
}
.navbar-right .dropdown-menu {
right: 0;
left: auto;
}
}
.navbar-form {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -259,7 +259,12 @@
@media (min-width: @grid-float-breakpoint) {
.navbar-left { .pull-left(); }
.navbar-right { .pull-right(); }
.navbar-right {
.pull-right();
.dropdown-menu {
.pull-right > .dropdown-menu();
}
}
}
......
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