Tab Mix Plus

Official Home of TMP
It is currently Sat May 25, 2013 9:23 am

All times are UTC - 6 hours [ DST ]




Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 881 posts ]  Go to page Previous  1 ... 8, 9, 10, 11, 12, 13, 14 ... 45  Next
Author Message
 Post subject: Re: Close Tab
PostPosted: Sun Aug 03, 2008 12:48 pm 
Offline
Admin
User avatar

Joined: Thu Aug 04, 2005 1:12 pm
Posts: 7297
Temp wrote:
Maybe posted before, but here it goes. The 'close tab' button on the right of the tab bar seems to have shifted somewhat upwards.


in what theme you see this?

_________________
Tab Mix Plus 0.4.1.0
latest Dev-Build
Forum RSS, Troubleshooting


Top
 Profile  
 
 Post subject: Re: Multi-row issue
PostPosted: Sun Aug 03, 2008 1:14 pm 
Offline
Admin
User avatar

Joined: Thu Aug 04, 2005 1:12 pm
Posts: 7297
fiskstolpe wrote:
This is a issue I've got with combining TMP and the Classic Compact theme.

When I start on a second row, the tabs are located too far down (the grey-whiteish stripe is "cutting" the bottom of the favicon):
Image

When I start on a third row I also get a grey stripe:
Image

I'm using the 0.3.7pre.080728 build of TMP (I've also tried previous FF3 compatible TMP versions) with Classic Compact 3.0.9 theme and its accompanying Classic Compact Options 1.1.3 extension on FF 3.0.1.

I asked the developer of Classic Compact if there was something he could do about it and this is how he replied:
The multirow tab issue you are referring to was reduced with Classic Compact 3.0.9, but not entirely eliminated (it used to be much worse). Unfortunatly, I can not totally eliminate the problem without impacting users who do not use tab mix plus. The Tab Mix Plus developer would have to make changes to their extension to fully eliminate this problem.
(http://forums.mozillazine.org/viewtopic ... &start=179)

So I was wondering what your stance is regarding this? Can it be fixed?

Thanks for your time.


add this to your userChrome.css

.tabbrowser-tabs[flowing=multibar][multibar] .tabs-frame {
margin-bottom: 1px;
}

_________________
Tab Mix Plus 0.4.1.0
latest Dev-Build
Forum RSS, Troubleshooting


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 03, 2008 2:16 pm 
Thank you onemen! Much appreciated. That fixed the "clipping". I still get that stripe when having a third tab bar, but I can live with that. I seldom have more than 30 tabs open, so.
Image

I also tried part of Izzy's code to get rid of the 3 pixel gap between each tab bar, but that screwed tabs up when I only had one single tab bar, so I gave up.

Anyway, thanks for your suggestions. And I'd like to say that TMP makes Firefox so much more worth using. So thank you for all the hard work you've put into it!


Top
  
 
 Post subject:
PostPosted: Sun Aug 03, 2008 3:18 pm 
Oops, two posts. I don't know how that happened. I probably clicked Submit when I meant to click on Preview. Sorry. Too bad I cannot edit/remove posts without registering.


Top
  
 
 Post subject: Tab switching speed
PostPosted: Sun Aug 03, 2008 3:45 pm 
In FF 3.0.1 i've noticed that when switching between tabs or even simply selecting a tab, there is a fraction of a second delay - unless the mouse has sat over the tab for a moment.

Clicks don't appear to register until the the new FF 'fade up' mouseover effect has completed.

A minor gripe, but annoying when you notice it! :?


Top
  
 
 Post subject: Mouseover delay
PostPosted: Sun Aug 03, 2008 3:47 pm 
Just to confirm - this only happens after Tab Mix Plus is installed


Top
  
 
 Post subject:
PostPosted: Sun Aug 03, 2008 4:52 pm 
Offline
User avatar

Joined: Sun Jul 27, 2008 10:33 am
Posts: 53
Location: Germany
fiskstolpe wrote:
I also tried part of Izzy's code, I wanted to get rid of the 3 pixel gap between the first and second tab bar, but that inserted another 2 pixels on the tab height when using one single bar, so I gave up.

Right - that's something I could not yet figure out what's going on there. As to my code, I explicitly set the tab size to 18px (unselected) resp. 19px (selected) - and I cannot see where I put a condition that this should only apply with multiple tab rows. If somebody can point out where that goes (and how to avoid), I'd greatly appreciate (and immediately fix) it!


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 03, 2008 7:02 pm 
Anyone get high memory usage with latest dev pre or TMP installed? Dunno if this was the culprit but ever since I went back to 361 it idles around 111mb of ram but when using latest pre dev it goes to 300+ after awhile. Not sure why. And yes I am using 3.0.1 Fx. Could be conflicting with other extensions? or changes you've recently made? 361 works fine with the others and just made a force compatability.


Top
  
 
 Post subject:
PostPosted: Sun Aug 03, 2008 7:08 pm 
I only used part of your code, and maybe that was stupid. I haven't put any real time into this kind of coding so I just took what I saw as the important, and modified it a bit:

/* General tab settings */
tab {
font-family: tahoma, verdana, helvetica !important;
margin-top: 0px !important; /* Space over tabs and under URL-tab */
margin-bottom: 0px !important;
border-bottom: 1px !important;
margin-left: 1px !important;
height: 18px !important;
display: -moz-box !important;
-moz-box-sizing: border-box !important;
}

/* Unselected tab gets smaller font */
#content tab:not([selected]),
#content tab[selected="false"] {
font-size: 9px !important;
}

