diff options
| author | Mark Otto <[email protected]> | 2012-09-25 22:48:02 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-09-25 22:48:02 -0700 |
| commit | c59e5251e12a57b5f305b4996d6f164b71c7f22c (patch) | |
| tree | 8af0493bf25be4484dad37aa41613fce6ac7399e /docs/assets/css/bootstrap.css | |
| parent | f12946be5a8e8529f64606ca73fe06e48f9fd583 (diff) | |
| download | bootstrap-c59e5251e12a57b5f305b4996d6f164b71c7f22c.tar.xz bootstrap-c59e5251e12a57b5f305b4996d6f164b71c7f22c.zip | |
initial pass at removing navbar-inner from .navbar component
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 64 |
1 files changed, 14 insertions, 50 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 057753c3b..4e7d61c2f 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4046,40 +4046,28 @@ input[type="submit"].btn::-moz-focus-inner { } .navbar { + padding: 0 20px; margin-bottom: 20px; overflow: visible; color: #777777; -} - -.navbar-inner { - min-height: 40px; - padding-right: 20px; - padding-left: 20px; - background-color: #fafafa; - background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2)); - background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2); - background-image: -o-linear-gradient(top, #ffffff, #f2f2f2); - background-image: linear-gradient(to bottom, #ffffff, #f2f2f2); - background-repeat: repeat-x; + background-color: #f2f2f2; border: 1px solid #d4d4d4; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; - filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0); -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 { +.navbar:before, +.navbar:after { display: table; line-height: 0; content: ""; } -.navbar-inner:after { +.navbar:after { clear: both; } @@ -4206,9 +4194,6 @@ input[type="submit"].btn::-moz-focus-inner { .navbar-static-top { position: static; margin-bottom: 0; -} - -.navbar-static-top .navbar-inner { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; @@ -4220,27 +4205,19 @@ input[type="submit"].btn::-moz-focus-inner { right: 0; left: 0; z-index: 1030; - margin-bottom: 0; -} - -.navbar-fixed-top .navbar-inner, -.navbar-static-top .navbar-inner { - border-width: 0 0 1px; -} - -.navbar-fixed-bottom .navbar-inner { - border-width: 1px 0 0; -} - -.navbar-fixed-top .navbar-inner, -.navbar-fixed-bottom .navbar-inner { padding-right: 0; padding-left: 0; + margin-bottom: 0; + border-width: 0 0 1px; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } +.navbar-fixed-bottom { + border-width: 1px 0 0; +} + .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container { @@ -4251,8 +4228,8 @@ input[type="submit"].btn::-moz-focus-inner { top: 0; } -.navbar-fixed-top .navbar-inner, -.navbar-static-top .navbar-inner { +.navbar-fixed-top, +.navbar-static-top { -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1); @@ -4260,9 +4237,6 @@ input[type="submit"].btn::-moz-focus-inner { .navbar-fixed-bottom { bottom: 0; -} - -.navbar-fixed-bottom .navbar-inner { -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1); @@ -4459,18 +4433,8 @@ input[type="submit"].btn::-moz-focus-inner { .navbar-inverse { color: #999999; -} - -.navbar-inverse .navbar-inner { - background-color: #1b1b1b; - background-image: -moz-linear-gradient(top, #222222, #111111); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111)); - background-image: -webkit-linear-gradient(top, #222222, #111111); - background-image: -o-linear-gradient(top, #222222, #111111); - background-image: linear-gradient(to bottom, #222222, #111111); - background-repeat: repeat-x; + background-color: #111111; border-color: #252525; - filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0); } .navbar-inverse .brand, |
