gradient update
authorIan Weller <ian@gaslightmedia.com>
Wed, 13 Jan 2016 14:52:06 +0000 (09:52 -0500)
committerIan Weller <ian@gaslightmedia.com>
Wed, 13 Jan 2016 14:52:06 +0000 (09:52 -0500)
css/app.css
scss/mixins/_gradient.scss

index 144b5a9..8daeb43 100644 (file)
@@ -6204,7 +6204,8 @@ img.alignleft, img.alignright, img.aligncenter, img.alignnone, div.wp-caption im
   #searchform div input.blogbutton {
     background: -webkit-linear-gradient(top, #6c4f53 50%, #6c4f53 100%);
     background: -moz-linear-gradient(center top, #6c4f53 50%, #6c4f53 100%);
-    background: -ms-linear-gradient(top, #6c4f53 50%, #6c4f53 100%); }
+    background: -ms-linear-gradient(top, #6c4f53 50%, #6c4f53 100%);
+    filter: progid:DXImageTransform.Microsoft.gradient StartColorStr=#6c4f53, EndColorStr=#6c4f53; }
 
 #blog-side-info {
   border-left: 1px solid grey;
@@ -7211,6 +7212,7 @@ main a {
   background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 50%, #FFFFFF 100%);
   background: -moz-linear-gradient(center top, rgba(255, 255, 255, 0) 50%, #FFFFFF 100%);
   background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 50%, #FFFFFF 100%);
+  filter: progid:DXImageTransform.Microsoft.gradient StartColorStr=rgba(255, 255, 255, 0), EndColorStr=#FFFFFF;
   background-repeat: repeat-x;
   z-index: 0; }
   @media only screen and (max-width: 40em) {
index aee39f8..e8a2b86 100644 (file)
@@ -7,4 +7,5 @@
     background: -webkit-linear-gradient(top, $from 50%, $to 100%);
     background: -moz-linear-gradient(center top, $from 50%, $to 100%);
     background: -ms-linear-gradient(top, $from 50%, $to 100%);
+    filter: progid:DXImageTransform.Microsoft.gradient((StartColorStr=$from, EndColorStr=$to));
 }