diff options
| author | Mark Otto <[email protected]> | 2013-03-31 19:26:40 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-03-31 19:26:40 -0700 |
| commit | c69310153e5eec18f67df1df60c38ed807a75637 (patch) | |
| tree | eb315e89a0ead9d427ceb0a937685a1dc2ad759d /docs/assets/css | |
| parent | 4c49458336f8bcc7ec7ebca5384e3430645e5fe8 (diff) | |
| download | bootstrap-c69310153e5eec18f67df1df60c38ed807a75637.tar.xz bootstrap-c69310153e5eec18f67df1df60c38ed807a75637.zip | |
Fixes #7438: remove max-height from justified nav tabs with some CSS wankery
Diffstat (limited to 'docs/assets/css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index f35962995..c59d1aae7 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -3250,7 +3250,7 @@ button.close { } .nav-justified { - max-height: 40px; + width: 100%; } .nav-justified > li { @@ -3260,6 +3260,22 @@ button.close { text-align: center; } +.nav-justified.nav-tabs { + border-bottom: 0; +} + +.nav-justified.nav-tabs > li > a { + border-bottom: 1px solid #ddd; +} + +.nav-justified.nav-tabs > .active > a { + border-bottom-color: #ffffff; +} + +.nav-justified > li > a { + margin-right: 0; +} + .nav > .disabled > a { color: #999999; } |
