]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Update justified-nav.css 9973/head
authorChristian <christianoliff@yahoo.com>
Wed, 21 Aug 2013 07:30:12 +0000 (16:30 +0900)
committerChristian <christianoliff@yahoo.com>
Wed, 21 Aug 2013 07:30:12 +0000 (16:30 +0900)
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

index 7837acf40bac547c521a2db2100d8a7962b69540..c669d44c7569140b1d94bc5555f068638c91df37 100644 (file)
@@ -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 */