Recommended Posts

There are another theme based on Firefox Mockup 4.0. Look:

http://dert07.deviantart.com/art/Firefox-4...Theme-131376655(No download - just a picture).

I saw that. We looked into it and it appears as though he is using our buttons without permission. We are investigating further to see what he has to say.

Thanks BoneyardBrew, this theme is gorgeous :D

The only thing, when Tab Mix Plus is activated, tabs' throbber disappears:

shot.jpg

When loading is complete, the favicon returns.

Don't know if it's a theme bug or a TMP's one...

You're welcome :D.

That might be a problem caused by All-Glass and TMP running simultaneously. We (SoapyHamHocks and myself) are working with Ambroos, the creator of All-Glass, to get all the bugs caused by All-Glass worked out. I will let him know about this one, and hopefully it can be fixed :).

I have a question regarding Download Statusbar and this amazing theme. The transparent mod addon makes download statusbar almost illegible. Is there any way I can get around this?

The background in of this part must be dark if you want to be able to read it.

You're welcome :D.

That might be a problem caused by All-Glass and TMP running simultaneously. We (SoapyHamHocks and myself) are working with Ambroos, the creator of All-Glass, to get all the bugs caused by All-Glass worked out. I will let him know about this one, and hopefully it can be fixed :).

I'm not running tabmix plus and I see that behavior on some sites as well, so it's more than likely a problem restricted to Allglass.

Get the Progress Line of the Firefox 4.0 Mockup:

http://userstyles.org/styles/19946

I'm not the owner!

Thanks but no matter how I install this the green line goes through the middle of the text, not below :/

edit: Got it now, you edit the stylish file to point to the image file, not Fissions options :pinch:

Hallo everyone,

first special Thanks to "BoneyardBrew" & "SoapyHamHocks" and many other people for there great work :punk:

But thanks to "family guy" for the icon's :rolleyes:

Here my result of Work.

1. Download this User Script: Stop-Reload-Safari4.uc.js

 // ==UserScript==
	// @name		 Stop/Reload button: Safari 4 way
	// @namespace   http://userstyles.org/styles/17818
	// @description Put Stop/Reload button in location bar like Safari 4
	// @description Original: http://userstyles.org/styles/2131
	// @version	 1.0
	// @include	 main
	// @license	 CC0 1.0 (or later) Universal; http://creativecommons.org/publicdomain/zero/1.0/
	// ==/UserScript==

	// Move Smart Stop/Reload button into the location bar right before the Go button
	document.getElementById("urlbar-icons").insertBefore(
	document.getElementById("reload-button"),
	document.getElementById("go-button")
	);
		document.getElementById("urlbar-icons").insertBefore(
		document.getElementById("stop-button"),
		document.getElementById("reload-button")
	);
	// Prevent location bar from gaining focus after Stop or Reload are activated
	document.getElementById("stop-button").setAttribute("onclick", "event.stopPropagation();");
	document.getElementById("reload-button").setAttribute("onclick", "event.stopPropagation();");
	// Add platform CSS selection
	document.getElementById("main-window").setAttribute("platform", navigator.platform);

and save in your user chrome Directory, i have found here Stop/Reload button: Safari 4 way

2. Download the Pictures (icon's) from Family guy Family Guy Pictures and save in Firefox/icons

post-50840-1248803851.png -->> URLGoButton.png

post-50840-1248803857.png -->> URLReloadButton.png

post-50840-1248803863.png -->> URLStopButton.png

3. Put this Code into your Stylish:

/*
 ________________________________________________________________________
|				  |													 |
|		  Title:  |  Mockup 4.0										 |
|	Description:  |  Reload & Stop Button in URLbar					 |
|		 Author:  |  krid.of-k										  |
|   Date Created:  |  July 30, 2009									  |
|   Last Updated:  |  August 01, 2009									  |
|		Version:  |  1.0.0.0											|
|__________________|_____________________________________________________|

*/


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

/*----GoButton always visible----*/
/*
#go-button {
  visibility: visible !important;
}
*/

/*----Firefox 3 - Shows Go button when hover your mouse----*/
/*
#urlbar:hover #go-button {
  visibility: visible !important;
}
*/



/*----Adressleiste abrunden----*/
#urlbar {
-moz-appearance: none !important;
-moz-border-radius: 5px !important;
padding-right: 1px !important; } 


/*----Suchleiste abrunden----*/
.searchbar-textbox {
-moz-appearance: none !important;
-moz-border-radius: 5px !important; }


#urlbar dropmarker {
 display: -moz-box !important;
/*border: none !important;*/
background: transparent !important;
margin-right: -2px !important;
}



/*----Merge Start/Stop----*/

#stop-button:not([disabled="true"]) { display: -moz-box !important; }
#stop-button[disabled="true"] { display: none !important; }
#stop-button[disabled="true"] + #reload-button { display: -moz-box !important; }
#stop-button:not([disabled="true"]) + #reload-button { display: none !important; } 




#urlbar-icons > #go-button {
  list-style-image: url("resource:/icons/URLGoButton.png") !important;
  -moz-image-region: rect(0px, 24px, 24px, 0px) !important;
  width: 24px !important;
  height: 24px !important;
  margin: -5px -5px -4px -0px !important;
  padding: 0 !important;
}

#urlbar-icons > #go-button:hover {
  list-style-image: url("resource:/icons/URLGoButton.png") !important;
  -moz-image-region: rect(24px, 24px, 48px, 0px) !important;
  width: 24px !important;
  height: 24px !important;
  margin: -5px -5px -4px -0px !important;
}

#urlbar-icons > #go-button:hover:active .toolbarbutton-icon {
  list-style-image: url("resource:/icons/URLGoButton.png") !important;
  -moz-image-region: rect(48px, 24px, 72px, 0px) !important;
  width: 24px !important;
  height: 24px !important;
  margin: -5px -5px -4px -0px !important;
}



#urlbar-icons > #reload-button:not([disabled]) .toolbarbutton-icon {
  list-style-image: url("resource:/icons/URLReloadButton.png") !important; 
  -moz-image-region: rect(0px, 24px, 24px, 0px) !important;
  width: 24px !important;
  height: 24px !important;
  margin: -5px -19px -4px -0px !important;
  padding: 0 !important;
}

#urlbar-icons > #reload-button:not([disabled]):hover .toolbarbutton-icon {
  list-style-image: url("resource:/icons/URLReloadButton.png") !important;
  -moz-image-region: rect(24px, 24px, 48px, 0px) !important;
  width: 24px !important;
  height: 24px !important;
  margin: -5px -19px -4px -0px !important;
}

#urlbar-icons > #reload-button:not([disabled]):hover:active .toolbarbutton-icon {
  list-style-image: url("resource:/icons/URLReloadButton.png") !important;
  -moz-image-region: rect(48px, 24px, 72px, 0px) !important;
  width: 24px !important;
  height: 24px !important;
  margin: -5px -19px -4px -0px !important;
}

#urlbar-icons > #reload-button[disabled="true"] .toolbarbutton-icon {
  list-style-image: url("resource:/icons/URLReloadButton.png") !important;
  -moz-image-region: rect(48px, 24px, 72px, 0px) !important;
  width: 24px !important;
  height: 24px !important;
  margin: -5px -19px -4px -0px !important;
}


#urlbar-icons > #stop-button:not([disabled]) .toolbarbutton-icon {
  list-style-image: url("resource:/icons/URLStopButton.png") !important; 
  -moz-image-region: rect(0px, 24px, 24px, 0px) !important;
  width: 24px !important;
  height: 24px !important;
  margin: -5px -19px -4px -0px !important;
}

#urlbar-icons > #stop-button:not([disabled]):hover .toolbarbutton-icon {
  list-style-image: url("resource:/icons/URLStopButton.png") !important;
  -moz-image-region: rect(24px, 24px, 48px, 0px) !important;
  width: 24px !important;
  height: 24px !important;
  margin: -5px -19px -4px -0px !important;
}

#urlbar-icons > #stop-button:not([disabled]):hover:active .toolbarbutton-icon {
  list-style-image: url("resource:/icons/URLStopButton.png") !important;
  -moz-image-region: rect(48px, 24px, 72px, 0px) !important;
  width: 24px !important;
  height: 24px !important;
  margin: -5px -19px -4px -0px !important;
}

5. (For User with ReloadEvery):

#reload-button dropmarker:not([disabled="true"]) {
   margin: 0px 34px 0px -28px !important;
}

   #reload-button,
   #reload-button:not([disabled="true"]):hover,
   #reload-button[disabled="true"],
   #reload-button:not([disabled="true"]):hover:active {
	   width: 46px !important;
	   height: 24px !important;
	   margin: -3px -15px -3px 0px !important;
}

Not perfekt :rolleyes: but i'm not a Profi Programmer :pinch:

