어떤 이유에서 Polymer 맞춤 요소의 내부 (: 호스트) 스타일이로드되지 않습니다. 술집의 실제 fancy_button 구성 요소 (https://pub.dartlang.org/packages/fancy_button)를 사용하고 있습니다.내 Polymer 맞춤 구성 요소의 내 스타일이 인식되지 않는 이유는 무엇입니까?
hello_world.html
<head>
<link rel="import" href="packages/polymer/polymer.html">
<link rel="import" href="packages/fancy_button/fancy_button.html">
<link rel="import" href="../lib/components/first-component/first-component.html">
</head>
<body>
<button is="fancy-button">Wooot!</button>
<script type="application/dart">export 'package:polymer/init.dart';</script>
</body>
fancy_button.html :
<link href='http://fonts.googleapis.com/css?family=Tangerine' rel='stylesheet' type='text/css'>
<polymer-element name="fancy-button" extends="button">
<template>
<style>
:host {
background: linear-gradient(to bottom, #ff5db1 0%,#ef017c 100%);
box-shadow: 10px 10px 5px #888888;
border-radius: 5px;
font-size: 2em;
border: 0;
font-family: 'Tangerine', cursive;
padding: 30px;
}
:host(:hover) {
cursor: pointer;
}
:host(:active) {
font-size: 3em;
}
</style>
<content></content>
</template>
<script type="application/dart" src="fancy_button.dart"></script>
</polymer-element>
괜찮아요. Dartium 개발자 도구에서 오류 출력을 표시합니까? –