diff options
| author | Salman Javed <[email protected]> | 2013-07-24 13:39:16 +0500 |
|---|---|---|
| committer | Salman Javed <[email protected]> | 2013-07-24 13:39:16 +0500 |
| commit | 0caab585f557513f936f4664ad1cdbddbfde9add (patch) | |
| tree | d76c7328e57b5ff6a232b4fce809bf236294a5dd /dist/css/bootstrap.css | |
| parent | 930c75e5dd0f2ae861a505bda740f289570c9b8a (diff) | |
| download | bootstrap-0caab585f557513f936f4664ad1cdbddbfde9add.tar.xz bootstrap-0caab585f557513f936f4664ad1cdbddbfde9add.zip | |
issues fixed for nav-justified on pills on android default browser.
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 697d923a3..ab0d70615 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -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 { |
