diff options
| author | Mark Otto <[email protected]> | 2012-08-27 10:32:07 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-08-27 10:32:07 -0700 |
| commit | fcd08fce8faaa9fb1a72516a59d8426a496eac7a (patch) | |
| tree | f5a5d80ccb252bbd8953a48dcb54736b206dbae9 /docs | |
| parent | 54e3a26ddadb7e16b9585fe1a77c6ac9667073fb (diff) | |
| download | bootstrap-fcd08fce8faaa9fb1a72516a59d8426a496eac7a.tar.xz bootstrap-fcd08fce8faaa9fb1a72516a59d8426a496eac7a.zip | |
fixes #4578: add clearfix to .navbar-inner to clear floats
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 2b10e9344..09d85da0e 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4113,11 +4113,23 @@ input[type="submit"].btn.btn-mini { -moz-border-radius: 4px; border-radius: 4px; filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0); + *zoom: 1; -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); } +.navbar-inner:before, +.navbar-inner:after { + display: table; + line-height: 0; + content: ""; +} + +.navbar-inner:after { + clear: both; +} + .navbar .container { width: auto; } |
