diff options
| author | Mark Otto <[email protected]> | 2013-03-30 13:23:18 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-03-30 13:23:18 -0700 |
| commit | aee25786a73820b6c502ba099c55fb4008b4bd1e (patch) | |
| tree | 4d8090fee71f18822588ddc787818fe4245e3f8e /docs/assets/css/bootstrap.css | |
| parent | 8d8f4e0cdda60172e2995cf2234ec1d272d14ae8 (diff) | |
| download | bootstrap-aee25786a73820b6c502ba099c55fb4008b4bd1e.tar.xz bootstrap-aee25786a73820b6c502ba099c55fb4008b4bd1e.zip | |
fuck everything about .clear_float() -- restore .clearfix() as mixin
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 123 |
1 files changed, 119 insertions, 4 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 0afdb0ab8..4f034974a 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -365,12 +365,12 @@ cite { font-style: normal; } -.muted { +.text-muted { color: #999999; } -a.muted:hover, -a.muted:focus { +a.text-muted:hover, +a.text-muted:focus { color: #808080; } @@ -589,6 +589,16 @@ dd { clear: both; } +.dl-horizontal:before, +.dl-horizontal:after { + display: table; + content: " "; +} + +.dl-horizontal:after { + clear: both; +} + .dl-horizontal dt { float: left; width: 160px; @@ -746,6 +756,16 @@ pre code { clear: both; } +.container:before, +.container:after { + display: table; + content: " "; +} + +.container:after { + clear: both; +} + .row { margin-right: -15px; margin-left: -15px; @@ -761,6 +781,16 @@ pre code { clear: both; } +.row:before, +.row:after { + display: table; + content: " "; +} + +.row:after { + clear: both; +} + [class*="col-span-"] { position: relative; min-height: 1px; @@ -1498,6 +1528,16 @@ select:focus:invalid:focus { clear: both; } +.form-actions:before, +.form-actions:after { + display: table; + content: " "; +} + +.form-actions:after { + clear: both; +} + .help-block, .help-inline { color: #737373; @@ -1691,6 +1731,14 @@ select:focus:invalid:focus { .form-horizontal .control-group:after { clear: both; } + .form-horizontal .control-group:before, + .form-horizontal .control-group:after { + display: table; + content: " "; + } + .form-horizontal .control-group:after { + clear: both; + } .form-horizontal .control-group input, .form-horizontal .control-group select, .form-horizontal .control-group textarea { @@ -2763,7 +2811,6 @@ fieldset[disabled] .btn-link:focus { font-weight: normal; line-height: 20px; color: #333333; - white-space: nowrap; } .dropdown-menu > li > a:hover, @@ -2968,6 +3015,16 @@ button.close { clear: both; } +.nav:before, +.nav:after { + display: table; + content: " "; +} + +.nav:after { + clear: both; +} + .nav > li { display: block; } @@ -3126,6 +3183,16 @@ button.close { clear: both; } +.tabbable:before, +.tabbable:after { + display: table; + content: " "; +} + +.tabbable:after { + clear: both; +} + .tab-content > .tab-pane, .pill-content > .pill-pane { display: none; @@ -3222,6 +3289,16 @@ button.close { clear: both; } +.navbar:before, +.navbar:after { + display: table; + content: " "; +} + +.navbar:after { + clear: both; +} + .navbar .nav { margin-top: 15px; } @@ -3483,6 +3560,14 @@ button.close { .navbar .nav:after { clear: both; } + .navbar .nav:before, + .navbar .nav:after { + display: table; + content: " "; + } + .navbar .nav:after { + clear: both; + } .navbar .nav.pull-right { float: right; } @@ -3615,6 +3700,16 @@ button.close { clear: both; } +.btn-toolbar:before, +.btn-toolbar:after { + display: table; + content: " "; +} + +.btn-toolbar:after { + clear: both; +} + .btn-toolbar .btn-group { float: left; } @@ -3880,6 +3975,16 @@ button.close { clear: both; } +.pager:before, +.pager:after { + display: table; + content: " "; +} + +.pager:after { + clear: both; +} + .pager li { display: inline; } @@ -4027,6 +4132,16 @@ button.close { clear: both; } +.modal-footer:before, +.modal-footer:after { + display: table; + content: " "; +} + +.modal-footer:after { + clear: both; +} + .modal-footer .btn + .btn { margin-bottom: 0; margin-left: 5px; |
