• Ephera
    link
    fedilink
    53 years ago

    It’s really starting to annoy me how even technical people are taking to this change as if it’s some terminal fate that needs exploiting of every possible workaround to “fix” it.

    Firefox’s UI can be changed pretty much however you want with a userChrome.css file. Knowing the basics of CSS, it’s not even that hard to write your own theme changes.

    For example, as far as I can tell, most people are annoyed by the tab shape. That takes 4 lines of CSS to change it to essentially the same shape as it was before:

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

    And figuring that out took me like 10 minutes, without looking up how other people did it.

    Just in general, I would expect technical people that are so picky about their theme, to have their own theme anyways.
    Obviously that might break, when Mozilla moves UI elements around, but once you’ve fixed that, you really wouldn’t need to care what Mozilla has changed.