Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)JP
jpe @fedia.io
Posts 0
Comments 5
How can I open windows with shared set of tabs?
  • Interesting idea, but forget Firefox, I don't see how website designers could target that either. For example, if you have the same buffer open in two windows but scrolled to different positions, what value will document.scrollingElement.scrollTop have? Similarly, different windows can have different dimensions, but webpages generally expect that there's only one viewport and adjust for that.

  • Looking for a plugin/addon/theme/config recommendation for a friend who is migrating from Chrome and prefers the tab UI from there, specifically when there are way too many tabs open.
  • I've narrowed my tabs with userchrome.css so that they look like this. I think you could make the min-width even smaller so that the scrolling never happens, but then the tab icons won't be visible.

    Can't bother debugging my userchrome right now to give a reproducible example but I think this is the relevant part:

    .tabbrowser-tab[fadein]:not([pinned]) {
    	min-width: 30px !important;
    	padding-inline: 0 !important; /* not sure why I added this */
    }
    
    
  • A guide to CSS shapes and offset-path
  • It looks like some of the codepens are not working for me on FF 114 and Edge 114, for example this one where the flame is apparently supposed to rotate around the button. I guess those features are only coming later? A bit confusing since the guide makes it sound like they're already well-supported.