Recommended Posts

Well, True... Now with Content UI not appearing anymore. I've latest hourly.

Few problems left... Seems appears an address randomly ( when I'm in Add-ons Manager and Trying to go to the creator's address for example )? Dunno, anyway. Since you don't use it, crap for me!

Replace what with what? That was kinda confusing...

Do you know if the final patch for UI Content will be exactly like mock-up design?

You're talking about these mockups?: http://news.softpedia.com/newsImage/Firefox-4-0-UI-Redesign-In-Content-UI-Visual-Unification-14.png/

I wouldn't even venture a guess on that. From what I understand ICUI isn't going to extend beyond the addons manager for 4.0. We won't have total ICUI until 4.next.

oh and replace:

.urlbar-over-link-box

with

#main-window:not([stylish-url="about:addons"]) .urlbar-over-link-box

Hey, I'm trying to put the awesome bar on the same toolbar as the tabs but I'm having an issue when I try to make the awesome bar smaller. The tabs are really small and they dont take up the entire space on the left. Anyway to fix this?

This is what it looks like ATM; fxabtb.jpg

Hey, I'm trying to put the awesome bar on the same toolbar as the tabs but I'm having an issue when I try to make the awesome bar smaller. The tabs are really small and they dont take up the entire space on the left. Anyway to fix this?

This is what it looks like ATM; fxabtb.jpg

Looks like you used #urlbar as the selector instead of #urlbar-container for resizing the awesome bar

#urlbar-container {
max-width: 500px !important;
min-width:500px !important;
}

post-350326-12917363295833.png

Not much activity lately around here, eh? Well foxxyn8, since i've seen that you are the one to ask when it comes to CSS i'd like to ask you if you could make a style which combines the home button and the bookmark button like in this picture LiNK (if it's possible).

I think it looks kinda good, I would do it myself if i knew how but unfortunately i don't :rolleyes:

Not much activity lately around here, eh? Well foxxyn8, since i've seen that you are the one to ask when it comes to CSS i'd like to ask you if you could make a style which combines the home button and the bookmark button like in this picture LiNK (if it's possible).

I think it looks kinda good, I would do it myself if i knew how but unfortunately i don't :rolleyes:

Simple enough, here you go:

#home-button {
 border-top-right-radius: 0 !important;
 border-bottom-right-radius: 0 !important;
 margin-right: 0 !important;
 border-right: 0 !important;
}

#bookmarks-menu-button {
 border-top-left-radius: 0 !important;
 border-bottom-left-radius: 0 !important;
 margin-left: 0 !important;
}

#home-button:hover:active + #bookmarks-menu-button-container > #bookmarks-menu-button {
 border-left-color: rgba(0,0,0,.55) !important;
}

Edit: fixed some border colors on pressed.

Hmm, they finally made some upgrades to the add-on bar: they added a freaking stupid close button :angry: ! How do I remove this new button area (see picture) ?

My style looks like this:

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

#browser-bottombox {
  position: fixed;
  bottom: 0;
  background: none !important;
}

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

#addon-bar:hover {
  bottom: 0;
  opacity: 1;
  -moz-transition: bottom .6s 1s ease-out, opacity .6s 1s ease-in;
}

#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:rgba(245,245,245,.9) !important; 
  box-shadow: 0 0 4px rgba(161,161,161,.9) inset !important;
}

@SoapyHamHocks

Is there a way to style the buttons made with custom buttons add-on ? I want to use your style ideas ... :D

post-344974-12920119874372.jpg

Hmm, they finally made some upgrades to the add-on bar: they added a freaking stupid close button :angry: ! How do I remove this new button area (see picture) ?

My style looks like this:

#addonbar-closebutton {
 display: none;
}

Is there a way to style the buttons made with custom buttons add-on ?

Style them like any other toolbarbutton. Their class is .toolbarbutton-1.

If you have multiple buttons and want to style some of them differently you'll need the specific id for the button. They start with #custombuttons-button0 and increase numerically from there. (ie: #custombuttons-button0 is one button #custombuttons-button1 would be another button etc..) Using domi to get the ids would be easier than just guessing though. You could also do:

.toolbarbutton-1[cb-name="name of button"]

here's an example where I styled a custom button to look like a tab when placed in the tab bar:

#TabsToolbar #custombuttons-button0 {
-moz-appearance: none !important;  
background:-moz-linear-gradient(rgba(247,182,82,.5), rgba(215,98,10,.2)) no-repeat -5px -2px !important;
background-size: 200% !important;
margin: 0 !important;
padding: 0 1px 0 1px !important;
-moz-border-image: url("chrome://browser/skin/tabbrowser/tab.png") 4 5 2 6 / 4px 5px 2px 6px !important;
border-radius: 10px 8px 0 0 !important;
width: 31px !important;
}

#TabsToolbar #custombuttons-button0:hover,
#TabsToolbar #custombuttons-button0[open] {
    background-image: -moz-linear-gradient(rgba(247,182,82,1), rgba(215,98,10,1))  !important;
}

#main-window[privatebrowsingmode=temporary] #TabsToolbar #custombuttons-button0{
    background-image: -moz-linear-gradient(rgba(153,38,211,.5), rgba(105,19,163,.2)) !important;
}

#main-window[privatebrowsingmode=temporary] #TabsToolbar #custombuttons-button0:hover,
#main-window[privatebrowsingmode=temporary] #TabsToolbar #custombuttons-button0[open]{
    background-image: -moz-linear-gradient(rgba(153,38,211,1), rgba(105,19,163,1)) !important;
}

#TabsToolbar #custombuttons-button0 image {
padding-bottom: 1px !important;
margin-bottom: -2px !important;
margin-left: 0px !important;
}

Style them like any other toolbarbutton. Their class is .toolbarbutton-1.

If you have multiple buttons and want to style some of them differently you'll need the specific id for the button. They start with #custombuttons-button0 and increase numerically from there. (ie: #custombuttons-button0 is one button #custombuttons-button1 would be another button etc..) Using domi to get the ids would be easier than just guessing though. You could also do:

.toolbarbutton-1[cb-name="name of button"]

Great, thanks a lot man! All I wanted was a simple style to get SoapyHamHocks's idea for merging the buttons, looking like this for me:

BTW: thanks SoapyHamHocks for the help in the previous post! ;)

post-344974-12920633187557.jpg

Is there a simple way to just move the addon bar buttons to the right side without changing anything else?

You could try something like, although I'm sure there is a better way.

#status-bar {
 position: fixed;
 right: 2px;
 bottom: 0;
 margin-bottom: -1px;
 background: none !important;
}

Can somebody post the code for soapys combined buttons here please, I have been trying to get it off userstyles.org but their site is throwing a fit right now with apache errors and thing not loading.

Thanks in advance :)

Can somebody post the code for soapys combined buttons here please' date=' I have been trying to get it off userstyles.org but their site is throwing a fit right now with apache errors and thing not loading.

Thanks in advance :) [/quote']This :rolleyes:

It seems to work again. Anyway :

#nav-bar[currentset*=",home-button,bookmarks-menu-button-container"] #home-button {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  margin-right: 0 !important;
  border-right: 0 !important;
}

#nav-bar[currentset*=",home-button,bookmarks-menu-button-container"] #bookmarks-menu-button {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  margin-left: 0 !important;
}

#home-button:hover:active + #bookmarks-menu-button-container > #bookmarks-menu-button {
  border-left-color: rgba(0,0,0,.55) !important;
}

Does anyone know the identifier for the LastPass button and the SumbleUppon button (the one used to show/hide the toolbar)?

I'd like to add those two as well. But i would probably need to make the LastPass button smaller. Is there anyway to do that too?

Thanks.

Soapy, with your style for combine home and bookmarks button, do you know how to get back to the normal home button when the bookmarks toolbar is activated ? Actually the home button remains without the right corner and attacked to the left edge of the window border

sorry I was wrong, the home button remains without the right corners and attacked to the right edge of the window border when the bookmarks toolbar is activated

