別の回答で述べたように、シャドウ DOM のホストのスタイルを設定するには、@host
セレクターを使用します。カスタム要素の場合、カスタム要素のホストはそれ自体です。
<style>
カスタム要素のタグ内から、ホスト要素またはカスタム要素自体をスタイルする方法の例を次に示します。
<!DOCTYPE html>
<html>
<head>
<title>index</title>
<script src="packages/polymer/boot.js"></script>
</head>
<body>
<polymer-element name="my-element">
<template>
<style>
@host {
my-element {
display: block;
border: 1px solid black;
}
}
p {
color: red;
}
#message {
color: pink;
}
.important {
color: green;
}
</style>
<p>Inside element, should be red</p>
<div id="message">
The message should be pink
</div>
<div class="important">
Important is green
</div>
<div>
<content></content>
</div>
</template>
<script type="application/dart" src="index.dart"></script>
</polymer-element>
<p>outside of element, should be black</p>
<div id="message">
The outside message should be black
</div>
<div class="important">
Outside important is black
</div>
<my-element>Hello from content</my-element>
<!-- If the script is just an empty main, it's OK to include inline. -->
<!-- Otherwise, put the app into a separate .dart file. -->
<script type="application/dart">main() {}</script>
</body>
</html>
@host
スタイルのブロックに注目してください。
@host {
my-element {
display: block;
border: 1px solid black;
}
}
この特定のカスタム要素はどの要素も拡張しないため、デフォルトでブロックになりません。
スタイリングするとこんな感じ。