diff options
| author | Mark Otto <[email protected]> | 2013-06-03 11:58:38 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-06-03 11:58:38 -0700 |
| commit | a05f6d4cea03a61f35223eab697d3caa4dc9e24c (patch) | |
| tree | 8f58b0ade8109b38ec2d66fed660196cd8dd8486 /docs/assets/css/bootstrap.css | |
| parent | e5bdb2497e55eaf0a14a4136bbd35fbdc7395478 (diff) | |
| download | bootstrap-a05f6d4cea03a61f35223eab697d3caa4dc9e24c.tar.xz bootstrap-a05f6d4cea03a61f35223eab697d3caa4dc9e24c.zip | |
fixes #8066: add missing % functions to grid less code
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index fb11fc29c..36898557d 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -806,82 +806,82 @@ pre code { } .col-1 { - width: 0.08333333333333333; + width: 8.333333333333332%; } .col-2 { - width: 0.16666666666666666; + width: 16.666666666666664%; } .col-3 { - width: 0.25; + width: 25%; } .col-4 { - width: 0.3333333333333333; + width: 33.33333333333333%; } .col-5 { - width: 0.4166666666666667; + width: 41.66666666666667%; } .col-6 { - width: 0.5; + width: 50%; } .col-7 { - width: 0.5833333333333334; + width: 58.333333333333336%; } .col-8 { - width: 0.6666666666666666; + width: 66.66666666666666%; } .col-9 { - width: 0.75; + width: 75%; } .col-10 { - width: 0.8333333333333334; + width: 83.33333333333334%; } .col-11 { - width: 0.9166666666666666; + width: 91.66666666666666%; } @media (min-width: 768px) { .col-md-1 { - width: 0.08333333333333333; + width: 8.333333333333332%; } .col-md-2 { - width: 0.16666666666666666; + width: 16.666666666666664%; } .col-md-3 { - width: 0.25; + width: 25%; } .col-md-4 { - width: 0.3333333333333333; + width: 33.33333333333333%; } .col-md-5 { - width: 0.4166666666666667; + width: 41.66666666666667%; } .col-md-6 { - width: 0.5; + width: 50%; } .col-md-7 { - width: 0.5833333333333334; + width: 58.333333333333336%; } .col-md-8 { - width: 0.6666666666666666; + width: 66.66666666666666%; } .col-md-9 { - width: 0.75; + width: 75%; } .col-md-10 { - width: 0.8333333333333334; + width: 83.33333333333334%; } .col-md-11 { - width: 0.9166666666666666; + width: 91.66666666666666%; } .col-offset-1 { margin-left: 8.333333333333332%; |
