![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
SassScript extension to bring the math behind Photoshop's powerful softlight gradient blending mode to Sass, which eliminates the need for manually making softlight gradient backgrounds.
Add this line to your application's Gemfile:
gem 'sass-softlight'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install sass-softlight
The script extends Sass's default script functions so you can make a method call to softlight() in your .sass or .scss files as you would with other Sass functions:
background-image: -webkit-linear-gradient( softlight( $color1, $color2 ), softlight( $color1, $color2 ) )
The softlight method takes to arguments: the source color and the canvas color (in that order). Both colors must be Sass Color objects.
If you want to use the gradient blending mode as it appears in Photoshop then use one color and mix it with white and black using the softlight method:
background-image: -webkit-linear-gradient( softlight( white, $color2 ), softlight( black, $color2 ) )
NOTE: Gem installing is currently not working. To work around this issue, download sass-softlight.rb and place it in your Rails load path (your_app_dir/lib/ or your_app_dir/config/initializers/). Stop your server and reset your application's cache:
$ bundle exex rake tmp:clear
Restart your server. The softlight method should compile in the Sass just fine now.
git checkout -b feature/my-new-feature
)git commit -am 'Added some feature'
)git push origin feature/my-new-feature
)Written by Albert Tholen.
Sponsored by Lua Technologies, Inc.
FAQs
Unknown package
We found that sass-softlight demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.