Recommended Posts

@ dert07 i made some modification to your style according to foxxyn8's suggestion

#addon-bar {
  position: fixed;
  bottom: -21px;
  right: 20px;
  border: 0 !important;
  -moz-appearance: none !important;
  -moz-transition: bottom .5s 1s ease-in;
  /*padding-top: 22px !important;*/
}

#browser-bottombox {
position: fixed;
}

#addon-bar:hover {
 bottom: 0;
 -moz-transition: bottom .5s .4s ease-out;
}

#main-window[sizemode="maximized"] #addon-bar {
  right: 20;
}

#addon-bar > #status-bar {
  margin: 0 !important;
  padding: 0 2px 0 2px;
  border-radius: 4px 4px 0 0;
  border: 0 !important;
  border-left: 1px solid rgba(0,0,0,.25) !important;
  border-top: 1px solid rgba(0,0,0,.25) !important;
  border-right: 1px solid rgba(0,0,0,.25) !important;
  background-color: rgb(207, 219, 236) !important;
  background-image: -moz-linear-gradient(rgba(255,255,255,.5), rgb(207,220,236)) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.5) inset;
}

with the above code addon bar does not hover when you scroll horizontal.

can you try this and tell if it works ?

It works BUT,

You should keep the #addon-bar padding. That's basically the hot area for the hover. Without it you have to go all the way to the bottom of the window to make the addon bar appear.

This:

#main-window[sizemode="maximized"] #addon-bar {
  right: 20;
}

should be :

#main-window[sizemode="maximized"] #addon-bar {
  right: 20px;
}

but you really don't need it at all since you've already set that exact same position here:

#addon-bar {
  position: fixed;
  bottom: -21px;
  right: 20px;
  border: 0 !important;
  -moz-appearance: none !important;
  -moz-transition: bottom .5s 1s ease-in;
  /*padding-top: 22px !important;*/
}

And here's some findbar styling (it's what I use feel free to modify it):

#FindToolbar .findbar-container {
  margin-bottom: -4px !important;
  border-radius: 0 4px 0 0;
  border-left: 1px solid rgba(0,0,0,.25) !important;
  border-right: 1px solid rgba(0,0,0,.25) !important;
  border-top: 1px solid rgba(0,0,0,.25) !important;
  background-color: rgba(0,0,0,.8) !important;
  box-shadow: 0 0 4px rgba(161,161,161,.9) inset !important; 
}

and the findbar textbox :

#FindToolbar  .findbar-textbox {
width:250px!important;  
-moz-appearance:none !important;
background:rgba(0,0,0,.9) !important; 
border:1px solid #444 !important;
-moz-border-radius: 4px !important; 
font-family:tahoma !important; 
font-weight:bold !important;
color:#eee !important; 
}

@foxxyn8

Thanks for that! This is kind of what I want to get:

#FindToolbar .findbar-container {
  margin-bottom: -1px !important;
  margin-left: 5px !important;
  border-radius: 4px 4px 0 0;
  border-left: 1px solid rgba(0,0,0,.25) !important;
  border-right: 1px solid rgba(0,0,0,.25) !important;
  border-top: 1px solid rgba(0,0,0,.25) !important;
  box-shadow: 0 0 4px rgba(161,161,161,.9) inset !important; 
}

But how do I get rid of the original background?

post-344974-12857399712969.jpg

@foxxyn8

Thanks for that! This is kind of what I want to get:

#FindToolbar .findbar-container {
  margin-bottom: -1px !important;
  margin-left: 5px !important;
  border-radius: 4px 4px 0 0;
  border-left: 1px solid rgba(0,0,0,.25) !important;
  border-right: 1px solid rgba(0,0,0,.25) !important;
  border-top: 1px solid rgba(0,0,0,.25) !important;
  box-shadow: 0 0 4px rgba(161,161,161,.9) inset !important; 
}

But how do I get rid of the original background?

#FindToolbar {
  -moz-appearance: none !important;
  margin-top:-25px !important;
}

if that doesn't do it then it's this

#browser-bottombox {
background: none !important; 
}

I'm pretty sure it's the second one. I use that first one for a different style.

Edited by foxxyn8

