Open ebidel opened 10 years ago
Ran into an issue where I wanted to override the inherited target and itemsSelector properties from core-selector:
target
itemsSelector
core-selector
<core-pages target="{{$.wrapper}}" itemsSelector="marked-element"> <div id="wrapper"> <template id="repeater" repeat="{{s,i in steps}}"> <core-ajax auto url="step-{i}}.md" response="{{s.response}}"></core-ajax> <marked-element text="{{s.response}}"></marked-element> </template> </div> </core-pages>
This unfortunately means the ::content > * descendent rules in https://github.com/Polymer/core-pages/blob/master/core-pages.css#L16 no longer apply.
::content > *
The user can define/replicate these styles themselves, but it would be nice to support this out of the box.
Ran into an issue where I wanted to override the inherited
target
anditemsSelector
properties fromcore-selector
:This unfortunately means the
::content > *
descendent rules in https://github.com/Polymer/core-pages/blob/master/core-pages.css#L16 no longer apply.The user can define/replicate these styles themselves, but it would be nice to support this out of the box.