firefox-downloads-sidebar icon indicating copy to clipboard operation
firefox-downloads-sidebar copied to clipboard

Icons

Open wvxwxvw opened this issue 5 years ago • 5 comments

screenshot 2019-12-17 09-44-15 001

icons.zip

wvxwxvw avatar Dec 17 '19 06:12 wvxwxvw

Excuse me, can you please comment on what may be the issue?

josalhor avatar Dec 17 '19 11:12 josalhor

It's not a problem. These are light icons for a dark theme. I just shared. I have already reassembled the extension and at the same time translated into my language. Since the author did not take care of the possibility of localization.

wvxwxvw avatar Dec 17 '19 11:12 wvxwxvw

Sorry that I have to ask, but how do you get this dark theme for the downloads sidebar? I couldn't find any options in the addon and I have shadowfox already installed.

carnifexx avatar Dec 18 '19 17:12 carnifexx

@wvxwxvw In terms of localization, you just rehard coded the items, right?

josalhor avatar Dec 18 '19 19:12 josalhor

@carnifexx Code for userContent.css, works for esr68, above is didn't check. Replace INPUT_EXT_ID with the ID of the desired extension, you can find on about:support. This works for many aspects of extensions, pop-up menus (built-in), pages, sidebars, dialogs. Values change independently, it is possible to apply rgba "rgba(0,0,0,0.0)" and html "#000000" colors. @-moz-document regexp("moz-extension\:\/\/.*\/INPUT_EXT_ID\.html") { body { background-color: #2A3037 !important; color: silver !important; } #status { background-color: transparent !important; color: white !important; } #status::selection { background-color: darkmagenta !important; color: white !important; } }

Or in the extension itself, in panel.css is: html, body { height: 100%; width: 100%; margin: 0; box-sizing: border-box; background-color: #FFFFFF; }

@josalhor Take any extension, open in 7-zip, change it what you want, remove the signature, i.e. folder "META-INF", going for AMO, sign the extension, use.

You can not sign if you have turned off signature verification in the browser.

wvxwxvw avatar Dec 19 '19 06:12 wvxwxvw