Great, thanks! First one does the job, what does the second one suppose to do ?

The second one will remove the border of any toolbar in that class. I use it in my main theme cause it's faster than declaring every toolbar.

And I hate borders. ;)

Can't seem to manage to reduce the right padding (reduce that blank space in the right of "mach case"). Tried editing margin and padding but doesn't seem to work...

This will hide that empty space until there's something to show:

#FindToolbar .find-status-icon:not([status="notfound"]):not([status="wrapped"]) {
display:none !important;
}

This will hide that empty space until there's something to show:

#FindToolbar .find-status-icon:not([status="notfound"]):not([status="wrapped"]) {
display:none !important;
}

Great, thanks a lot! What is the identifier for the status text in the find-bar? I want to add some padding to the right.

Sorry for double post.

Do not mind my last request, it isn't that important...

Here is a version of the style I had in mind for the find-bar:

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#FindToolbar .findbar-container {
  margin-bottom: -1px !important;
  margin-left: 5px !important;
  border-radius: 4px 4px 0 0;
  border-left: 1px solid rgba(0,0,0,.25) !important;
  border-right: 1px solid rgba(0,0,0,.25) !important;
  border-top: 1px solid rgba(0,0,0,.25) !important;
  background-color: rgb(207, 219, 236) !important;
  background-image: -moz-linear-gradient(rgba(255,255,255,.5), rgb(207,220,236)) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.5) inset;
}

#browser-bottombox {background: none !important;}

#FindToolbar {border:none !important;}

#FindToolbar .find-status-icon:not([status="notfound"]):not([status="wrapped"]) {
display:none !important;
}

They only work and use the color theme of a little modified version of SoapyHamHocks/dert07 style:

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#addon-bar {
  position: fixed;
  bottom: -22px;
  right: 1px;
  margin-right: 20px !important;
  border: 0 !important;
  -moz-appearance: none !important;
  -moz-transition: bottom .7s 2s ease-in;
  padding-top: 22px !important;
}

#browser-bottombox {
  position: fixed;
  bottom: 0px;
}

#addon-bar:hover {
 bottom: 0;
 -moz-transition: bottom .7s 1s ease-out;
}

#main-window[sizemode="maximized"] #addon-bar {
  right: 0;
}

#addon-bar > #status-bar {
  margin: 0 !important;
  padding: 0 2px 0 2px;
  border-radius: 4px 4px 0 0;
  border: 0 !important;
  border-left: 1px solid rgba(0,0,0,.25) !important;
  border-right: 1px solid rgba(0,0,0,.25) !important;
  border-top: 1px solid rgba(0,0,0,.25) !important;
  background-color: rgb(207, 219, 236) !important;
  background-image: -moz-linear-gradient(rgba(255,255,255,.5), rgb(207,220,236)) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.5) inset;
}

Feel free to edit the background color and borders/margins to your liking ... Thanks everybody for their ideas !

post-344974-12857641057764.jpg

Great, thanks a lot! What is the identifier for the status text in the find-bar? I want to add some padding to the right.

The class for the status labels is .findbar-find-status You can use it to change its font properties, but it you can't add padding to it. If you want to add padding to the right, add it to #FindToolbar .findbar-container

Ok, I put all tweaks together into Soapy's and my style and adjusted it a bit to fit our initial look. Special thanks goes to mNiosu and foxxyn8 for their great work. We would like to publish the style on our blog if you are ok with that.

I added a transition for the opacity so the addonbar fades in and out while sliding which gives it an even better effect imo. Feel free to edit and tweak it to your liking.

The style is on my Dropbox since it's a bit longer now and I don't want to spam the forum: https://dl.dropbox.com/u/4681041/Firefox%204%20Better%20Addonbar.txt

I also created a style from all my ministyles I've been using for the last weeks, in which I tried to fix many of the bugs the UX Team posted in their Theme Timeline. It includes a thinner titlebar, rounded top corners for the nav-bar, a border around the whole content area and Panorama, removed back/forward dropmarker, mockup styled dropmarkers for toolbarbuttons and the "list all tabs" button, the new Addonbar with the Findbar fix and the tabs switch to the titlebar when Firefox is maximized, as in Google Chrome. The last one isn't in the Timeline but on one of the UX Team's blogs they said it is at least considered to work this way.

