diff options
| author | Mark Otto <[email protected]> | 2012-06-19 20:01:03 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-06-19 20:01:03 -0700 |
| commit | ce140662a0a52d8ff2cd1acee4a57591d336249d (patch) | |
| tree | 414932c1dc2f36328c70b82569bd0eb91e3f9e61 | |
| parent | 9df832b4bb81d80fd02b4fe6cc9ea826b0b0454e (diff) | |
| download | bootstrap-ce140662a0a52d8ff2cd1acee4a57591d336249d.tar.xz bootstrap-ce140662a0a52d8ff2cd1acee4a57591d336249d.zip | |
remove unused container reset
| -rw-r--r-- | docs/assets/css/bootstrap-responsive.css | 8 | ||||
| -rw-r--r-- | docs/assets/css/bootstrap.css | 4 | ||||
| -rw-r--r-- | less/mixins.less | 4 |
3 files changed, 4 insertions, 12 deletions
diff --git a/docs/assets/css/bootstrap-responsive.css b/docs/assets/css/bootstrap-responsive.css index 06e55c0b4..c53027343 100644 --- a/docs/assets/css/bootstrap-responsive.css +++ b/docs/assets/css/bootstrap-responsive.css @@ -215,9 +215,7 @@ float: left; margin-left: 20px; } - .container, - .navbar-fixed-top .container, - .navbar-fixed-bottom .container { + .container { width: 724px; } .span12 { @@ -451,9 +449,7 @@ float: left; margin-left: 30px; } - .container, - .navbar-fixed-top .container, - .navbar-fixed-bottom .container { + .container { width: 1170px; } .span12 { diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 1726c41cb..56405b5ff 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -194,9 +194,7 @@ a:hover { margin-left: 20px; } -.container, -.navbar-fixed-top .container, -.navbar-fixed-bottom .container { +.container { width: 940px; } diff --git a/less/mixins.less b/less/mixins.less index 4f204d1af..bc9fe1e93 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -578,9 +578,7 @@ } // Set the container width, and override it for fixed navbars in media queries - .container, - .navbar-fixed-top .container, - .navbar-fixed-bottom .container { .span(@gridColumns); } + .container { .span(@gridColumns); } // generate .spanX and .offsetX .spanX (@gridColumns); |
