How to get rid of Add new tab button' square

User Help for Mozilla Firefox
delicacy1
Posts: 304
Joined: September 28th, 2016, 11:25 am

Re: How to get rid of Add new tab button' square

Post by delicacy1 »

Resolved:

Code: Select all

#navigator-toolbox #TabsToolbar .tabs-newtab-button { border: none !important; }
User avatar
dickvl
Posts: 54145
Joined: July 18th, 2005, 3:25 am

Re: How to get rid of Add new tab button' square

Post by dickvl »

I had forgotten that you can add custom CSS code to CTR.
It works if I add my above posted code that way.

Code: Select all

.tabs-newtab-button:not(:-moz-lwtheme) {
  background:none!important;
  border:0px!important;
}
Post Reply