Hide Blue Line on Current Tab

User Help for Seamonkey and Mozilla Suite
Post Reply
User avatar
L.A.R. Grizzly
Posts: 5396
Joined: March 15th, 2005, 5:32 pm
Location: Upstate Ohio, USA
Contact:

Hide Blue Line on Current Tab

Post by L.A.R. Grizzly »

Greetings. I just installed SM 2.53.12. Is there a way to hide the blue line that runs along the top of the current focused tab?
Win7 Pro SP1 64 Bit
Comodo Internet Security
Pale Moon 33.0.2, Epyrus Mail 2.1.2, Firefox 115.9.1esr, Thunderbird 115.9.0, and SeaMonkey 2.53.18.2
User avatar
Frank Lion
Posts: 21177
Joined: April 23rd, 2004, 6:59 pm
Location: ... The Exorcist....United Kingdom
Contact:

Re: Hide Blue Line on Current Tab

Post by Frank Lion »

L.A.R. Grizzly wrote:Greetings. I just installed SM 2.53.12. Is there a way to hide the blue line that runs along the top of the current focused tab?
As you're are an old hand around here, I figured you might want more of a challenge than the usual snippet. So, here's the relevant section in the default code -

Code: Select all

.tabbrowser-tab[selected="true"] {
  margin-bottom: 0px;
  padding-top: 2px; /* compensates the top margin of background tabs */
  padding-bottom: 3px; /* compensates the bottom margin of background tabs */
  background-color: -moz-dialog;
  -moz-border-top-colors: unset;
  -moz-border-right-colors: unset;
  color: -moz-dialogtext;
  border: 1px solid Gray;
  border-top: 2px solid RoyalBlue;
  border-bottom: 0px none;
  -moz-appearance: none;
}
Just pick only what you need, change it, put !important after it and slap it in userChrome.css. :)
"The only thing necessary for the triumph of evil, is for good men to do nothing." - Edmund Burke (attrib.)
.
User avatar
L.A.R. Grizzly
Posts: 5396
Joined: March 15th, 2005, 5:32 pm
Location: Upstate Ohio, USA
Contact:

Re: Hide Blue Line on Current Tab

Post by L.A.R. Grizzly »

Frank Lion wrote:As you're are an old hand around here, I figured you might want more of a challenge than the usual snippet. Just pick only what you need, change it, put !important after it and slap it in userChrome.css. :)
Thanks, Frank! I used this code to get rid of the blue delineator and make the border look like the other tabs:

.tabbrowser-tab[selected="true"] { border-top: 1px solid White !important; }
Win7 Pro SP1 64 Bit
Comodo Internet Security
Pale Moon 33.0.2, Epyrus Mail 2.1.2, Firefox 115.9.1esr, Thunderbird 115.9.0, and SeaMonkey 2.53.18.2
Post Reply