2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-15 11:59:39 +03:00

issues fixed for nav-justified on pills on android default browser.

This commit is contained in:
Salman Javed
2013-07-24 13:39:16 +05:00
parent 930c75e5dd
commit 0caab585f5
4 changed files with 8 additions and 9 deletions
+4 -2
View File
@@ -2605,6 +2605,7 @@ button.close {
}
.nav-tabs.nav-justified {
display: table;
width: 100%;
border-bottom: 0;
}
@@ -2612,7 +2613,7 @@ button.close {
.nav-tabs.nav-justified > li {
display: table-cell;
float: none;
width: 1%;
width: auto;
}
.nav-tabs.nav-justified > li > a {
@@ -2657,13 +2658,14 @@ button.close {
}
.nav-justified {
display: table;
width: 100%;
}
.nav-justified > li {
display: table-cell;
float: none;
width: 1%;
width: auto;
}
.nav-justified > li > a {
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -5
View File
File diff suppressed because one or more lines are too long
+2 -1
View File
@@ -167,11 +167,12 @@
// -------------------------
.nav-justified {
display: table;
width: 100%;
> li {
float: none;
display: table-cell;
width: 1%;
width: auto;
> a {
text-align: center;
}