Created
August 22, 2012 15:23
-
-
Save k88hudson/3426741 to your computer and use it in GitHub Desktop.
LESS mixins for vertical and horizontal gradients with ie9 fallbacks by @k88hudson
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Usage: | |
// .gradient( "vertical", red, blue ); -> Creates a gradient from top = red to bottom = blue. | |
// .gradient( "horizonal", red, blue ); -> Creates a gradient from left = red to right = blue. | |
// .gradient( "vertical", red, blue, true ); -> Creates a gradient with a solid-color fallback. This is | |
// necessary for IE9 when the container has a border-radius of 2+ | |
// or transparency. | |
._gradient( @color1, @color2, @startLoc, @endLoc, @from, @to, @ieFallback: false, @ieGradientType: 0 ) when ( @ieFallback ) { | |
// Internal mixin for generating gradients when there are rounded corners | |
background: @color1; | |
background: -webkit-gradient( linear, @startLoc, @endLoc, color-stop( @from, @color1 ), color-stop( @to, @color2 ) ); | |
background: -webkit-linear-gradient( @startLoc, @color1 @from, @color2 @to ); | |
background: -moz-linear-gradient( @startLoc, @color1 @from, @color2 @to ); | |
background: -ms-linear-gradient( @startLoc, @color1 @from, @color2 @to ); | |
background: -o-linear-gradient( @startLoc, @color1 @from, @color2 @to ); | |
background: linear-gradient( @startLoc, @color1 ); | |
} | |
._gradient( @color1, @color2, @startLoc, @endLoc, @from, @to, @ieFallback: false, @ieGradientType: 0 ) when not ( @ieFallback ) { | |
// Internal mixin for generating gradients when there are no rounded corners | |
filter: e( %( "progid:DXImageTransform.Microsoft.Gradient(startColorstr='%d', endColorstr='%d', GradientType=%d)", @color1, @color2, @ieGradientType ) ); | |
background: -webkit-gradient( linear, @startLoc, @endLoc, color-stop( @from, @color1 ), color-stop( @to, @color2 ) ); | |
background: -webkit-linear-gradient( @startLoc, @color1 @from, @color2 @to ); | |
background: -moz-linear-gradient( @startLoc, @color1 @from, @color2 @to ); | |
background: -ms-linear-gradient( @startLoc, @color1 @from, @color2 @to ); | |
background: -o-linear-gradient( @startLoc, @color1 @from, @color2 @to ); | |
background: linear-gradient( @startLoc, @color1 ); | |
} | |
.gradient( "vertical", @color1, @color2, @fallback: false ) { | |
._gradient( @color1, @color2, top, bottom, 0%, 100%, @fallback, 0 ); | |
} | |
.gradient( "horizontal", @color1, @color2, @fallback: false ) { | |
._gradient( @color1, @color2, left, right, 0%, 100%, @fallback, 1 ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment