Recommended Posts

Thanks a lot! As always the man with the answers. :D

What about the line between tab-bar and nav-bar? I can't seem to manage to remove it...

LE: Ignore this. I saw Drifus's post later, fixed it know. Thanks Drifus!

You don't need to adjust the margin. A new background-image value was added to #TabsToolbar, that's the line you're seeing.

#TabsToolbar {
        background-image: none !important
}

Can someone please help me write a script that replace FF 4 "list all tabs" by "undo closed tab". Also, please help me to change firefox location toolbar and button color to white, inactive tab color is white, active tab color is firefox's inactive tab color. Thanks.

You don't need to adjust the margin. A new background-image value was added to #TabsToolbar, that's the line you're seeing.

#TabsToolbar {
        background-image: none !important
}

Change the margin may be needed in certain styles. Here I needed that. Without the negative margin, an empty line stands in place of the background, when in maximized mode.

Check my style please.

Drifus - Firefox 4 project - aero clean

By the way, double click to open a new tab no longer works with the tabs in the titlebar. Could you help me with this?

#navigator-toolbox > #TabsToolbar {
	-moz-binding: url("chrome://global/content/bindings/toolbar.xml#toolbar") !important;
}

Related bug:

https://bugzilla.mozilla.org/show_bug.cgi?id=575248

Change the margin may be needed in certain styles. Here I needed that. Without the negative margin, an empty line stands in place of the background, when in maximized mode.

Check my style please.

Drifus - Firefox 4 project - aero clean

By the way, double click to open a new tab no longer works with the tabs in the titlebar. Could you help me with this?

#navigator-toolbox > #TabsToolbar {
	-moz-binding: url("chrome://global/content/bindings/toolbar.xml#toolbar") !important;
}

Related bug:

1 - On you style (without your margin fix) that line is the 1px top margin of #nav-bar.. Set it and the bottom border of #TabsToolbar to 0 and it goes away. If you need that pixel use padding instead. Nice looking style BTW. :)

2- I don't have a solution for that. It works in a normal window, but not a maxmized one. Thank you, Mozilla. :hmmm:

How would I be able to glass or make transparent the navigational toolbar? Any ideas would be appreciated. Or just to change it to the color below:

colr.png

transparent:

#nav-bar { 
        background:none !important; 
        border-color: transparent !important
}

your colors:

#nav-bar{
        background-color: rgb(117, 203, 235) !important;
        background-image:none !important
}

your colors with opacity:

#nav-bar{
        background-color: rgba(117, 203, 235, 0.5) !important;
        background-image:none !important
}

So I'm currently using the following code to make the new tab page glassed

#appcontent,
#content > tabbox > tabpanels {
  background-color: transparent !important;
}

#main-window[stylish-url="about:blank"]:not([onclose="PrintUtils.exitPrintPreview(); return false;"]) #content browser{ 
opacity: 0 !important;
}

However, whenever I use any personas, they tend to look like this

Personas.png

Is there anything I can do so that the persona doesn't run into the tab?

you can either disable the persona on that tab:

#main-window[stylish-url="about:blank"][lightweightthemes="true"] {
background: none !important;
}

or

you can move the background image up so that it's bottom justified with the bottom-most toolbar:

#main-window[stylish-url="about:blank"][lightweightthemes="true"] {
background-color: transparent !important;
background-position: 100% -24.5% !important;
}

or if you can get the url to the background-image of your persona you can do it like this:

#main-window[stylish-url="about:blank"][lightweightthemes="true"] {
background: none !important;
}

#main-window[stylish-url="about:blank"][lightweightthemes="true"] #navigator-toolbox  {
background-image: url("http://www.getpersonas.com/static/1/8/5918/1232849758499.jpg")!important;
background-position: 100% 3.5% !important;
}

Other than that I don't have a solution. I'm open to suggestions though.

I appreciate the speedy response foxxyn8! I tried them out, but they don't quite achieve what I was hoping.

It seems like this may not be solved by a simple Stylish code segment, which is a shame, cause I really like some of these personas, but I also love having a completely glassed about:blank

I also noticed that on Vista, the image repeats over and over unlike on 7, so there's no glass at all.

1 - On you style (without your margin fix) that line is the 1px top margin of #nav-bar.. Set it and the bottom border of #TabsToolbar to 0 and it goes away. If you need that pixel use padding instead. Nice looking style BTW. :)

2- I don't have a solution for that. It works in a normal window, but not a maxmized one. Thank you, Mozilla. :hmmm:

Thanks foxxyn8.

1- But without that margin at the nav-bar, the tabs are 1 pixel overlapped with it. Because I removed the border-top of the nav-bar.

Padding-top in the nav-bar or padding-bottom in the tabbar not fix that space here.

2 - This is a funny bug. I looked at all .js. .xul .css in omni. Nothing can give me some clue.

O.K.! Working!

You did something for Identity Box while using S4E? Looking a bit out of the box... Site & Fav icons always disabled.

I use the latest MineField version. It isn't FireFox beta 6 btw. Just made it look like.

What colors are you using for the toolbar and tabs? Can you share your script?

