Sha256: 93cd9860c76819fb2c5aa5b8aa4daa206b97e16cab5bb86fc1f6e0d35261f3e8
Contents?: true
Size: 1.51 KB
Versions: 2
Compression:
Stored size: 1.51 KB
Contents
@import "photoshop-blend-modes"; $gradient-overlay-blend-mode: normal !default; $gradient-overlay-opacity: 100% !default; $gradient-overlay-angle: 90deg !default; $gradient-overlay-scale: 100% !default; $gradient-overlay-color-stops: (#000 0%, #fff 100%) !default; // Compass Extension Installation // -------------------------- @function photoshop-gradient-overlay( $bg-color, $blend: $gradient-overlay-blend-mode, $opacity: $gradient-overlay-opacity, $angle: $gradient-overlay-angle, $scale: $gradient-overlay-scale, $color-stops: $gradient-overlay-color-stops ) { // 0deg = north in CSS; 0deg = east in Photoshop. $css-angle: $angle - 90deg; $css-color-stops: (); @for $i from 1 through length($color-stops) { $blended-color: photoshop-blend($blend, $bg-color, nth( nth( $color-stops, $i ), 1 ), percentage-to-decimal($opacity)); $stop: join( $blended-color, stop-scale( nth( nth( $color-stops, $i ), 2 ), $scale ), space ); $css-color-stops: append($css-color-stops, $stop, comma); } @return linear-gradient($css-angle, $css-color-stops); } // Adjust the color-stops based on the scale value @function stop-scale($stop, $scale) { $stop: percentage-to-decimal($stop); $scale: percentage-to-decimal($scale); @return $scale * $stop - (0.5 * ($scale - 1)); } // Convert percentage units to decimal units @function percentage-to-decimal($percentage) { @if unit($percentage) == '%' { $percentage: $percentage/100%; } @return $percentage; }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
compass-photoshop-gradient-overlay-2.0.1 | stylesheets/_photoshop-gradient-overlay.scss |
compass-photoshop-gradient-overlay-2.0.0 | stylesheets/_photoshop-gradient-overlay.scss |