| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --><html><head><link rel="import" href="../polymer/polymer.html"> | 9 --><html><head><link rel="import" href="../polymer/polymer.html"> |
| 10 <link rel="import" href="../paper-styles/default-theme.html"> | 10 <link rel="import" href="../paper-styles/default-theme.html"> |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 <style> | 75 <style> |
| 76 :host { | 76 :host { |
| 77 display: inline-block; | 77 display: inline-block; |
| 78 position: relative; | 78 position: relative; |
| 79 text-align: left; | 79 text-align: left; |
| 80 cursor: pointer; | 80 cursor: pointer; |
| 81 | 81 |
| 82 /* NOTE(cdata): Both values are needed, since some phones require the | 82 /* NOTE(cdata): Both values are needed, since some phones require the |
| 83 * value to be `transparent`. | 83 * value to be `transparent`. |
| 84 */ | 84 */ |
| 85 -webkit-tap-highlight-color: rgba(0,0,0,0); | |
| 86 -webkit-tap-highlight-color: transparent; | |
| 87 | 85 |
| 88 --paper-input-container-input: { | 86 --paper-input-container-input: { |
| 89 overflow: hidden; | 87 overflow: hidden; |
| 90 white-space: nowrap; | 88 white-space: nowrap; |
| 91 text-overflow: ellipsis; | 89 text-overflow: ellipsis; |
| 92 max-width: 100%; | 90 max-width: 100%; |
| 93 box-sizing: border-box; | 91 box-sizing: border-box; |
| 94 cursor: pointer; | 92 cursor: pointer; |
| 95 }; | 93 }; |
| 96 | 94 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 <paper-input type="text" invalid="[[invalid]]" readonly="" disabled="[[d
isabled]]" value="[[selectedItemLabel]]" placeholder="[[placeholder]]" always-fl
oat-label="[[alwaysFloatLabel]]" no-label-float="[[noLabelFloat]]" label="[[labe
l]]"> | 143 <paper-input type="text" invalid="[[invalid]]" readonly="" disabled="[[d
isabled]]" value="[[selectedItemLabel]]" placeholder="[[placeholder]]" always-fl
oat-label="[[alwaysFloatLabel]]" no-label-float="[[noLabelFloat]]" label="[[labe
l]]"> |
| 146 <iron-icon icon="arrow-drop-down" suffix=""></iron-icon> | 144 <iron-icon icon="arrow-drop-down" suffix=""></iron-icon> |
| 147 </paper-input> | 145 </paper-input> |
| 148 </div> | 146 </div> |
| 149 <content id="content" select=".dropdown-content"></content> | 147 <content id="content" select=".dropdown-content"></content> |
| 150 </paper-menu-button> | 148 </paper-menu-button> |
| 151 </template> | 149 </template> |
| 152 | 150 |
| 153 </dom-module> | 151 </dom-module> |
| 154 <script src="paper-dropdown-menu-extracted.js"></script></body></html> | 152 <script src="paper-dropdown-menu-extracted.js"></script></body></html> |
| OLD | NEW |