Style Editor

The Style Editor enables you to:

  • view and edit all the stylesheets associated with a page

  • create new stylesheets from scratch and apply them to the page

  • import existing stylesheets and apply them to the page



To open the Style Editor select the Style Editor panel in the Web Developer Tools, accessible from the Browser Tools submenu

../../_images/style-editor.png

The Style Editor is divided into three main sections:

The style sheet pane

The style sheet pane, on the left, lists all the style sheets being used by the current document. You can quickly toggle the use of a given sheet on and off by clicking the eyeball icon to the left of the sheet’s name. You can save any changes you’ve made to the style sheet to your local computer by clicking the Save button in the bottom-right corner of each sheet’s entry in the list.

From Firefox 40 onwards, the style sheet pane also includes a context menu that lets you open the selected style sheet in a new tab.

The editor pane

On the right is the editor pane. This is where the source for the selected style sheet is available for you to read and edit. Any changes you make are immediately applied to the page. This makes it easy to experiment with, revise, and test changes. Once you’re satisfied with your changes, you can save a copy locally by clicking the Save button on the sheet’s entry in the style sheet pane.

The editor provides line numbers and syntax highlighting to help make it easier to read your CSS. It also supports a number of keyboard shortcuts.

The Style Editor automatically de-minimizes style sheets that it detects, without affecting the original. This makes it much easier to work on pages that have been optimized.

The Style Editor supports autocomplete. Just start typing, and it will offer you a list of suggestions.

../../_images/style-editor-autocomplete.png

You can switch autocomplete off in the Style Editor settings.

The At-rules sidebar

The Style Editor displays a sidebar on the right-hand side whenever the current sheet contains any of the following At-rules:

The sidebar lists the rules and provides a link to the line of the sheet where the rule is defined. Click an item to jump to that rule in the sheet. For @media rules, the condition text of the rule is greyed-out if the media query doesn’t currently apply.

../../_images/style-editor-at-rules-sidebar-detail.png

The At-rules sidebar works especially well with Responsive Design View for creating and debugging responsive layouts:



From Firefox 46 onwards, if an @media rule contains a screen size in a condition, then it is made clickable: clicking it then resizes the screen to that size using the Responsive Design View.

Creating and importing style sheets

You can create a new style sheet by clicking the New button in the toolbar. Then you can just start entering CSS into the new editor and watch as the new styles are applied in real time just like changes to the other sheets.

You can load a style sheet from disk and apply it to the page by clicking the Import button.

Source map support



Web developers often create CSS files using a preprocessor like Sass, Less, or Stylus. These tools generate CSS files from a richer and more expressive syntax. If you do this, being able to see and edit the generated CSS is not so useful, because the code you maintain is the preprocessor syntax, not the generated CSS. So you’d need to edit the generated CSS, then manually work out how to reapply that to the original source.

Source maps enable the tools to map back from the generated CSS to the original syntax, so they can display, and allow you to edit, files in the original syntax. From Firefox 29 onwards, the Style Editor can understand CSS source maps.

This means that if you use, for example, Sass, then the Style Editor will show you, and allow you to edit, Sass files, rather than the CSS that is generated from them:

../../_images/style-editor-sourcemap.png

For this to work, you must:

  • use a CSS preprocessor that understands the Source Map Revision 3 proposal. Currently this means Sass 3.3.0 or above or the 1.5.0 version of Less. Other preprocessors are actively working on adding support, or considering it.

  • actually instruct the preprocessor to generate a source map, for example by passing the --source-map argument to the Lass command-line tool, but in some preprocessors like Sass, source maps are generated by default and you don’t need to do anything.

Viewing original sources

Now, if you check “Show original sources” in the Style Editor settings, the links next to CSS rules in the Rules view will link to the original sources in the Style Editor.

From Firefox 35 onwards original sources are displayed by default.

Editing original sources

You can also edit the original sources in the Style Editor and see the results applied to the page immediately. To get this to work there are two extra steps.

First, set up your preprocessor so it watches the original source and automatically regenerates the CSS when the source changes. With Sass you can do this by passing the --watch option:

sass index.scss:index.css --watch

Next, save the original source in the Style Editor by clicking the “Save” button next to the file, and saving it over the original file.

Now when you make changes to the source file in the Style Editor the CSS is regenerated and you can see the changes right away.

Keyboard shortcuts