From: Ian Weller Date: Wed, 6 Apr 2016 13:35:57 +0000 (-0400) Subject: gradient fix, now goes from the top X-Git-Tag: v1.0.0^2~97 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=1c186a8f1ef37d3ac6e26a13af35913cb8af538a;p=WP-Themes%2Fthinkdunes.git gradient fix, now goes from the top --- diff --git a/css/app.css b/css/app.css index 0ab9e12..2960d34 100644 --- a/css/app.css +++ b/css/app.css @@ -6199,9 +6199,9 @@ img.alignleft { max-width: 100%; text-align: center; } #searchform div input.blogbutton { - background: -webkit-linear-gradient(left, #1999ce 45%, #107098 100%); + background: -webkit-linear-gradient(top, #1999ce 45%, #107098 100%); background: -moz-linear-gradient(center top, #1999ce 45%, #107098 100%); - background: -ms-linear-gradient(left, #1999ce 45%, #107098 100%); } + background: -ms-linear-gradient(top, #1999ce 45%, #107098 100%); } #blog-side-info { border-left: 1px solid grey; @@ -7013,9 +7013,9 @@ header .searchform input.button { background-size: auto; margin-top: auto; } } .common-foot ul#quick-links { - background: -webkit-linear-gradient(left, #fdfcf3 45%, rgba(253, 252, 243, 0) 100%); + background: -webkit-linear-gradient(top, #fdfcf3 45%, rgba(253, 252, 243, 0) 100%); background: -moz-linear-gradient(center top, #fdfcf3 45%, rgba(253, 252, 243, 0) 100%); - background: -ms-linear-gradient(left, #fdfcf3 45%, rgba(253, 252, 243, 0) 100%); + background: -ms-linear-gradient(top, #fdfcf3 45%, rgba(253, 252, 243, 0) 100%); list-style: none; margin: 0; padding-bottom: 200px; } diff --git a/scss/mixins/_gradient.scss b/scss/mixins/_gradient.scss index eb77d50..b72b9c0 100644 --- a/scss/mixins/_gradient.scss +++ b/scss/mixins/_gradient.scss @@ -4,7 +4,7 @@ */ @mixin gradient($from, $to) { - background: -webkit-linear-gradient(left, $from 45%, $to 100%); + background: -webkit-linear-gradient(top, $from 45%, $to 100%); background: -moz-linear-gradient(center top, $from 45%, $to 100%); - background: -ms-linear-gradient(left, $from 45%, $to 100%); + background: -ms-linear-gradient(top, $from 45%, $to 100%); }