What's still missing is the new style for the dropmarker in the urlbar and the bookmarkstar icon. If you find other things that need to be fixed just tell me. I'll try to update the style with coming nightlies: https://dl.dropbox.com/u/4681041/Firefox%204.0%20Theme%20bugfixes.txt

I have a new problem:

For some reason the "smart bookmarks bar" add-on doesn't seem to work when installed on a fresh profile so I thought I should be able to obtain the effect thing with css codes. So I created this simple code in order hide bookmark icons labels and reduce the space between icons:

#PersonalToolbar label {display: none !important;}

#PersonalToolbar toolbarbutton image {margin: 0 !important;}

The problem is that in order to obtain the exact effects of the add-on I want to make the label to show up sliding to the right for an icon when I'm hovering that particular icon not just disable it for good, but have no idea how to do that. Anyone can help ?

I knew about the second think you said but it also adds padding to the find-bar when no status is shown and I want to keep it as short as possible. Is not such a big deal anyway... Thanks for the help!

...then this is what you want

#FindToolbar .find-status-icon[status="notfound"] + .findbar-find-status,
#FindToolbar .find-status-icon[status="wrapped"] + .findbar-find-status {
  padding-right:5px !important;
}

#FindToolbar .find-status-icon[status="notfound"],
#FindToolbar .find-status-icon[status="wrapped"] {
  margin-left: -1px !important;
}

#FindToolbar .find-status-icon:not([status="notfound"]):not([status="wrapped"]) + .findbar-find-status {
  display:none !important;
}

@foxxyn8

Hey, that really wasn't such a big problem, you shouldn't have bothered that much for me. But now that you did, thanks a lot, that's exactly what I wanted! You're the best! :)

@dert07

That looks really good. I wanted to upload my find-bar style on userstyles and link it to your/Soapy's add-on bar style since they only work well together but had second thoughts first because most of the credits go to foxxyn8 and second because I thought I might still be able to improve it.

If you you want I think you and SoapyHamHocks should combine the 2 styles and update your style both on user-styles and on your blog, is fine by me ...

@mNiosu

Thanks for letting us post it. We'll use the my latest style which already combines the two. What do you think of the bugfixes style?

For your prolem with the #PersonalToolbar:

#PersonalToolbar .bookmark-item {
 max-width: 22px !important;
}

#PersonalToolbar .bookmark-item:hover {
 max-width: none !important;
}

Maybe you have to adjust the padding or margin but at least it works.

@mNiosu

Thanks for letting us post it. We'll use the my latest style which already combines the two. What do you think of the bugfixes style?

For your prolem with the #PersonalToolbar:

Maybe you have to adjust the padding or margin but at least it works.

Hey thanks for the code, that is a really simple and smart solution for my desired effect (and I was using an add-on for that :laugh: )... You should also add the new code foxxyn8 posted above, it makes the find-bar perfect in my opinion.

About your "bugfixes style": I've been following this two threads for some months now (since beta1) so I have my own list of styles (15 or so I use now and much more collected) so I haven't looked on your list. It's a problem of taste and personal style here, so if you really want to create a "bugfixes list" you should make a detailed one for each style and with print-screens so people can choose what they want...

LE: This is kind of the code I was looking for:

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#PersonalToolbar .bookmark-item {
 max-width: 22px !important;
}

#PersonalToolbar .bookmark-item:hover {
 max-width: none !important;
}

#PersonalToolbar {
margin: -4px 0 -2px 2px !important;

#PersonalToolbar image {margin: 0 !important;}
}

Having one problem thought (a problem that the add-on had too): My personal-bar is almost full of icons and when I hover one and the label slides it forces that far right icons out of the window and they don't come back until I minimize/maximize. Do you think I can fix this effect somehow?

@mNiosu

Ok, I added foxxyn8's fixes, Soapy will update the style on the blog later.

Hmm I'm more a fan of one single style but I understand that it isn't that useful for everyone. I'll see if I can put some of the elements in seperate styles so everyone can pick what they need.

