We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is perhaps a known issue, but I'll report it anyway.
Inside a component, the link-tag for referencing css is not working at all for me. To get around the problem I use @import inside the style tag.
The text was updated successfully, but these errors were encountered:
Same domain or CORS enabled resources should work within the toolkit as below. For other resources, using @import like you did is correct.
<element name="x-foo"> <link rel="stylesheet" href="foo.css"> <template> ... </template <script> Toolkit.register(this); </script> </element>
In this case we load the < link > and create a style element containing the sheet's content inside the element template.
Sorry, something went wrong.
Related: https://github.com/toolkitchen/HTMLImports/issues/1
Closing this issue due to age and the release of version 1 release of Polymer - please feel free to re-open if this is incorrect.
ebidel
No branches or pull requests
This is perhaps a known issue, but I'll report it anyway.
Inside a component, the link-tag for referencing css is not working at all for me. To get around the problem I use @import inside the style tag.
<style> @import url(http://url.com/mystyle.css); </style>The text was updated successfully, but these errors were encountered: