Re: svg inside of transparent xul window
Axel Huizinga <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.svg |
|---|---|
| Message-ID | <[email protected]> |
Mark Finkle schrieb: > On Jan 10, 5:51 pm, Axel Huizinga <[email protected]> wrote: > > >> I would like to do to use a custom titlebar with the ususal round corners... >> any ideas out there? >> > > How about using -moz-border-radius on some XUL elements? > _______________________________________________ > dev-tech-svg mailing list > [email protected] > https://lists.mozilla.org/listinfo/dev-tech-svg > > this style I use on the window and the titlebar as well but in order to get the window corners rounding rendered with transparent background I need to set the window background to transparent this last setting causes my svg rendering appear invisible inside a stack (it is there - the scrollbars appear and the mouseover handlers work) inside of an iframe the whole iframe window is rendered completely transparent so I only see my desktop there... Another question - I tried to make my extension testable with xulrunner or firefox --app from my toplevel extension dir but firefox does nothing and xulrunner failed with : the file chrome://svgedit/content/svgedit.xul cannot be found ... my root chrome.manifest which works well to run the extension from inside firefox: content svgedit chrome/content/ bindings svgedit chrome/content/bindings/ overlay chrome://browser/content/browser.xul chrome://svgedit/content/browser_overlay.xul and the xulrunner chrome/chrome.manifest: content svgedit file:chrome/content/ bindings svgedit file:chrome/content/bindings/ Axel