I dont know (my little Brain) to make the Start/Stop/Go Button to the right side of URLbar after the Dropmarker? :cry:

Sorry for my bad english :pinch:

so long

Dirk K. aka krid.of-k

post-306650-1249125748_thumb.png

post-306650-1249125765_thumb.png

Get the Progress Line of the Firefox 4.0 Mockup:

http://userstyles.org/styles/19946

I'm not the owner!

That looks great :D. I will see if I can contact the author about adding it to the theme.

Hallo everyone,

first special Thanks to "BoneyardBrew" & "SoapyHamHocks" and many other people for there great work :punk:

But thanks to "family guy" for the icon's :rolleyes:

Here my result of Work.

Not perfekt :rolleyes: but i'm not a Profi Programmer :pinch:

I dont know (my little Brain) to make the Start/Stop/Go Button to the right side of URLbar after the Dropmarker? :cry:

Sorry for my bad english :pinch:

so long

Dirk K. aka krid.of-k

The latest version will include some new reload/stop icons that appear all the way to the right of the url bar.

Here is an updated screenshot :D.

buttonteaser.jpg

I have pretty much completely redone the original ones I posted in the earlier screenshot, I didn't really think they fit the "style" created in the mockup.

Here are some more screenshots :).

These are some modified RSS icons and a new bookmarks star.

rssteaser.jpg

Bookmarks Button

bookmarksteaser.jpg

I'm not 100% satisfied with the bookmark buttons quite yet. I will definitely be doing some more tweaking before the next release.

keep up the great work ByB. I am so excited to get a 4.0 Redux :)
keep up the great work ByB. I am so excited to get a 4.0 Redux :)

Thanks :D.

Here are some revised icons from my previous post.

I changed the colors of the Bookmark Button states so they are easily recognized:

bookmarkl.jpg

Same applies for the Go Button:

goarrow.jpg

This is just an updated RSS screenshot to reflect the Bookmark Button changes:

rssqcy.jpg

That looks great :D. I will see if I can contact the author about adding it to the theme.

The latest version will include some new reload/stop icons that appear all the way to the right of the url bar.

Here is an updated screenshot :D.

buttonteaser.jpg

I have pretty much completely redone the original ones I posted in the earlier screenshot, I didn't really think they fit the "style" created in the mockup.

Here are some more screenshots :).

These are some modified RSS icons and a new bookmarks star.

rssteaser.jpg

Bookmarks Button

bookmarksteaser.jpg

I'm not 100% satisfied with the bookmark buttons quite yet. I will definitely be doing some more tweaking before the next release.

Hello BoneyardBrew,

i have read your earlier Post's but I can't wait for the update, it's was a Quick & Dirty Trick and it was for my Curiosity, actually it was only intended for me, but I wanted the others did not make.

With a few adjustments that also works with other themes :whistle:

I waiting for the new Mockup 4.0, thank you in advance for the work.

so long

Dirk K. aka krid.of-k

Since Firefox 3.6 Alpha 1 is coming out on Monday is there support for the 3.6 series?

I think they should concentrate on finishing the theme for Firefox 3.5.1. They have a lot of work with that.

If they would make the theme compatible with every new beta, they will not have time to finish it just for 3.5.1.

I think thats too much work. If they will do that, they need to fix bugs for two or more firefox versions....

