MrOtherGuy / firefox-csshacks

Collection of userstyles affecting the browser
Mozilla Public License 2.0
3.38k stars 325 forks source link

mulitrow booxmarks are just stacked #203

Open Cat22 opened 2 years ago

Cat22 commented 2 years ago

All my bookmarks re stacked one above the other on the left side of the browser linux firefox 104.02 My userChrome.css imports are:

@import "CustomCSSforFx/classic/css/tabs/tabs_multiple_lines_fx81.css"; /*Is  there newer than 81? I didn't see it if there is*/
@import "firefox-csshacks/chrome/multi-row_bookmarks.css"; /**/
@import "config.css"; /**/

I attached both config files, ignore the .txt extension its the only way i could attach them as github wont allow css files to be attached userChrome.css.txt config.css.txt

MrOtherGuy commented 2 years ago

There's that second block of extra rules you have in your userChrome.css:

#PersonalToolbar #PlacesToolbarItems {
    overflow-x: visible !important;
    overflow-y: visible !important;
    display: inline-block !important;
}

That will certainly cause a problem you describe. Why do you have it - I mean what is its purpose?