Unfortunately I don't think there is anything I can do about that.

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

    • No registered users viewing this page.
  • Posts

    • WildBit Viewer 6.20 released; no further updates planned by Razvan Serea WildBit Viewer is a popular, fast, and extensive image viewer offering a comprehensive suite of tools for photographers, designers, and image enthusiasts. It includes a powerful Viewer, Slide Show, Editor, Search, Profile Switcher, and Multi-Screen Viewer. The Viewer provides blazing-fast folder, file list, and thumbnail navigation with customizable headers, full-screen view, and a shell toolbar to organize favorite folders. It supports all major graphic formats (over 70), including JPEG, TIFF, PNG, BMP, GIF, PCX, TGA, and RAW formats. Detailed Image Info shows EXIF, IPTC, and XMP metadata, with rotation based on EXIF orientation, wallpaper setting, image comparison, geo-tag viewing, color labels, and CMS-aware color management. The Slide Show module offers 176 transition effects, multi-monitor support, custom shows with per-image settings, image marking, zoom, rotate, and desktop hiding for a professional viewing experience. The Editor supports advanced image manipulation, including crop, resize, color adjustments, curves, edge detection, effects, batch processing, retouching, layer support, and printing. Users can apply mass renaming, update or clear metadata, and work with multi-page TIFFs and animated GIFs. Search allows filtering by name, location, date, size, attributes, and metadata, while the Profile Switcher saves and loads custom layouts for all modules. The Multi-Screen Viewer opens multiple windows on available monitors, allowing simultaneous image viewing with independent zoom, pan, and rotation. WildBit Viewer also supports portable operation, 32- and 64-bit versions, Unicode, high-DPI displays, and multiple Windows styling options. With its combination of speed, versatility, and rich feature set, WildBit Viewer is an indispensable tool for managing, editing, and showcasing images efficiently. WildBit Viewer key features: Blazing-fast folder, file list, and thumbnail browsing Supports 70+ image formats including JPEG, TIFF, PNG, BMP, GIF, and RAW Full-screen view with multi-monitor support Explorer-style file handling with customizable headers Thumbnail Browser with sorting, view change, and fast size adjustment EXIF, IPTC, and XMP metadata viewing and editing Automatic rotation based on EXIF orientation Shell toolbar for organizing favorite folders Image Compare to calculate similarity between images Mass renaming and batch metadata updates File List Generator (HTML, CSV, RTF, TXT, Unicode) Rating and color labels, CMS-aware color management Video playback (AVI, MPG, MPEG, WMV) Animated GIF, multipage TIFF, Camera RAW support Slide Show with 176 transition effects and custom settings Editor: crop, resize, rotate, flip, canvas resize, and retouching tools Batch processing and image format conversion Multi-Screen Viewer: multiple windows with independent zoom, pan, and rotate Profile Switcher: save, load, reset, delete module profiles Portable operation, 32-/64-bit support, Unicode, and high-DPI ready WildBit Viewer 6.20 changelog: Viewer, Slide Show, Editor, Search, Profile Switcher & Multi Screen Viewer. Updated ImageEn to 15.0.0 version. Viewer, Slide Show, Editor, Search, Profile Switcher & Multi Screen Viewer. Updated Jedi JCL&JVCL. Viewer - Image Geo Info, OpenStreetMap removed. Slide Show Remote Mode removed. Note! This means that WildBit Slide Show Remote is now officially EOL. Editor - Shortcut keys for Capture removed. Optimized code. Note! This version includes help what supersedes all previous releases. plus Lots of bug fixes and changes, check Readme files for details. WildBit Viewer End‑of‑Life WildBit Viewer has reached its final release with version 6.20. As development comes to a close, no further feature updates are planned. WildBit Slide Show Remote reached End-of-Life on 06 June 2026, while WildBit Viewer will reach End-of-Life on 30 June 2026. Downloads will remain available until the end of July 2026 (possibly extending into early August). After End-of-Life, the software will no longer receive updates, security fixes, or technical support. Download: WildBit Viewer 64-bit | Portable 64-bit | ~70.0 MB (Freeware) Download: WildBit Viewer 32-bit | Portable 32-bit Links: WildBit Viewer Homepage | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Thanks for liking it! 😊 That's Arch Linux with Gnome.
    • LOL. Can't even quote and edit a comment correctly. Figures you're a Linux user.
    • It won't perform hugely better than the 3080 unless you're VRAM limited in games. Have you tried putting new thermal pads on them 3080 and giving it a good clean to see if you can regain your temps and overclock?
  • Recent Achievements

    • Week One Done
      Windows Guy earned a badge
      Week One Done
    • Dedicated
      Mark Spruce earned a badge
      Dedicated
    • Collaborator
      conkir earned a badge
      Collaborator
    • Rising Star
      olavinto went up a rank
      Rising Star
    • One Month Later
      lamborghiniv10 earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      479
    2. 2
      PsYcHoKiLLa
      252
    3. 3
      Steven P.
      71
    4. 4
      FloatingFatMan
      69
    5. 5
      +Edouard
      69
  • Tell a friend

    Love Neowin? Tell a friend!