MrOtherGuy / firefox-csshacks

Collection of userstyles affecting the browser
Mozilla Public License 2.0
3.34k stars 323 forks source link

Firefox 88 vi Firefox 108 or106 #220

Closed ghost closed 2 years ago

ghost commented 2 years ago

Hi Team I would like ask if is possible put for Firefox 108 or106 tab like was in Firefox 88. Only tab connect split area .Also the same color.

Firefox 88 has ---4,5cm Firefox 106-108 has --5.5cm

Picture show it . 1

MrOtherGuy commented 2 years ago

There is this style

If you want to change size of things then you can go to about:config and set browser.compactmode.show to true and then activate compact density from customization mode.

As for colors, you can use any theme you like from addons store. This one looks pretty close to what you have in your screenshot

ghost commented 2 years ago

Yes this is works nice .May I ask you last question .It is possible fill my icon in new Firefox for black color only icon .

2

MrOtherGuy commented 2 years ago

It is possible fill my icon in new Firefox for black color only icon .

Sorry, but I don't understand what you are asking.

ghost commented 2 years ago

You see small folders into tab new Firefox has white inside.I want to fill with black .This small icon.Do you see different .??

3

ghost commented 2 years ago

4

MrOtherGuy commented 2 years ago

You would need to find a custom icon you want to use. But once you have that then you can use this CSS to make Firefox use it:

.bookmark-item[container]{
  list-style-image: url("icon.svg") !important;
}

In this case you would have your custom icon saved as "icon.svg" int the same folder where your userChrome.css is.

ghost commented 2 years ago

This code can I also use for green padlock ssl fill all icon .????? not as new Firefox has .

MrOtherGuy commented 2 years ago

You cam make the verified padlock green like this:

#identity-box[pageproxystate="valid"].verifiedDomain #identity-icon{
  fill: green;
}

But similarly to bookmark icons, since the icons have different visual style nowadays, you can't use CSS to make the insides of that padlock green. Again you need to create your custom icon for that.

ghost commented 2 years ago

Thanks you a lot but really I do not know where I find that small icon icon.svg.The old firefox 88 do not have this inside .Location ???

MrOtherGuy commented 2 years ago

I don't have old Firefox installed, so if you want to use that same old icon file then you need to find it yourself. You can use browser toolbox to inspect the UI document and find its chrome:// address, then input that address to urlbar to open it and then save the image. But I can't do that for you.

In the off-chance that the old image is stored in same address than what it is currently then the address would be chrome://global/skin/icons/security.svg

ghost commented 2 years ago

Yes this works But icon not full of back color inside .?? jar:file:///C:/Program%20Files/Firefox%2088/omni.ja!/chrome/toolkit/skin/classic/global/icons/folder.svg

5

MrOtherGuy commented 2 years ago

Open the file and save a copy of it into your chrome folder. I doubt Firefox allows you to link to another jar archive.

Also, you must use !important tag in your userChrome.css when trying to override the original list-style-image.

ghost commented 2 years ago

Thanks you a lot .This is amazing support.Respects !!!