diff options
| author | Mark Otto <[email protected]> | 2013-06-03 21:51:35 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-06-03 21:51:35 -0700 |
| commit | 45c5b4e45c1d6479801dc205e13b350e334ebcd0 (patch) | |
| tree | d4d163b523baeb341225eb7cc005c51cb415cc65 /docs/assets/css/bootstrap.css | |
| parent | 286955167a53862fdde84359ab3c21a1e4237627 (diff) | |
| download | bootstrap-45c5b4e45c1d6479801dc205e13b350e334ebcd0.tar.xz bootstrap-45c5b4e45c1d6479801dc205e13b350e334ebcd0.zip | |
restore .col-*-12 classes for now
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 36898557d..8642bf95d 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -786,6 +786,7 @@ pre code { .col-9, .col-10, .col-11, +.col-12, .col-lg-1, .col-lg-2, .col-lg-3, @@ -796,7 +797,8 @@ pre code { .col-lg-8, .col-lg-9, .col-lg-10, -.col-lg-11 { +.col-lg-11, +.col-lg-12 { position: relative; float: left; width: 100%; @@ -849,6 +851,10 @@ pre code { width: 91.66666666666666%; } +.col-12 { + width: 100%; +} + @media (min-width: 768px) { .col-md-1 { width: 8.333333333333332%; @@ -883,6 +889,9 @@ pre code { .col-md-11 { width: 91.66666666666666%; } + .col-md-12 { + width: 100%; + } .col-offset-1 { margin-left: 8.333333333333332%; } @@ -1018,6 +1027,9 @@ pre code { .col-lg-11 { width: 91.66666666666666%; } + .col-lg-12 { + width: 100%; + } } @media screen and (min-width: 768px) { |
