From c76b7a53a416f74ced4ad7124e38a305ac477bb5 Mon Sep 17 00:00:00 2001 From: Christian Date: Wed, 21 Aug 2013 16:30:12 +0900 Subject: Update justified-nav.css Removed unnecessary ms-linear-gradient prefix. There was never a stable release of IE that supported -ms- prefixed gradients, those were only in preview versions (stable IE10 supports both prefixed and unprefixed gradients). (source: http://lea.verou.me/2013/04/can-we-get-rid-of-gradient-prefixes/) --- examples/justified-nav/justified-nav.css | 1 - 1 file changed, 1 deletion(-) (limited to 'examples') diff --git a/examples/justified-nav/justified-nav.css b/examples/justified-nav/justified-nav.css index 7837acf40..c669d44c7 100644 --- a/examples/justified-nav/justified-nav.css +++ b/examples/justified-nav/justified-nav.css @@ -38,7 +38,6 @@ body { background-image: -moz-linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%); /* FF3.6+ */ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */ background-image: -webkit-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* Chrome 10+,Safari 5.1+ */ - background-image: -ms-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* IE10+ */ background-image: -o-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* Opera 11.10+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */ background-image: linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* W3C */ -- cgit v1.2.3 From c4c87fede5581b848abacc5810afa43b31d6f945 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 22 Aug 2013 23:25:26 -0700 Subject: fixes #9880: use correct grid classes on jumbotron example --- examples/jumbotron/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples') diff --git a/examples/jumbotron/index.html b/examples/jumbotron/index.html index 86255fca3..31d11eebb 100644 --- a/examples/jumbotron/index.html +++ b/examples/jumbotron/index.html @@ -77,17 +77,17 @@
-
+

Heading

Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.

View details »

-
+

Heading

Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.

View details »

-
+

Heading

Donec sed odio dui. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Vestibulum id ligula porta felis euismod semper. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

View details »

-- cgit v1.2.3