I would also like to know how to change the bookmark folder icons.

http://userstyles.org/styles/44045?r=1297542182

The above style is a Tribute to Foxxny8 for all of the help that he has shown me and this community. Great Job Foxxy!

th_thapplause.gif

Thanks, Gary! That looks pretty cool.

:D

Thanks foxxyn8.

1- But without that margin at the nav-bar, the tabs are 1 pixel overlapped with it. Because I removed the border-top of the nav-bar.

Padding-top in the nav-bar or padding-bottom in the tabbar not fix that space here.

2 - This is a funny bug. I looked at all .js. .xul .css in omni. Nothing can give me some clue.

This is what I see with a 1px margin-top for the navbar and a 0px margin-bottom for the tab bar:

post-350326-0-94336800-1297579131.png

And this is with a 0px margin-top for navbar and 0px margin-bottom for tabbar

post-350326-0-45772800-1297579236.png

I don't see any overlap

foxxyn8, I can't get this to work.Bookmarks toolbar does not autohide. Using ff4beta11.

http://userstyles.org/styles/43656

Try reducing or removing -moz-transition-delay property of #navigator-toolbox:not([customizing]) #PersonalToolbar

This is what I see with a 1px margin-top for the navbar and a 0px margin-bottom for the tab bar:

post-350326-0-94336800-1297579131.png

And this is with a 0px margin-top for navbar and 0px margin-bottom for tabbar

post-350326-0-45772800-1297579236.png

I don't see any overlap

I needed that negative margin in the nav-bar because there was this line overlapping on older trunks. In addition to fixing problems with tabs [pinned] only when it is alone (without other tabs), the icon appeared with 15px. Also because I use 21px height for the tabs.

But apparently, this trick is no longer necessary, and no longer fix the problem of the icon.

To fix the icon with 15px when in "tabs[pinned] alone"on lastest nightly build, I'm using something dirty to force 16 x 16px.

.tabbrowser-tab[pinned] {
         min-height: 24px !important;
}

Don't ask me how this works. It was by cut-and-try.

I needed that negative margin in the nav-bar because there was this line overlapping on older trunks. In addition to fixing problems with tabs [pinned] only when it is alone (without other tabs), the icon appeared with 15px. Also because I use 21px height for the tabs.

But apparently, this trick is no longer necessary, and no longer fix the problem of the icon.

To fix the icon with 15px when in "tabs[pinned] alone"on lastest nightly build, I'm using something dirty to force 16 x 16px.

.tabbrowser-tab[pinned] {
         min-height: 24px !important;
}

Don't ask me how this works. It was by cut-and-try.

I can tell you why it works:

Your tab height is 22px. The top border is 4px. The bottom border is 3px. 22px - 4px - 3px = 15px. That's all the space left allocated to the label and images.

When you increase its height to 23px you're giving it 16px for the label and images.

Borders of what?

Also, do you know if there are margins/padding inside tabs?

1).tabbrowser-tab as defined in browser.css:

 -moz-border-image: url(tabbrowser/tab.png) 4 5 3 6 / 4px 5px 3px 6px repeat stretch;

2) Domi shows that all margins and padding of .tabbrowser tabs and its children are 0. The exceptions are .tab-icon-image and .tab-throbber which have a right margin of 3px.

1).tabbrowser-tab as defined in browser.css:

 -moz-border-image: url(tabbrowser/tab.png) 4 5 3 6 / 4px 5px 3px 6px repeat stretch;

2) Domi shows that all margins and padding of .tabbrowser tabs and its children are 0. The exceptions are .tab-icon-image and .tab-throbber which have a right margin of 3px.

tab.png. You're right! I forgot this.

Thanks for the explanation.

Do you have a better approaching on how to deal with tabs fixed in 22px? Especially on the issue "pinned tabs"/"pinned tabs alone"

My apologies for excessive questions.

tab.png. You're right! I forgot this.

Thanks for the explanation.

Do you have a better approaching on how to deal with tabs fixed in 22px? Especially on the issue "pinned tabs"/"pinned tabs alone"

My apologies for excessive questions.

No apologies necessary.

I'll do some more investigating, but it looks like your approach is the only one working at the moment(at least if you're wanting to keep the 22px tab bar). I would however reduce the height to 23px since its the minimum necessary to keep a 16px icon. Then again I thought the 15px icon looked aesthetically better.

you did notice that it's all the tab icons; whether they're in pinned or normal tabs is irrelevant?

nice, thanks. btw, how can i make it non-transparent?

reduce the opacity timing at -moz-transition property for #navigator-toolbox:not([customizing]) #PersonalToolbar

Did not work :/

this is what happens when i hover on the address bar:

?di=16129764350613

It'll be better if it is non-transparent.

Here's what I use:

/*Bookmarks*/
#PersonalToolbar { 
position: fixed !important;
top:53px !important; 
left: 0 !important; 
right: 0 !important;
visibility: collapse !important;
-moz-transition: visibility .5s, opacity 1s ease !important;
}

#personal-bookmarks { 
width: 100% !important;
}