That would slow down the development and everybody hast to wait many weeks for a new release.

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

    • No registered users viewing this page.
  • Posts

    • Sadly, that is the state of things. It's basically considered acceptable for any random app running on your computer to use 1+ GB of RAM, and install space, lol, no one even seems to consider that.
    • EU Commission explains why Siri AI isn't launching in the EU, and Apple is to blame by Hamid Ganji Image via Apple This week at Apple’s 2026 developers conference, the iPhone maker unveiled the upgraded Siri after more than a year of delays. The new Siri is now called Siri AI, and it's powered by Google Gemini models. While Siri AI is preparing to roll out to Apple users worldwide, the company’s EU customers might need to wait much longer before getting their hands on the new assistant. Shortly after announcing iOS 27, Apple said in a blog post that Siri AI is not coming to the EU anytime soon due to hurdles posed by the Digital Markets Act (DMA) and other regulatory requirements. To comply with the DMA in the EU, Apple apparently needs to open Siri AI to rival assistants on iOS 27 and iPadOS 27. Apple has refused to do so, which has resulted in Siri AI being delayed for its EU users. The company argues that such a move would put users’ privacy at risk. In a statement to Neowin, a European Commission spokesperson provided more details about why Siri AI will not be rolled out to Apple customers in the region. The statement first noted that the DMA does not prohibit Apple from launching its services in the EU and that the company is simply required to comply with the law. The European Commission spokesperson added that, since Apple is considered a gatekeeper under the DMA, it is “obliged to give third parties access to equivalent features as they give to its own products. Because the DMA is precisely about giving users the choice to use the product they find best suits their needs.” Moreover, the spokesperson said the Commission has been in contact with Apple, though the company “did not develop proposals for DMA compliant interoperability solutions.” The statement also clarified that companies designated as gatekeepers cannot leverage their status and products, such as operating systems, to favor their own AI services. The first public beta of iOS 27 will roll out next month, while the stable version is expected to launch this fall following the release of the iPhone 18 series. It remains unclear when Apple will be able to resolve its DMA-related compliance issues with the European Commission and bring Siri AI to its European customers.
    • i wish i could uninstall Chrome from Anrdoid...  
    • XMedia Recode 3.6.3.1 by Razvan Serea XMedia Recode is a free video and audio converter. XMedia Recode supports nearly all audio and video codecs. With XMedia Recode you can easily convert nearly all film and music files in the format you want. Convert for countless devices, select the predefined profile (iPhone, iPad, iPod Touch, Android-Tablets, Sony PSP, Amazon Kindle, Smartphones Blackberry, Wii und DS, Cowon, Android, HTC, Xbox360, Samsung, LG). XMedia Recode converts: 3GP in AVI, 3GP in FLV, AC3 in MP3, AC3 in WAV, ASF in 3GP, ASF in FLV, ASF in MP4, AVI in FLV, AVI in 3GP, FLAC in MP3, FLAC in WMA, FLV in 3GP, FLV in Mp3, DVD in 3GP, DVD in AC3, DVD in AVI, DVD in MP3, DVD in MP4, DVD in MOV, DVD in SVCD, DVD in VCD, DVD in WMV, OGG in MP3, OGG in WMA, MPEG in AVI, MP2 in MP3, MP4 in FLV, MP4 in AVI, M4P in MP3, MOV in 3GP, MOV in AVI, MOV in FLV, WMA in MP3, WMV in FLV, WAV in MP3. Main functions of XMedia Recode: Extracts audio tracks from DVD, Blu-ray and video files Framework also freely selectable color (Padding) Drag-n-drop of video files directly on the encoder Selection display format (1: 1, 3:2, 4:3, 5:4, 5:6, 11:9,16: 9, 16:10, 2.21: 1) Zoom shot (none, type character box, media, Pan Scan, to screen) ''Direct Stream'' copies the audio stream or video stream into the target format 2-Pass-Encoding Volume correction Can change framerate, bit rate, resolution Can extract audio stream of most video formats Produce DVD copies for mobile phones, various mobile devices Edit Video: Color correction Video cut Cropping Denoise Delogo Deblocking De-interlacing Flip Image Start Time End Time Resolution Rotate Image Sepia Sharpness Padding Video fade in / fade out XMedia Recode 3.6.3.1 changelog: Update of ffmpeg Updated AOM AV1 Codec (3.14.1) Fixed minor bugs Download: XMedia Recode 64-bit | Portable ~20.0 MB (Freeware) Download: XMedia Recode 32-bit | Portable View: XMedia Recode Website | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • This has been on the roadmap for years, nothing really new here. This is one of the few areas where Microsoft is making Windows better. Universal print is a very good things and so far works as expected. The last step is ending the option for 3rd parties to add traditional custom drivers. It is somewhat of a hurdle, but it is for a long-term good. The downside is that printer manufactures are likely going to use this as an excuse to force users onto new printers. Considering this roadmap has been public for years, then printers sold during that time should be covered...but I'm sure they will have a different opinion.
  • Recent Achievements

    • One Month Later
      pinnclepd earned a badge
      One Month Later
    • First Post
      X-No-file earned a badge
      First Post
    • One Month Later
      johnjacobb40 earned a badge
      One Month Later
    • One Year In
      Primer1st earned a badge
      One Year In
    • Experienced
      JayZJay went up a rank
      Experienced
  • Popular Contributors

    1. 1
      +primortal
      508
    2. 2
      PsYcHoKiLLa
      213
    3. 3
      +Edouard
      145
    4. 4
      Steven P.
      86
    5. 5
      ATLien_0
      83
  • Tell a friend

    Love Neowin? Tell a friend!