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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-input/paper-input-container.html

Issue 2346073003: [Polymer] updating (Closed)
Patch Set: Created 4 years, 3 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="../iron-flex-layout/iron-flex-layout.html"> 10 <link rel="import" href="../iron-flex-layout/iron-flex-layout.html">
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 outline: none; 263 outline: none;
264 box-shadow: none; 264 box-shadow: none;
265 padding: 0; 265 padding: 0;
266 width: 100%; 266 width: 100%;
267 max-width: 100%; 267 max-width: 100%;
268 background: transparent; 268 background: transparent;
269 border: none; 269 border: none;
270 color: var(--paper-input-container-input-color, --primary-text-color); 270 color: var(--paper-input-container-input-color, --primary-text-color);
271 -webkit-appearance: none; 271 -webkit-appearance: none;
272 text-align: inherit; 272 text-align: inherit;
273 vertical-align: bottom;
273 274
274 @apply(--paper-font-subhead); 275 @apply(--paper-font-subhead);
275 @apply(--paper-input-container-input); 276 @apply(--paper-input-container-input);
276 } 277 }
277 278
278 ::content [prefix] { 279 ::content [prefix] {
279 @apply(--paper-font-subhead); 280 @apply(--paper-font-subhead);
280 281
281 @apply(--paper-input-prefix); 282 @apply(--paper-input-prefix);
282 @apply(--layout-flex-none); 283 @apply(--layout-flex-none);
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 <div class="focused-line"></div> 331 <div class="focused-line"></div>
331 </div> 332 </div>
332 333
333 <div class$="[[_computeAddOnContentClass(focused,invalid)]]"> 334 <div class$="[[_computeAddOnContentClass(focused,invalid)]]">
334 <content id="addOnContent" select="[add-on]"></content> 335 <content id="addOnContent" select="[add-on]"></content>
335 </div> 336 </div>
336 </template> 337 </template>
337 </dom-module> 338 </dom-module>
338 339
339 <script src="paper-input-container-extracted.js"></script></body></html> 340 <script src="paper-input-container-extracted.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698