-
Notifications
You must be signed in to change notification settings - Fork 30
Closed
Description
One of the first steps is implementation of new Firebug theme for native tools. There should also be a new option that allows activation/deactivation of the theme. See the screenshot.
Note that the active theme appends a new class on document-element in the Toolbox. For now this is hardcoded inside chrome.js file, see loadFirebugTheme() method.
doc.documentElement.classList.add("theme-firebug");
The code that appends the new option into Toolbox options dialog might be in chrome.js module or perhaps new module can be created (and used from chrome.js).
Honza