How can you find out which tab you're looking at?

Discussion of features in Seamonkey
Post Reply
George59
Posts: 13
Joined: April 6th, 2011, 7:21 am
Location: Budapest, Hungary

How can you find out which tab you're looking at?

Post by George59 »

Hi,
I just recently switched to SeaMonkey from Firefox (because FF got sooo slow on my Windows XP machine). Among a few things there is one thing that really keeps annoying me:

When I have several or many tabs open and I'm reading an article on one of them and I want to close it when I am done, I'm having a hard time to figure out which tab is active, which one I should close. Would it be possible to make the active tab more visibly "active" and visible (similar to FF) in future release?
isaacschemm
Posts: 270
Joined: January 20th, 2015, 12:29 pm

Re: How can you find out which tab you're looking at?

Post by isaacschemm »

There are things you can do with userChrome.css to customize the appearance of the browser (this is true in Firefox as well). I've never done anything with the active tab but I'm sure some people here have.
frg
Posts: 1361
Joined: December 15th, 2015, 1:20 pm

Re: How can you find out which tab you're looking at?

Post by frg »

The active tab is quite visible in Windows 7 Aero and the classic theme. Could you post a screenshot of Fx and SeaMonkey in XP. I don't have Fx installed on my XP PC.

2.49.x like ESR52 is end of the line for XP support but a small css change could probably be done in a future 2.49.x
George59
Posts: 13
Joined: April 6th, 2011, 7:21 am
Location: Budapest, Hungary

Re: How can you find out which tab you're looking at?

Post by George59 »

Last edited by George59 on October 20th, 2017, 3:30 am, edited 1 time in total.
User avatar
therube
Posts: 21685
Joined: March 10th, 2004, 9:59 pm
Location: Maryland USA

Re: How can you find out which tab you're looking at?

Post by therube »

userChrome.css:

Code: Select all

/* Change color of active tab */
tab{
   -moz-appearance: none !important;
   }
tab[selected="true"] {
   background-color: rgb(0,255,0) !important;
   color: black !important;
   }
Adjust rgb(x,x,x) as desired.


(I'm not able to load the pic's. Something about a redirection...?)
Fire 750, bring back 250.
Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.19) Gecko/20110420 SeaMonkey/2.0.14 Pinball CopyURL+ FetchTextURL FlashGot NoScript
George59
Posts: 13
Joined: April 6th, 2011, 7:21 am
Location: Budapest, Hungary

Re: How can you find out which tab you're looking at?

Post by George59 »

Thank you for the css code for the active tab color, it worked. Now my active tab has a faded yellow background with black text:

Code: Select all

/* Change color of active tab */
tab{
   -moz-appearance: none !important;
   }
tab[selected="true"] {
   background-color: rgb(255,255,200) !important;
   color: black !important;
   }
But I have no idea why the URL links of my screenshots get into a redirected loop. I get the same error on my PC. Maybe because these jpg files are located in a browseable folder? These images still can be viewed if you just copy the links of them and paste them in a new window.
Post Reply