#nav-bar:hover ~ #PersonalToolbar,
#PersonalToolbar:hover {
background:rgba(0,0,0,.3);
visibility: visible !important;
opacity: 1;
-moz-transition: visibility !important;
-moz-transition-delay: .75s!important;

} 

Thanks foxxy

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • You can't remove Safari though. Or almost any other bundled app for that matter, and pretty much all of them are useless to me (and there are is a heap of them compared to Windows). I'll much rather take Edge than Safari, at least it can be highly customized vs. Safari. I'll take a PC with ten Edges over a Mac any day though as I can't stand all the limitation and painfully frustrationg restriction that make me dislike their stuff with a burning passion, iOS included (especially iOS).
    • DVD only? What kind of self-respecting optical disk backup/ripping tool doesn't support Blu-ray these days? I burned all my DVDs like 15+ years ago...
    • ...but you're Johnny, from Australia?    
    • Glow 26.9 by Razvan Serea Glow provides detailed reporting on every hardware component in your computer, saving you valuable time typically spent searching for CPU, motherboard, RAM, graphics card, and other stats. With Glow, all the information is conveniently presented in one clean interface, allowing you to easily access and review the comprehensive hardware details of your system. Glow provides detailed information on various system aspects, including OS, motherboard, processor, memory, graphics card, storage, network, battery, drivers, and services. The well-organized format ensures easy access to the required information. You can export all the gathered data to a plain text file, facilitating sharing with others for troubleshooting purposes. No installation needed. Just decompress the archive, launch the executable, and access computer-related information. Glow runs on Windows 11 and Windows 10 64-bit versions. Glow 26.9 changelog: New Features The processor hardware detection engine has been significantly enhanced beyond traditional Intel and AMD architectures. Native support is now available for modern platforms such as Apple Silicon (M-Series) and the newly introduced NVIDIA Spark. In addition, all ARM-based processors can now be accurately distinguished between ARM32 and ARM64 architectures, providing precise hardware reporting. This marks a major milestone for Glow's hardware detection capabilities. The RAM manufacturer identification algorithm has been expanded. JEDEC vendor codes for popular brands such as Patriot, PNY, Team Group, GeIL, Lexar (Longsys), and Asgard/Gloway have been integrated into the database. This significantly reduces the likelihood of incorrect or "Unknown Manufacturer" results and improves overall hardware detection accuracy. New Public IP Address and Internet Service Provider (ISP) features have been added to the Network section. To ensure reliability, this information is retrieved from the trusted service ipwho.is. When Hiding Mode is enabled, no requests are sent and these features remain hidden, as they may expose sensitive information. The search engine used in the Installed Drivers, Installed Services, and Installed Applications sections has been enhanced. You can now perform more flexible and accurate searches using initials, partial matches, and loosely arranged character sequences. The TS Preloader loading bar has been rebuilt using our modern TS Custom Controls graphics library, developed entirely in-house. As a result of this infrastructure upgrade, the loading bar now features smooth rendering and rounded corners that align with the visual style of Windows 11. [TS Updater] A new validation algorithm has been added to check whether the target application is currently running before the update process begins. Bug Fixes Resolved a condition that could prevent TS Preloader from shutting down safely during rare application crash scenarios. Fixed a text alignment issue in the Network section affecting the display of DNS addresses. Alignment is now rendered correctly. [TS Updater] Fixed an issue that could prevent the updated application's executable "*.exe" file from being located after the update process. [TS Updater] Fixed a bug that could leave outdated "*.sha256" files in the application directory after an update. [TS Updater] Fixed a rare issue that could cause subfolders to be moved into the root directory after an update. [TS Updater] Fixed an issue during the first launch that could cause flickering and a temporary white window appearance due to Windows Defender interactions. Changes A small improvement has been made to the internet connectivity detection algorithm. Connectivity checks are now performed in the background with minimal impact on the user interface thread. The keyboard shortcuts in the top menu have been reorganized and simplified to provide a consistent experience across all Türkaysoft applications and to avoid potential conflicts with standard Windows shortcuts. The TS Preloader splash image has been updated with a Türkiye-themed stadium design to celebrate Türkiye's qualification for the 2026 FIFA World Cup—its first appearance in 24 years. Congratulations, Türkiye! The TS Custom Controls module has been updated to version 26.6, delivering improved stability and a more polished visual appearance. [TS Updater] The application icon has been redesigned to provide a more modern and refined look. Note: Always unzip the program before using it. Otherwise you may get an error. Download: Glow 26.9 | 1.8 MB (Open Source) Links: Glow Homepage | Screenshot | Github Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Month Later
      lamborghiniv10 earned a badge
      One Month Later
    • Week One Done
      lamborghiniv10 earned a badge
      Week One Done
    • Reacting Well
      X-No-file earned a badge
      Reacting Well
    • One Month Later
      pestcontrol46 earned a badge
      One Month Later
    • Week One Done
      pestcontrol46 earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      504
    2. 2
      PsYcHoKiLLa
      270
    3. 3
      +Edouard
      75
    4. 4
      Skyfrog
      74
    5. 5
      Steven P.
      71
  • Tell a friend

    Love Neowin? Tell a friend!