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
Support for customizing styling in custom elements using ShadowDom is still evolving at the spec level.
As a workaround until this settles down, we could consider adding a system for customizing the location of the css resources a custom element needs.
Perhaps something like:
<script> Polymer.resources({ 'polymer-ui-toolbar': 'http://some-base-path' }); </script>
Then in polymer-ui-toolbar a specific resource that does not have an absolute url could be path adjusted by this base path:
<link rel="stylesheet" href="styles.css">
loads from http://some-base-path/styles.css.
The text was updated successfully, but these errors were encountered:
We've decided against this.
Sorry, something went wrong.
No branches or pull requests
Support for customizing styling in custom elements using ShadowDom is still evolving at the spec level.
As a workaround until this settles down, we could consider adding a system for customizing the location of the css resources a custom element needs.
Perhaps something like:
Then in polymer-ui-toolbar a specific resource that does not have an absolute url could be path adjusted by this base path:
loads from http://some-base-path/styles.css.
The text was updated successfully, but these errors were encountered: