Missing buttons

Discuss application theming and theme development.
Post Reply
User avatar
jivko
Posts: 237
Joined: September 2nd, 2008, 11:20 am

Missing buttons

Post by jivko »

Need some help. Like always these days new update = problems. For some reason I have missing button in the new Firefox menu. Everything was fine with Firefox 29 and 30 but with 31 pffff. Can I anyone tell me where the problem might be. The image is in the archive my code is there. What's wrong?

Image
User avatar
mcdavis
Posts: 3195
Joined: December 9th, 2005, 5:51 am

Re: Missing buttons

Post by mcdavis »

Maybe a chrome.manifest (Firefox's, not yours) issue?

Here's the one for browser/chrome in Fx30:

Code: Select all

locale browser-region en-US en-US/locale/browser-region/
locale branding en-US en-US/locale/branding/
locale pdf.js en-US en-US/locale/pdfviewer/
locale browser en-US en-US/locale/browser/
content branding browser/content/branding/ contentaccessible=yes
skin browser classic/1.0 browser/skin/classic/browser/ os!=WINNT
skin browser classic/1.0 browser/skin/classic/aero/browser/ os=WINNT osversion>=6
content browser browser/content/browser/ contentaccessible=yes
skin browser classic/1.0 browser/skin/classic/browser/ os=WINNT osversion<6
skin communicator classic/1.0 browser/skin/classic/communicator/
override chrome://global/locale/netError.dtd chrome://browser/locale/netError.dtd
override chrome://mozapps/locale/downloads/settingsChange.dtd chrome://browser/locale/downloads/settingsChange.dtd
override chrome://global/locale/appstrings.properties chrome://browser/locale/appstrings.properties
override chrome://browser/skin/sync-horizontalbar.png chrome://browser/skin/sync-horizontalbar-XPVista7.png os=WINNT osversion<6.2
overlay chrome://browser/content/browser.xul chrome://browser/content/report-phishing-overlay.xul
overlay chrome://browser/content/places/places.xul chrome://browser/content/places/downloadsViewOverlay.xul
overlay chrome://global/content/viewPartialSource.xul chrome://browser/content/viewSourceOverlay.xul
overlay chrome://browser/content/browser.xul chrome://browser/content/win6BrowserOverlay.xul os=WINNT osversion>=6
overlay chrome://global/content/viewSource.xul chrome://browser/content/viewSourceOverlay.xul
override chrome://global/content/license.html chrome://browser/content/license.html
override chrome://browser/skin/Toolbar.png chrome://browser/skin/Toolbar-aero.png os=WINNT osversion=6.1
override chrome://browser/skin/syncProgress-horizontalbar.png chrome://browser/skin/syncProgress-horizontalbar-XPVista7.png os=WINNT osversion<6.2
override chrome://browser/skin/Toolbar.png chrome://browser/skin/Toolbar-aero.png os=WINNT osversion=6
manifest pdfjs/pdfjs.manifest


Here's the one for browser/chrome in Fx31. Do you see where there are new overrides for menuPanel.png and menuPanel-small.png? It's forcing you to also have menuPanel-aero.png and menuPanel-small-aero.png in your theme, IF you're using menuPanel.png and menuPanel-small.png as your icon sources. (I have menuPanel.png in my theme but I'm not using it so I don't have this problem.)

Code: Select all

locale branding en-US en-US/locale/branding/
locale browser en-US en-US/locale/browser/
locale browser-region en-US en-US/locale/browser-region/
locale pdf.js en-US en-US/locale/pdfviewer/
content branding browser/content/branding/ contentaccessible=yes
content browser browser/content/browser/ contentaccessible=yes
skin browser classic/1.0 browser/skin/classic/aero/browser/ os=WINNT osversion>=6
skin browser classic/1.0 browser/skin/classic/browser/ os!=WINNT
skin browser classic/1.0 browser/skin/classic/browser/ os=WINNT osversion<6
skin communicator classic/1.0 browser/skin/classic/communicator/
override chrome://global/locale/appstrings.properties chrome://browser/locale/appstrings.properties
override chrome://global/locale/netError.dtd chrome://browser/locale/netError.dtd
override chrome://mozapps/locale/downloads/settingsChange.dtd chrome://browser/locale/downloads/settingsChange.dtd
overlay chrome://browser/content/browser.xul chrome://browser/content/report-phishing-overlay.xul
overlay chrome://browser/content/browser.xul chrome://browser/content/win6BrowserOverlay.xul os=WINNT osversion>=6
overlay chrome://browser/content/places/places.xul chrome://browser/content/places/downloadsViewOverlay.xul
overlay chrome://global/content/viewPartialSource.xul chrome://browser/content/viewSourceOverlay.xul
overlay chrome://global/content/viewSource.xul chrome://browser/content/viewSourceOverlay.xul
override chrome://browser/skin/Toolbar.png chrome://browser/skin/Toolbar-aero.png os=WINNT osversion=6
override chrome://browser/skin/Toolbar.png chrome://browser/skin/Toolbar-aero.png os=WINNT osversion=6.1
override chrome://browser/skin/menuPanel-small.png chrome://browser/skin/menuPanel-small-aero.png os=WINNT osversion=6
override chrome://browser/skin/menuPanel-small.png chrome://browser/skin/menuPanel-small-aero.png os=WINNT osversion=6.1
override chrome://browser/skin/menuPanel.png chrome://browser/skin/menuPanel-aero.png os=WINNT osversion=6
override chrome://browser/skin/menuPanel.png chrome://browser/skin/menuPanel-aero.png os=WINNT osversion=6.1
override chrome://browser/skin/sync-horizontalbar.png chrome://browser/skin/sync-horizontalbar-XPVista7.png os=WINNT osversion<6.2
override chrome://browser/skin/syncProgress-horizontalbar.png chrome://browser/skin/syncProgress-horizontalbar-XPVista7.png os=WINNT osversion<6.2
override chrome://global/content/license.html chrome://browser/content/license.html
manifest pdfjs/pdfjs.manifest
Theme Development is Radical Participation.
NNL Beta Builds for Current and Up-coming Firefox
Dear User: Your Help is Needed
User avatar
jivko
Posts: 237
Joined: September 2nd, 2008, 11:20 am

Re: Missing buttons

Post by jivko »

mcdavis wrote:Maybe a chrome.manifest (Firefox's, not yours) issue?
(I have menuPanel.png in my theme but I'm not using it so I don't have this problem.)

[/code]


Just renamed menuPanel.png to something else and it worked. :)
User avatar
jivko
Posts: 237
Joined: September 2nd, 2008, 11:20 am

Re: Missing buttons

Post by jivko »

jivko wrote:
mcdavis wrote:Maybe a chrome.manifest (Firefox's, not yours) issue?
(I have menuPanel.png in my theme but I'm not using it so I don't have this problem.)


Just renamed menuPanel.png to something else and it worked. :) Thanks! :)

Also is there a way to style the new search bar in the new tab window, the one above the newtab cells?
User avatar
mcdavis
Posts: 3195
Joined: December 9th, 2005, 5:51 am

Re: Missing buttons

Post by mcdavis »

jivko wrote:Just renamed menuPanel.png to something else and it worked. :) Thanks! :)


Sure thing. That worked for me too with Toolbar.png, which I'm calling Toolbar-australis.png instead.

Also is there a way to style the new search bar in the new tab window, the one above the newtab cells?


I haven't tried yet. I'll try in-theme newTab.css but if that doesn't work I'll do it in Night Launch Companion.
Theme Development is Radical Participation.
NNL Beta Builds for Current and Up-coming Firefox
Dear User: Your Help is Needed
Post Reply