Ok, I put all tweaks together into Soapy's and my style and adjusted it a bit to fit our initial look. Special thanks goes to mNiosu and foxxyn8 for their great work. We would like to publish the style on our blog if you are ok with that.

I added a transition for the opacity so the addonbar fades in and out while sliding which gives it an even better effect imo. Feel free to edit and tweak it to your liking.

The style is on my Dropbox since it's a bit longer now and I don't want to spam the forum: https://dl.dropbox.com/u/4681041/Firefox%204%20Better%20Addonbar.txt

I also created a style from all my ministyles I've been using for the last weeks, in which I tried to fix many of the bugs the UX Team posted in their Theme Timeline. It includes a thinner titlebar, rounded top corners for the nav-bar, a border around the whole content area and Panorama, removed back/forward dropmarker, mockup styled dropmarkers for toolbarbuttons and the "list all tabs" button, the new Addonbar with the Findbar fix and the tabs switch to the titlebar when Firefox is maximized, as in Google Chrome. The last one isn't in the Timeline but on one of the UX Team's blogs they said it is at least considered to work this way.

What's still missing is the new style for the dropmarker in the urlbar and the bookmarkstar icon. If you find other things that need to be fixed just tell me. I'll try to update the style with coming nightlies: https://dl.dropbox.com/u/4681041/Firefox%204.0%20Theme%20bugfixes.txt

That's cool with me. :punk:

can anyone tell me how to get rid of this border ? (see pics)

this the code

#FindToolbar .findbar-container {
  margin-bottom: -1px !important;
  margin-left: 5px !important;
  margin-right: 5px !important;
}

#browser-bottombox {background: none !important;}

#FindToolbar {border:none !important;}

#FindToolbar .find-status-icon:not([status="notfound"]):not([status="wrapped"]) {display:none !important;}

#addon-bar > #status-bar {
background: none !important; 
}

post-350684-12857892164921.jpg

post-350684-12857892265616.jpg

@dert07

Have a look at the problem I wrote in my previous post. And I add another one (not a problem for me but I was thinking to upload the style on user-styles and it might be a problem for others): how can I force labels to always show for folders in the personal-bar ?

BTW is it ok with you if I upload this style on user-styles or it is already there (or maybe you should do it...) ? :D I mean there are a lot of people using that add-on for this style and I just don't see the point of doing it any more and this might help them...

LE: solved my second problem on my own. :)

Here is the new code:

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#PersonalToolbar .bookmark-item:not([container="true"]) {max-width: 22px !important;}

#PersonalToolbar .bookmark-item:hover {max-width: none !important;}

#PersonalToolbar {margin: -4px 0 -2px 2px !important;}

#PersonalToolbar  image {margin: 0 !important;}

The problem with the far right icons not coming back is still there thought...

can anyone tell me how to get rid of this border ? (see pics)

this the code

#FindToolbar .findbar-container {
  margin-bottom: -1px !important;
  margin-left: 5px !important;
  margin-right: 5px !important;
}

#browser-bottombox {background: none !important;}

#FindToolbar {border:none !important;}

#FindToolbar .find-status-icon:not([status="notfound"]):not([status="wrapped"]) {display:none !important;}

#addon-bar > #status-bar {
background: none !important; 
}

probably this :

#addon-bar .toolbar-primary.chromeclass-toolbar {
border:none !important;
}

@mNiosu

Added :not() selectors to keep it from affecting the dropdown menu menuitems

#PersonalToolbar .bookmark-item:not(.menu-iconic):not(menuitem) {
 max-width: 22px !important;
}

#PersonalToolbar .bookmark-item:hover:not(.menu-iconic):not(menuitem) {
 max-width: none !important;
}

#PersonalToolbar {
margin: -4px 0 -2px 2px !important;
}

