nex3 / firesass

FireSass allows Firebug to display the original Sass filename and line number of Sass-generated CSS styles.

Home Page:https://addons.mozilla.org/en-US/firefox/addon/103988

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FireSass

FireSass is a Firebug extension that makes Firebug display the Sass filenames and line numbers of Sass-generated CSS styles rather than those of the generated CSS.

Screenshot

Usage

First, install FireSass. Second, enable Sass's :debug_info option. If you're using Sass with a Ruby web framework, depending on the version, you probably want to do:

config.sass.debug_info = true

for Rails 3.2, or for earlier versions of Rails

Sass::Plugin.options[:debug_info] = true

Add this to config/environment.rb in Rails, or config.ru in other Ruby frameworks.

If you're using Compass, instead do:

sass_options = {:debug_info => true}

Add this to config/compass.rb, or wherever else your Compass configuration file is.

If you're using Sass from the command line, just pass in the --debug-info flag. Finally, delete all the existing CSS files so that they'll be regenerated.

Compatibility

FireSass requires Sass 3.0 or later.

FireSass should work with all versions of Firefox after and including 3.0, and all FireBug versions 1.4 and 1.5. It might work with FireBug 1.6 (which is in development at time of writing), but that's not guaranteed.

FireSass currently requires the development version of Sass, available from GitHub.

About

FireSass allows Firebug to display the original Sass filename and line number of Sass-generated CSS styles.

https://addons.mozilla.org/en-US/firefox/addon/103988

License:Other


Languages

Language:JavaScript 77.9%Language:Ruby 22.1%