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
In http://www.polymer-project.org/docs/start/tutorial/step-4.html#edit-post-cardhtml, there are instructions to add styling for the post-card.html file that includes "fill" attributes to change color whenever the "favorite" button is clicked. It must say "color" instead:
post-card.html
fill
favorite
color
core-icon-button { position: absolute; top: 3px; right: 3px; fill: #636363; } :host([favorite]) core-icon-button { fill: #da4336; }
core-icon-button { position: absolute; top: 3px; right: 3px; color: #636363; } :host([favorite]) core-icon-button { color: #da4336; }
Also, the polymer files distributed within the tutorial should be updated with the latest version distributed in github.
The text was updated successfully, but these errors were encountered:
auto-moving this issue to Polymer/old-docs-site#631 and closing this one
Sorry, something went wrong.
Thanks for the note! Adding this issue to the Polymer/docs repository
No branches or pull requests
NOT A BUG - Just an FYI
In http://www.polymer-project.org/docs/start/tutorial/step-4.html#edit-post-cardhtml, there are instructions to add styling for the
post-card.html
file that includes "fill
" attributes to change color whenever the "favorite
" button is clicked.It must say "
color
" instead:CURRENT:
IT MUST BE:
Also, the polymer files distributed within the tutorial should be updated with the latest version distributed in github.
The text was updated successfully, but these errors were encountered: