我知道规范目前只允许复合选择器:: slotted,即::slotted(my-first + my-second)
是不允许的,但这应该是这样吗?
::slotted(x-first) + ::slotted(x-second) { /* css */ }
有没有办法瞄准开槽兄弟姐妹(除了全局css)?如果没有,我会在哪里提出这样的请求?感谢。
答案 0 :(得分:2)
确定可以从siblings
中选择slots / slotted
。
不能不能做的事情是选择一个已插入并且不是顶级节点的元素。
选择兄弟姐妹:
slot[name=<slotname>] ~ <selector>
选择插槽式顶级节点
::slotted(<simple selector>)
一个简单的选择器包含标签/类/标识/名称等,但不得具有任何combinators。例如<space>
。
.myClass
好
<anyTag>[<anyAttribute>[=<anyValue>]]
好
.<myClass> > .<anotherClass>
否
示例
var element = document.querySelector('.templateMe');
var shadow = element.attachShadow({mode: 'open'});
var template = document.querySelector('.myTemplate');
shadow.appendChild(template.content.cloneNode(true));
<template class="myTemplate">
<style type="text/css">
::slotted([slot=slot1]) { /* slot1 itself - YES */
color: red;
}
slot[name=slot1] { /* slot1 itself (alternative) - YES */
text-decoration: underline;
}
slot[name=slot1] + .siblingA { /* slot1 siblingA (direct sibling) - YES */
color: green;
}
slot[name=slot1] ~ .siblingB { /* slot1 siblingB (any sibling) - YES */
color: orange;
}
slot[name=slot2]::slotted(.selectMeA) { /* slot2 TOP-LEVEL CHILD (slotted) - YES */
color: purple;
}
slot[name=slot2]::slotted(.selectMeB) { /* slot2 NOT TOP-LEVEL CHILD - NO */
font-weight: bold;
}
slot[name=slot2]::slotted(.selectMeC[name=myName]) { /* slot2 TOP-LEVEL CHILD (slotted) - YES */
color: khaki;
}
slot[name=slot2] + .siblingC { /* slot2 sibling - YES */
color: blue;
}
</style>
<div>
<slot name="slot1"></slot>
<div class="siblingA">Sibling A of Slot 1</div>
<div class="siblingB">Sibling B of Slot 1</div>
</div>
<hr/>
<div>
<slot name="slot2"></slot>
<div class="siblingC">Sibling C of Slot 2</div>
</div>
</template>
<div class='templateMe'>
<span slot="slot1">Im in Solt 1</span>
<span slot="slot2" class="selectMeA">
Im in Solt 2, im selectable.
<div class='selectMeB'>
NOT selectable (because no top level node of slotted)!
</div>
</span>
<span slot="slot2" class="selectMeC" name="myName">Im in Solt 2 too and selectable!</span>
</div>
答案 1 :(得分:1)
放入插槽的DOM应该由拥有该DOM而不是自定义元素的CSS控制。
您可以对放置在Slot中的DOM进行非常小的CSS控制。但只有顶级元素(以及由子节点自动继承的东西。)
这是一个有意识的决定,可能永远不会改变。