Author Topic: New (Rev 89) Firefox UI (puke)  (Read 1082 times)

T42

  • Apprentice geezer
New (Rev 89) Firefox UI (puke)
« on: 06 June, 2021, 08:27:04 am »
FF did its usual update the other day and now puts a horrid blue box around whatever input field currently has focus. Anybody know how to revert to the old UI?
I've dusted off all those old bottles and set them up straight

Re: New (Rev 89) Firefox UI (puke)
« Reply #1 on: 07 June, 2021, 04:37:51 am »
Can tweak this sort of stuff with a userChrome.css or userContent.css file. Some instructions here might help. https://www.userchrome.org/
Though it seems some things need to be in userContent.css, not userChrome.css. Not sure what the differences are.

So create a userContent.css and add this.
Code: [Select]
textarea:focus{
    outline:0;
  }
input[type="text"]{
    outline:0;
  }

That should hide the outlines for text boxes anyway.