B00ze64 / FF-Menu-Icon-Plus-CSS

Add icons to Firefox menus using userChrome/userContent.css
Other
20 stars 3 forks source link

Where is the best way to integrate with CustomCSSforFx #10

Closed gabri25ele closed 2 years ago

gabri25ele commented 2 years ago

If we use completely Aris-t2's CustomCSSforFx, where is the best way to integrate with it?

B00ze64 commented 2 years ago

I use that too, I do it this way:

At the TOP of my userChrome.css (before all of Aris's stuff) ->

@import "./css/generalui/bookmark_icons_colorized.css";     /* Aris-t2 bookmarks folders [must appear BEFORE Menu Icon Plus] */
@import "./MipCss/mip_FuguePlus-Menus.css";         /* Firefox Menus  Fugue+ Theme */
@import "./MipCss/mip_FuguePlus-Panels.css";            /* Firefox Panels Fugue+ Theme */
@import "./MipCss/mip_worksheet-AddIconsToExtensions.css";  /**/

And then all of Aris's stuff below that, except of course bookmark_icons_colorized.css, since it is now the first thing in the userChrome.

Regards.