Recommended Posts

I fixed the reload/refresh buttons by moving them up 1px.

post-49492-1248309789_thumb.png

 #stop-button {
	 width: auto !important;
	 padding: 0px !important;
	 margin: 0px !important;
	 margin-top: -2px !important;
	 margin-right: 1px !important;
	 -moz-appearance: none !important;
	 border: none !important;
 }

 #reload-button {
	 width: auto !important;
	 padding: 0px !important;
	 margin: 0px !important;
	 margin-top: -2px !important;
	 margin-right: 2px !important;
	 -moz-appearance: none !important;
	 border: none !important;
 }

Wow, that looks great. Where exactly do I add those codes? I would like to add it to my theme, giving you credit of course :D.

I'm not sure how to add them to the theme, I just used Stylish. Just create a new style and add that code.

Thanks. That works, but I will see if I can add it to the actual theme so that the people who download it don't have to worry about getting Stylish as well.

Thanks again though.

I fixed the reload/refresh buttons by moving them up 1px.

post-49492-1248309789_thumb.png

 #stop-button {
	  width: auto !important;
	  padding: 0px !important;
	  margin: 0px !important;
	  margin-top: -2px !important;
	  margin-right: 1px !important;
	  -moz-appearance: none !important;
	  border: none !important;
  }

  #reload-button {
	  width: auto !important;
	  padding: 0px !important;
	  margin: 0px !important;
	  margin-top: -2px !important;
	  margin-right: 2px !important;
	  -moz-appearance: none !important;
	  border: none !important;
  }

Thanks (Y)

Very nice theme! :)

Thanks :D!

Also, I will be updating the download links at DeviantART so they include the fix SoapyHamHocks provided for the reload and stop buttons. Thanks Soapy!

The Firefox 3.7 Mockup Redux team (previously just myself for the most part) has gained an extremely helpful and knowledgable member, SoapyHamHocks.

Soapy has removed the boundries and limitations I spoke of earlier, and has given me the ability to change the Reload and Stop buttons to ones that almost perfectly replicate the official mockup.

We think you will love this new version. Here is a screenshot to showcase the new buttons :D.

perfecttheme.th.jpg

Keep an eye out for the release.

The Firefox 3.7 Mockup Redux team (previously just myself for the most part) has gained an extremely helpful and knowledgable member, SoapyHamHocks.

Soapy has removed the boundries and limitations I spoke of earlier, and has given me the ability to change the Reload and Stop buttons to ones that almost perfectly replicate the official mockup.

We think you will love this new version. Here is a screenshot to showcase the new buttons :D.

perfecttheme.th.jpg

Keep an eye out for the release.

-------------------------------------------------------------

Hi

I am using "Firefox_3_7_Mockup_Redux_Grey_by_BoneyardBrew.jar" but the favicons tool bar does not match the rest.

Can you make it Grey in your new release.

screen shot : http://livecho.freehostia.com/test.png

Thank you

test.png

Hi all this is what BoneyardBrew and I have so far. There is still alot of work to be done, but here is a little teaser :p

post-49492-1248335412_thumb.png

The refresh/stop buttons are better at that size as well :yes:

-------------------------------------------------------------

Hi

I am using "Firefox_3_7_Mockup_Redux_Grey_by_BoneyardBrew.jar" but the favicons tool bar does not match the rest.

Can you make it Grey in your new release.

screen shot : http://livecho.freehostia.com/test.png

Thank you

test.png

Can you host the screenshot somewhere else, preferably ImageShack? For some reason it is redirecting to the main freehostia site rather than your screenshot.

Also, Thank you everyone for the kind words. I really couldn't have done this without SoapyHamHocks. He's really done an excellent job here. Basically the backbone of this team. I create the graphics, he puts it all together :D.

Thanks again Audioboxer for the new version of Glasser, it really is a step up from the last version.

Can you host the screenshot somewhere else, preferably ImageShack? For some reason it is redirecting to the main freehostia site rather than your screenshot.

Also, Thank you everyone for the kind words. I really couldn't have done this without SoapyHamHocks. He's really done an excellent job here. Basically the backbone of this team. I create the graphics, he puts it all together :D.

