Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(632)

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-dropdown-menu/paper-dropdown-menu.html

Issue 1633603004: Add script to remove prefixed CSS from third_party/polymer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Process CSS files too. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698