bmFtZQ / edge-frfox

A Firefox userChrome.css theme that aims to recreate the look and feel of Microsoft Edge.
MIT License
696 stars 38 forks source link

active tab bottom corners are not rounded and not smooth at all #137

Closed Kolcha closed 8 months ago

Kolcha commented 8 months ago

Description

both left and right bottom corners of active tab are not rounded, top corners also look "not so round"

Screenshot_20240318_151351

surprisingly, it looks fine with some older version found in another theme based on this one (that's how I found this nice project)

Screenshot_20240318_151446

Configuration

Notes:

Kolcha commented 8 months ago

some experimentation shown that the issue is caused by some theme installed from addons.mozilla.org, disabling it fixes the issue

sorry for bothering you

bmFtZQ commented 8 months ago

Are you using a custom theme?

If so the theme you are using might be adding an outline around the tab. For example, in the Firefox Alpenglow theme it looks like this, with a purple outline around the tab:

image

Some themes might an outline around the tab that uses the same colour as the toolbar, this causes what you see here. One fix for this would be to just disable the outline by adding this code to userChrome.css or to a file named custom.css inside the chrome folder.

#TabsToolbar {
  --lwt-tab-line-color: unset !important;
}

Firefox Alpenglow after disabling the outline colour: image

Edit: just saw your reply, if you still want to use that theme you can add the CSS code above to disable the outline specifically.