Thanks again Audioboxer for the new version of Glasser, it really is a step up from the last version.

here it is

http://picasaweb.google.ca/xithium/Recentl...697217907734434

EDIT - Actually, the rest of the thread answered one of my questions ;)

I have one question which I couldn't see answered in this thread, though. Do you plan on making the tab bar glass as it appears in the mock-up? With that and the added 'Tools' button, it should look almost perfect (along with a 'Page' button too :p)

It's coming along very nice, though. I love the buttons! Thanks :)

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

    • No registered users viewing this page.
  • Posts

    • Euro-Office must default to ODF to be considered "genuinely European", LibreOffice argues by David Uzondu Euro-Office is a web-based collaborative office suite that positions itself as a "European sovereign alternative" to American tech companies, backed by a coalition of developers including Nextcloud, IONOS, Abilian, BTactic, OpenProject, and, more recently, Tuta. The project officially went live a couple of days ago, but not before drawing heavy fire from LibreOffice developers, who called the marketing claim that Euro-Office represents the "first open-source office suite developed in Europe" a deceptive historical inaccuracy because projects like OpenOffice and LibreOffice existed decades earlier. Now that the project has launched, LibreOffice is back with another complaint, arguing that Euro-Office cannot consider itself "genuinely European" while it pushes proprietary Microsoft defaults on users. Euro-Office had promised to improve the OpenDocument Format (ODF) back in April, but the current release still plagues users with several technical failures. For instance, the suite lacks an admin setting to enforce ODF, and mobile editors completely block ODF saves, forcing files into Microsoft's OOXML formats. Some configurations force files into read-only mode, while editing frequently corrupts document formatting or erases data. LibreOffice thinks that merely supporting a format as an afterthought does not make you a sovereign alternative, as file formats are the battleground where" digital sovereignty is won or lost." The road to the first stable release of Euro-Office has been quite bumpy due to an aggressive public fallout with OnlyOffice, from which the coalition originally forked the project. OnlyOffice struck back by accusing the coalition of violating copyright terms under its AGPLv3 branding requirements by stripping the original branding anyway and forking the code. Getting Euro-Office up and running is a bit wonky (at least for non-technical users), as there is no direct installer to grab off the web. The easiest way we learnt is by using Docker. First, pull the official Euro-Office image from the GitHub Container Registry: docker pull ghcr.io/euro-office/documentserver:latest Then, run the container with active ports and a secure JWT token, enabling the test environment: docker run -i -t -d -p 8080:80 --restart=always -e EXAMPLE_ENABLED=true -e JWT_SECRET=my_secure_jwt_secret ghcr.io/euro-office/documentserver:latest And finally, open a web browser and go to the following address: http://localhost:8080 If you are running this on a remote server, replace localhost with your server's IP address. You will see the Euro-Office test page, where you can create new text documents, spreadsheets, or presentations directly in the browser. Image via Euro-Office Nextcloud promises that proper standalone desktop versions and mobile apps will arrive in a future release.
    • It’s any of their products not just windows.
    • Google Gemini has been failing for users across the United States, Europe, and Asia since early Wednesday morning, June 10, 2026, and more than six hours into the incident Google has yet to declare a fix............. https://www.techtimes.com/articles/318152/20260610/google-gemini-outage-tops-six-hours-errors-1076-1099-worldwideflash-lite-still-answers.htm
    • Fun fact: There are more Warhammer 40k games than there are stars in the universe.
  • Recent Achievements

    • Week One Done
      FBSPL earned a badge
      Week One Done
    • One Year In
      Jim Dugan earned a badge
      One Year In
    • One Month Later
      Tommi118 earned a badge
      One Month Later
    • One Month Later
      sjbousquet earned a badge
      One Month Later
    • Week One Done
      sjbousquet earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      486
    2. 2
      PsYcHoKiLLa
      197
    3. 3
      +Edouard
      155
    4. 4
      Steven P.
      83
    5. 5
      ATLien_0
      69
  • Tell a friend

    Love Neowin? Tell a friend!