| Index: third_party/polymer/v1_0/components-chromium/iron-dropdown/iron-dropdown.html
|
| diff --git a/third_party/polymer/v1_0/components-chromium/iron-dropdown/iron-dropdown.html b/third_party/polymer/v1_0/components-chromium/iron-dropdown/iron-dropdown.html
|
| index 6c036a1935cb83ecc908e8bab39eb6ee5d84937a..cf03204a2e9fd278406108ecf3932956da8736b2 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/iron-dropdown/iron-dropdown.html
|
| +++ b/third_party/polymer/v1_0/components-chromium/iron-dropdown/iron-dropdown.html
|
| @@ -42,20 +42,21 @@ method is called on the element.
|
| -->
|
|
|
| </head><body><dom-module id="iron-dropdown">
|
| - <style>
|
| - :host {
|
| - position: fixed;
|
| - }
|
| + <template>
|
| + <style>
|
| + :host {
|
| + position: fixed;
|
| + }
|
|
|
| - #contentWrapper ::content > * {
|
| - overflow: auto;
|
| - }
|
| + #contentWrapper ::content > * {
|
| + overflow: auto;
|
| + }
|
| +
|
| + #contentWrapper.animating ::content > * {
|
| + overflow: hidden;
|
| + }
|
| + </style>
|
|
|
| - #contentWrapper.animating ::content > * {
|
| - overflow: hidden;
|
| - }
|
| - </style>
|
| - <template>
|
| <div id="contentWrapper">
|
| <content id="content" select=".dropdown-content"></content>
|
| </div>
|
|
|