I have trouble with some styling vaadin elements. I need to style default vaadin-combo-box element.
My importing:
<link rel="import" href="../../../bower_components/vaadin-valo-theme/vaadin-combo-box.html">
And it looks like:
My shared style html:
<dom-module theme-for="vaadin-combo-box">
<template>
<style include="vaadin-combo-box-default-theme">
[part="input-field"] {
padding: 0;
}
</style>
</template>
</dom-module>
What did i do wrong ? And any advice ?