/* selected tab will be a bit larger with also enlarged font */
tab[selected="true"] {
font-size: 9px !important;
height: 18px !important;
}


I merged 3 different screenshots/cases into one to save some time and space (the cyan colour is just for bordering):
Image

1. The first case is working perfectly, nicely aligned and all.

2. When I close the last tab to get one tab row again, the first row get really large (part 2 of my screenshot). I figured out that it was my tab width setting in TMP that caused this. I have both min and max width set to 125 so I don't have to have extra space on both sides of the tab bar (I want some empty space to the far right on my tab bar so I have somewhere I can click with my scroll wheel to restore a previously closed tab).

3. I then set min width to 100 and max width to 125 (default settings as far as I can recall?) That results in part 3 of my screenshot, 2 pixels of dead space above the favicon, and some other weird things with the "tab separators" (you probably have to zoom in to see it better).

Remember, this is with the Classic Compact theme and its accompanying extension (for further customizing). I didn't try it with the default Firefox 3 theme (it makes me want to gag everytime I see it, so... :D )

Hope that helps somewhat.


Top
  
 
 Post subject:
PostPosted: Mon Aug 04, 2008 1:14 am 
Offline
Admin

Joined: Wed Aug 03, 2005 1:13 am
Posts: 5194
Location: Rocky Mountains
Lanik,

I'm sorry to hear it didn't work. I use this style for close buttons, works well with Fx2 but it says updated for Fx3. Maybe something there can help?
I thought this issue was supposed to be fixed in the latest dev.

_________________
VistaHP/Fx latest beta/TMP latest dev.build/Troubleshooting TMP/My styles


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 04, 2008 10:21 am 
Offline

Joined: Wed Jan 09, 2008 1:04 pm
Posts: 28
with tmp enabled(even with latest prerelase), whenever I type a key in any box I Get this in the error console:
Error: 'JavaScript component does not have a method named: "handleEvent"' when calling method: [nsIDOMEventListener::handleEvent] = NS_ERROR_XPC_JSOBJECT_HAS_NO_FUNCTION_NAMED

Both have it in nightlies and 3release.


Another issue I have been experiencing is that ctrl+F4 closes two tabs in a row, not just one.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 04, 2008 10:58 am 
the build version 721 makes tabs not take the focus when clicked.
but 728 not,
why?


Top
  
 
 Post subject:
PostPosted: Mon Aug 04, 2008 11:28 am 
I'm trying to install this new build , but i got a message with : unvalid package error 207 how can i fix that ? I'm under Ubuntu 8.4

thanks


Top
  
 
 Post subject:
PostPosted: Mon Aug 04, 2008 1:17 pm 
Offline

Joined: Tue Jun 06, 2006 7:54 pm
Posts: 15
Location: Chico, CA
I have noticed an issue with the 0.3.7.x Pre versions in that when I set multi-row it does not display in multi-row mode when starting up. I can change a settings after startup and will will then display properly, but it never works properly on startup. If there is anything I can do to help track this bug let me know or if there is a work around I would appreciate any thoughts on this. Thanks.

Leland
:D


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 04, 2008 1:32 pm 
Offline
Admin

Joined: Wed Aug 03, 2005 1:13 am
Posts: 5194
Location: Rocky Mountains
For those who use Camifox theme with Fx3 and have an issue with min.tab size, check this thread out.

_________________
VistaHP/Fx latest beta/TMP latest dev.build/Troubleshooting TMP/My styles


Top
 Profile  
 
 Post subject: tab at the bottom
PostPosted: Mon Aug 04, 2008 2:08 pm 
hi,
i'm currently using TMP with FF2, still haven't updated to FF3, i'm waiting for my fav extensions to become compatible,

does anyone know if TMP on FF3 has the ability to relocate the tab bar to the bottom of the screen? i find it more productive that way,

also,

any idea on when a final version of TMP for FF3.0.1. will become available?


Thanks


Top
  
 
 Post subject:
PostPosted: Mon Aug 04, 2008 2:25 pm 
The latest dev-build is compatible with Fx 3.0.1 and it has a setting for tab bar position on bottom :-)
http://tmp.garyr.net/tab_mix_plus-dev-build.xpi


Top
  
 
 Post subject: tab location
PostPosted: Mon Aug 04, 2008 2:49 pm 
thanks


Top
  
 
 Post subject: address bar
PostPosted: Mon Aug 04, 2008 3:19 pm 
I'd really like the ability to force URLs typed in the address bar to open new tabs. Tabbrowser preferences does it, but isn't compatible with Firefox v3.0.*, and TMP has some better features anyway.

Cheers


Top
  
 
 Post subject:
PostPosted: Mon Aug 04, 2008 3:19 pm 
and the search bar


Top
  
 
Display posts from previous:  Sort by  
Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 881 posts ]  Go to page Previous  1 ... 8, 9, 10, 11, 12, 13, 14 ... 45  Next

All times are UTC - 6 hours [ DST ]


Who is online

Users browsing this forum: Google Feedfetcher and 4 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group