2

我已经为这个聚合物元素编写了一个 vaadin 流包装器:

@Tag("simple-dropdown")
@HtmlImport("bower_components/simple-dropdown/simple-dropdown.html")
public class DropdownMenu extends Component implements HasComponents, HasSize, HasStyle {
    ...
}

这行得通。的文档simple-dropdown告诉我我可以用这个 css 来设置 shadow dom 的样式:

simple-dropdown {
    --simple-dropdown-toggle: {
        justify-content: right;
    }
}

但是,我无法在 Vaadin 流程中找到适合该 css 的位置。我必须把它放在哪里?

4

2 回答 2

0

您可以在父母的风格中使用它,例如:

我的元素.html

 <link rel="import" href="polymer/polymer.html"> 
 <dom-module id='my-element'>
 <template>
    <style>
        :host {
          display:block;
        }
        simple-dropdown {
           --simple-dropdown-toggle: {
                  justify-content: right;
            }
        }

    </style>

    <simple-dropdown origin="top right" label="menu" arrow>
          <a href="#">item</a>
    </simple-dropdown>
 </template>

于 2018-11-16T18:56:00.823 回答
0

webapp/frontend/styles/shared-styles.html

<custom-style>
    <style>
        simple-dropdown {
            --simple-dropdown-toggle: {
                justify-content: right;
            };
        }
    </style>
</custom-style>

然后,在顶层布局(不是流包装器!)

@HtmlImport("frontend://styles/shared-styles.html")
public class MainView extends Div {
...
}
于 2018-11-28T13:40:56.830 回答