Your styles aren't being applied because they're not outside of the element definition. The Shadow DOM boundary is kicking in and preventing outside styles from bleeding in. It works correctly in FF because that is using the SD polyfill. BTW, Chrome stable now has native Shadow DOM. You should be seeing the same issue there as of yesterday.
vulcanizer --inline should be inlining stylesheets into your element but it doesn't move them outside the element. See chromestatus.com as an example<view-source:http://www.chromestatus.com/static/elements/features-imports.vulcanize.html>. The <style> tags remain in the element. Are you using an old version of Vulcanizer or doing something else? On Thu, May 22, 2014 at 8:19 AM, Tim <[email protected]> wrote: > Hi, I have been building a new site with polymer. Looks fine in ff and > chrome stable, but canary and chome on my tablet look the css is not > getting used. The css is outside the head because I use the vulcanizer > --inline to bundle my html, css and js together. You can view the issue by > going to mylivechurch.com. Thanks, Tim. > > Follow Polymer on Google+: plus.google.com/107187849809354688692 > --- > You received this message because you are subscribed to the Google Groups > "Polymer" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/polymer-dev/1069e63c-46d9-47d6-b8e4-e75bff3a8262%40googlegroups.com<https://groups.google.com/d/msgid/polymer-dev/1069e63c-46d9-47d6-b8e4-e75bff3a8262%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > Follow Polymer on Google+: plus.google.com/107187849809354688692 --- You received this message because you are subscribed to the Google Groups "Polymer" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/polymer-dev/CACGqRCBr6AbUf7mHT3hVq3h5JW2GRsjX3c62QNFOAMbkA2ZaFw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
