1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-23 21:53:25 +02:00

Justified nav now responsive; example updated accordingly (fixes #9708)

This commit is contained in:
Mark Otto
2013-08-16 14:01:32 -07:00
parent af7b072a74
commit e6f185acad
4 changed files with 48 additions and 17 deletions

View File

@@ -3032,15 +3032,20 @@ button.close {
}
.nav-tabs.nav-justified > li {
display: table-cell;
float: none;
width: 1%;
}
.nav-tabs.nav-justified > li > a {
text-align: center;
}
@media (min-width: 768px) {
.nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
}
.nav-tabs.nav-justified > li > a {
margin-right: 0;
border-bottom: 1px solid #dddddd;
@@ -3083,15 +3088,20 @@ button.close {
}
.nav-justified > li {
display: table-cell;
float: none;
width: 1%;
}
.nav-justified > li > a {
text-align: center;
}
@media (min-width: 768px) {
.nav-justified > li {
display: table-cell;
width: 1%;
}
}
.nav-tabs-justified {
border-bottom: 0;
}

File diff suppressed because one or more lines are too long