Polymer 1.0:使用自定义样式引用导入样式表的路径

时间:2015-11-05 09:08:26

标签: html5 css3 polymer polymer-1.0 paper-elements

I'm trying to understand this example

<link rel="import" href="../../styles/app-theme.html"> <!--Line 22-->
...
<style is="custom-style" include="app-theme"></style> <!--Line 32-->

问题

在第32行中,app-theme属性的include值是否指向第22行中的app-theme.html导入?如果是这样,如果app-theme.html标记的属性集中某处没有包含<style>导入,编译器如何发现它的路径?

1 个答案:

答案 0 :(得分:1)

它实际上只引用了dom-module的id以及你想要使用的样式。

<dom-module id="app-theme">
  <template>
    <style>
     .red { color: red; }
    </style> 
  </template>
</dom-module>