MrOtherGuy / firefox-csshacks

Collection of userstyles affecting the browser
Mozilla Public License 2.0
3.28k stars 319 forks source link

line at bottom of tabs #98

Open Cat22 opened 3 years ago

Cat22 commented 3 years ago

openSuse Tumbleweed KDE 5.78.0 Plasma 5.20.5 Qt: 5.15.2 Firefox 86.0

I see a line at the bottom of each tab - how do i get rid of that? Theme or no theme the issue is the same, see pic attached. my userChome.css is also shown here in case that's necessary. Also, i hesitate to just update my git because other than this line thing its working very well (should i update? How do i know if i have the latest version already?) Thanks line_issue

`@import "CustomCSSforFx/classic/css/tabs/tabs_multiple_lines_fx81.css"; /**/ @import "config.css"; /**/

/ MULTIROW BOOKMARKS /

PersonalToolbar {

max-height: unset !important}

PlacesToolbar > hbox:first-child {

display: block}

PlacesToolbarItems {

display: flex; flex-wrap: wrap} `

Git info: `$ git fetch --dry-run remote: Enumerating objects: 106, done. remote: Counting objects: 100% (106/106), done. remote: Compressing objects: 100% (23/23), done. remote: Total 106 (delta 82), reused 98 (delta 81), pack-reused 0 Receiving objects: 100% (106/106), 20.66 KiB | 1.38 MiB/s, done. Resolving deltas: 100% (82/82), completed with 64 local objects. From https://github.com/Aris-t2/CustomCSSforFx 18ccc1e..14e8b1d master -> origin/master

MrOtherGuy commented 3 years ago

I'm pretty sure your multi-row tabs css is what causes the issue, and since it seems to be from Aris-t2s repository you would be better opening a new issue there.

You could also try using multi-row tabs from this repository and see that works better for you.

troyengel commented 3 years ago

I have (had) the same issue not using anything but stock theme and defaults; using the current non_floating_sharp_tabs.css I figured out we can add this to it:

.tabbrowser-tab[visuallyselected="true"] {
  appearance: tab !important;
}

(using "auto" also seems to work in place of "tab") - using the Browser Toolbox I noticed an appearance: none; being set on a parent element and just played with it a little, it works well for me on FF91/Linux. It does cause the active tab to regain a slight background-color highlight (which I like but it may depend on your underlying desktop theme).

Screenshot at 2021-08-13 10-38-58

Cat22 commented 3 years ago

That seems to have fixed it - thaks