#PersonalToolbar image {margin: 0 !important;}

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

    • No registered users viewing this page.
  • Posts

    • If its the devs fault you would think Unreal would help M$ take full advantage of Unreal and work with them to fix the performance issues. Otherwise they are catching unwarranted bad press.
    • Thanks for the advice guys, I'll give my current GPU a clean and then run the benchmarks to see how similar it is. Hopefully a bit of a clean-out will help it last a bit longer.
    • Pretty sure those will still be in this game. The series' well-explored psychosis themes will return as well.
    • "performance issues? what performance issues?!"
    • Microsoft making much needed change to Windows 11, 10 Patch Tuesday security updates by Sayan Sen Recently, Microsoft delivered its latest Defender patches for Windows 11 ISOs. These definitions are released from time to time alongside the general security updates available during Patch Tuesday. Speaking of Defender, the company has now announced another important change that affects how security updates are delivered to enterprise devices running Windows. According to a recent announcement, Microsoft Defender for Endpoint's endpoint detection and response (EDR) updates will no longer be bundled with the monthly Windows security updates or Patch Tuesdays. Instead the company is shifting delivery of these updates to Microsoft Update, bringing EDR servicing in line with several other Microsoft Defender components. If you recall, Microsoft last year moved PowerShell updates to Microsoft Update (MU) as well since it provides automatic updates for Microsoft products and services. Thus the move is intended to allow Microsoft to deliver EDR improvements and security enhancements independently of the OS's regular monthly update cycle; this should enable faster deployment of protection updates without requiring organizations to wait for the next Patch release. For those unfamiliar, Microsoft Defender for Endpoint's EDR capabilities are designed to help organizations detect, investigate, and respond to advanced threats across managed devices. Keeping these components updated is critical for maintaining protection against evolving attack techniques. The rollout has already began for Windows 10 devices in late May 2026 (last month) and Microsoft says it will gradually expand support to Windows 11 and the remaining supported Windows versions over the coming months. The company expects deployment across Windows 10 and Windows 11 to be completed by fall 2026 or around Q3 of this year. Once the transition is complete, EDR updates will be delivered through Microsoft Update using KB5005292, provided the required prerequisite updates have already been installed. Microsoft is also introducing a new Defender Update Service as part of the change. Following installation of the first update, devices will automatically create a new directory located at %ProgramData%\Microsoft\Microsoft Defender\Defender Update. Microsoft notes that restarts may occasionally be necessary in case of "rare" failure scenarios. For most organizations, the tech giant says no action will be required as long as Microsoft Update is already permitted within their update management strategy. Admins who rely on manually deployed update packages, however, will need to adjust their processes to ensure the new Defender update package is included. Microsoft also recommends reviewing internal documentation and notifying helpdesk and security operations teams about the updated delivery mechanism to avoid confusion during the transition. As a prerequisite, the tech giant notes that systems must be running Sense version 10.8798.25857.1000 or later and have one of the following Windows updates (or later) installed: Win11 24H2 KB5062660 (2025-07 Cumulative Update Preview) Win11 23H2 KB5062663 (2025-07 Cumulative Update Preview) Win11 22H2 KB5062663 (2025-07 Cumulative Update Preview) Win10 22H2 KB5062649 (2025-07 Cumulative Update Preview) Win10 1809 KB5063877 (2025-08 Cumulative Update) Server 2019 KB5063877 (2025-08 Cumulative Update) Server 2022 KB5063880 (2025-08 Cumulative Update) Server 2025 KB5063878 (2025-08 Cumulative Update) As always, organizations should verify that their update policies align with the new servicing approach before the broader rollout reaches all supported Windows platforms later this year. In case of major problems, the EDR update can be rolled back to the inbox version stored in %ProgramFiles%\\Windows Defender Advanced Threat Protection (ATP) using: MpCmdRun.exe -RevertMde -Product Edr -ToVersion Inbox For those who have access to the Microsoft 365 Admin Center portal, you can view the message here under ID MC1381119.
  • Recent Achievements

    • One Month Later
      DJC50PLUS earned a badge
      One Month Later
    • Week One Done
      DJC50PLUS earned a badge
      Week One Done
    • Proficient
      Eric Biran went up a rank
      Proficient
    • Dedicated
      Conjor earned a badge
      Dedicated
    • Week One Done
      Windows Guy earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      493
    2. 2
      PsYcHoKiLLa
      248
    3. 3
      Steven P.
      73
    4. 4
      +Edouard
      69
    5. 5
      neufuse
      68
  • Tell a friend

    Love Neowin? Tell a friend!