aesqe / firefox-downloads-sidebar

A Firefox web extension that displays a list of your recent downloads in the sidebar
https://addons.mozilla.org/en-US/firefox/addon/downloads-sidebar/
MIT License
17 stars 3 forks source link

Icons #20

Open wvxwxvw opened 4 years ago

wvxwxvw commented 4 years ago

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

icons.zip

josalhor commented 4 years ago

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

wvxwxvw commented 4 years ago

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.

carnifexx commented 4 years ago

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.

josalhor commented 4 years ago

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

wvxwxvw commented 4 years ago

@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.