Hi All,
Before the big upgrade of Polymer of last week or so, I had everything working with my test project. Then, I got the new version of Polymer, all my problems began.
I am using core-menu-button and core-item to create a drop-down menu. It works functionally. However, I found all those layers of shadow root underneath
core-menu-button, I cannot control the size of the icon for core-menu-button, because the size is styled in svg under core-icon, which is a shadow dom under core-icon-button, which is a shadow dom under core-menu-button.
So I tried using /deep/ in the styling css of the same level as my custom element, which contains core-menu-button:
core-menu-button /deep/ core-icon {
width: 14px;
height: 14px;
size: 14px;
}
Of course, it doesn't work. I am using Chrome Version 35.0.1916.153.
Anybody has any idea how to style elements deep embedded in Polymer elements?
Thanks
Diana