Seeking help with styling using the ::content selector and custom CSS properties. Any insight would be appreciated!
To simplify, I have a Polymer component utilizing a content tag that will always contain a paper-input:
<template>
<style>
#container ::content paper-input {
--paper-input-container-focus-color: #ddd;
margin: 8px;
}
</style>
<div id="container">
<content></content>
</div>
</template>
Testing reveals that the margin is correctly applied, but the custom css property is not. Is my goal unattainable?