aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2014-12-16 19:06:57 -0800
committerChris Rebert <[email protected]>2014-12-16 19:06:57 -0800
commita8299b5b45f9b72829eead235524d2888eb2c03a (patch)
tree468a18c3d2ae31d3284952db97aaa256b9ba0032 /docs
parentea039ac72e08585c10916d5d737b691043551120 (diff)
downloadbootstrap-a8299b5b45f9b72829eead235524d2888eb2c03a.tar.xz
bootstrap-a8299b5b45f9b72829eead235524d2888eb2c03a.zip
Remove ancillary references to IE<9 in comments+docs
Diffstat (limited to 'docs')
-rw-r--r--docs/assets/css/src/docs.css2
-rw-r--r--docs/components/images.md4
-rw-r--r--docs/examples/justified-nav/justified-nav.css2
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/assets/css/src/docs.css b/docs/assets/css/src/docs.css
index c6660c747..f228255ef 100644
--- a/docs/assets/css/src/docs.css
+++ b/docs/assets/css/src/docs.css
@@ -1550,7 +1550,7 @@ h1[id] {
border-color: rgb(204,204,204); /* Restate unfocused value to make CSSLint happy that there's a pre-CSS3 fallback*/
border-color: rgba(82,168,236,.8);
outline: 0;
- outline: thin dotted \9; /* IE6-9 */
+ outline: thin dotted \9; /* IE9 */
-webkit-box-shadow: 0 0 8px rgba(82,168,236,.6);
box-shadow: 0 0 8px rgba(82,168,236,.6);
}
diff --git a/docs/components/images.md b/docs/components/images.md
index 200459d17..713023a90 100644
--- a/docs/components/images.md
+++ b/docs/components/images.md
@@ -16,8 +16,8 @@ Images in Bootstrap 3 can be made responsive-friendly via the addition of the `.
{% endhighlight %}
<div class="bs-callout bs-callout-warning">
- <h4>SVG images and IE 8-10</h4>
- <p>In Internet Explorer 8-10, SVG images with <code>.img-responsive</code> are disproportionately sized. To fix this, add <code>width: 100% \9;</code> where necessary. Bootstrap doesn't apply this automatically as it causes complications to other image formats.</p>
+ <h4>SVG images and IE 9-10</h4>
+ <p>In Internet Explorer 9-10, SVG images with <code>.img-responsive</code> are disproportionately sized. To fix this, add <code>width: 100% \9;</code> where necessary. Bootstrap doesn't apply this automatically as it causes complications to other image formats.</p>
</div>
## Image shapes
diff --git a/docs/examples/justified-nav/justified-nav.css b/docs/examples/justified-nav/justified-nav.css
index f8fcf5d13..5bc24ec33 100644
--- a/docs/examples/justified-nav/justified-nav.css
+++ b/docs/examples/justified-nav/justified-nav.css
@@ -39,7 +39,7 @@ body {
background-image: -o-linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(top), color-stop(0%, #f5f5f5), to(#e5e5e5));
background-image: linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#e5e5e5',GradientType=0 ); /* IE9 */
background-repeat: repeat-x; /* Repeat the gradient */
border-bottom: 1px solid #d5d5d5;
}