From 7fe65f2957bb19a5463719bebeb46dc65972ddf2 Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Wed, 13 Jan 2016 09:52:06 -0500 Subject: [PATCH] gradient update --- css/app.css | 4 +++- scss/mixins/_gradient.scss | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/css/app.css b/css/app.css index 144b5a9..8daeb43 100644 --- a/css/app.css +++ b/css/app.css @@ -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) { diff --git a/scss/mixins/_gradient.scss b/scss/mixins/_gradient.scss index aee39f8..e8a2b86 100644 --- a/scss/mixins/_gradient.scss +++ b/scss/mixins/_gradient.scss @@ -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)); } -- 2.17.1