]> git.ipfire.org Git - thirdparty/bulma.git/commitdiff
Remove @debug statements 334/head
authorDaniel Bayerlein <daniel.bayerlein@googlemail.com>
Mon, 3 Oct 2016 12:01:08 +0000 (14:01 +0200)
committerDaniel Bayerlein <daniel.bayerlein@googlemail.com>
Mon, 3 Oct 2016 12:01:08 +0000 (14:01 +0200)
sass/utilities/functions.sass

index 02dede38a7a78194893150105418d2f4b255ddbd..fa09024523d5c17a2fbd7152bc30d22216b9db07 100644 (file)
   @return (map-get($color-rgb, 'red') * .2126) + (map-get($color-rgb, 'green') * .7152) + (map-get($color-rgb, 'blue') * .0722)
 
 @function findColorInvert($color)
-  // @if (colorLuminance($color) > 0.67)
-  //   @return rgba(black, 0.7)
-  @debug #{$color}
-  @debug colorLuminance($color)
   @if (colorLuminance($color) > 0.55)
     @return rgba(black, 0.7)
   @else