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

    • Apple are scared of their customers! They have built a brand over the years of "it just works out of the box", but that slows innovation. Samsung's master stroke was the Galaxy Ultra: "Let's cram everything into one handset, make it so stupid only real nerds will love it, some of the features will work, some won't, but the audience will have such a high tolerance they won't care". Apple has no such device and so they are constantly worrying these days about the fallout of creating a new experience that customers might not like. I know it is often cited the reason they don't build a touchscreen Mac Book is they don't want to cannibalise the the iPad market, but I think it's equally cold feet after the criticism Microsoft receive trying to make a touch compatible desktop OS
    • HandBrake 1.11.2 by Razvan Serea HandBrake is an open-source, GPL-licensed, multiplatform, multithreaded video transcoder, available for MacOS X, Linux and Windows. Handbrake can process most common multimedia files and any DVD or BluRay sources that do not contain any kind of copy protection. Here is a detailed breakdown of HandBrake’s features: Built-in Device Presets—Get started with HandBrake in seconds by choosing a profile optimized for your device, or choose a universal profile for standard or high quality conversions. Simple, easy, fast. For those that want more choice, tweak many basic and advanced options to improve your encodes. Supported Input Sources—Handbrake can process most common multimedia files and any DVD or Blu-ray sources that do not contain any kind of copy protection. Outputs: File Containers: .MP4(.M4V) and .MKV Video Encoders: H.265 (x265 and QuickSync), H.264(x264 and QuickSync), H.265 MPEG-4 and MPEG-2, VP8 and Theora Audio Encoders: AAC / HE-AAC, MP3, Flac, AC3, or Vorbis Audio Pass-thru: AC-3, E-AC3, DTS, DTS-HD, TrueHD, AAC and MP3 tracks Additional features: Title/ Chapter Selection Queue up Multiple Encodes Chapter Markers Subtitles (VobSub, Closed Captions CEA-608, SSA, SRT) Constant Quality or Average BitRate Video Encoding Support for VFR, CFR and VFR Video Filters—Deinterlacing, Decomb, Detelecine, Deblock, Grayscale, Cropping and Scaling Live Video Preview HandBrake 1.11.2 changelog: All platforms Video Fixed a crash that happened when doing a 2-pass lossless x265 encode Fixed a memory leak that happened when doing a 2-pass MPEG-4/MPEG-2/VP9/FFV1 encode Audio Updated the list of supported dithers and encoders combinations Fixed the Core Audio AAC encoder 7.1 channel layout Subtitles Fixed the VobSub palette creation in the MP4 container Build system Improved build system compatibility with older build tools Third-party libraries FFmpeg 8.0.2 (decoding and filters) SVT-AV1 4.1.0 (AV1 video encoding) Linux Added WebM MIME type to the list of the supported formats Mac Improved handling of unsupported presets Updated Sparkle automatic update library Windows Improved handling of unsupported presets Improved queue low space pause behaviour Fixed the automatic audio track name generation Fixed the summary description of HDR video Download: HandBrake 64-bit | Portable 64-bit | ~30.0 (Open Source) Download: HandBrake ARM64 | Portable Links: HandBrake Website | Other Operating Systems | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • So, an article that has nothing to do with Windows 11, still gets Windows 11 in the title and a build number as the picture? Dell have a buggy build of Support Assist HP have UEFI settings that need unlocking for the secureboot cert upgrade to take place.
    • What I can't seem to understand is that Google are paying SpaceX? Surely it would be the other way round, with SpaceX needing Google's datacenters etc.? Oh well, this level of money and power is way outside of my comprehension at the best of times.
    • "77ee94b helium/windows: winsparkle updater (built-in auto-update support on Windows" If that's what I think it is, that is about the only thing that's been missing from this excellent browser. I guess I'll find out the next time I'm on a Windows machine.
  • 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
      244
    3. 3
      Steven P.
      71
    4. 4
      +Edouard
      69
    5. 5
      ATLien_0
      68
  • Tell a friend

    Love Neowin? Tell a friend!