0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00

Fixes #10516: Use auto positioning for dropdowns in justified nav to fix Firefox rendering

This commit is contained in:
Mark Otto 2013-10-28 20:51:39 -07:00
parent dcf51315a3
commit 67cab7fa05
3 changed files with 16 additions and 1 deletions

View File

@ -4131,6 +4131,11 @@ textarea.input-group-sm > .input-group-btn > .btn {
text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.nav-tabs.nav-justified > li {
display: table-cell;
@ -4212,6 +4217,11 @@ textarea.input-group-sm > .input-group-btn > .btn {
text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.nav-justified > li {
display: table-cell;

File diff suppressed because one or more lines are too long

View File

@ -178,6 +178,11 @@
}
}
> .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: @screen-sm-min) {
> li {
display: table-cell;