You are not logged in.

#1 2021-06-02 09:05:59

mkoskar
Member
Registered: 2014-07-16
Posts: 64
Website

Modify look of Firefox 89 tabs

Firefox 89 has a new design of tabs.

-27s.png

Here's my quick & dirty take to bring traditional-looking tabs back.
It involves creating <profile_path>/chrome/userChrome.css like one below.

1) round top borders

/* userChrome.css */

.tab-background {
    border-radius: var(--tab-border-radius) var(--tab-border-radius) 0 0 !important;
    margin-block: var(--proton-tab-block-margin) 0 !important;
}

-27z.png

2) flat

/* userChrome.css */

.tab-background {
    border-radius: 0 !important;
    margin-block: 0 !important;
}

-27i.png

Offline

#2 2021-06-02 09:24:27

icar
Member
From: Catalunya
Registered: 2020-07-31
Posts: 442

Re: Modify look of Firefox 89 tabs

about:config -> browser.proton.enabled -> false

Offline

#3 2021-06-02 09:42:24

mkoskar
Member
Registered: 2014-07-16
Posts: 64
Website

Re: Modify look of Firefox 89 tabs

icar wrote:

about:config -> browser.proton.enabled -> false

Hah, interesting! Thx for sharing!

I see it changes some other bits about toolbars here and there, some menus too.
Haven't been for the humongous X (close) buttons on tabs I would use it permanently.

Offline

#4 2021-06-02 10:00:08

icar
Member
From: Catalunya
Registered: 2020-07-31
Posts: 442

Re: Modify look of Firefox 89 tabs

There are also:

  • browser.proton.contextmenus.enabled

  • browser.proton.doorhangers.enabled

  • browser.proton.modals.enabled

Offline

Board footer

Powered by FluxBB