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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/iron-icon/iron-icon.html

Issue 2158913007: Roll Polymer from 1.5.0 -> 1.6.0 to pick up native CSS custom props (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 4 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-meta/iron-meta.html"> 10 <link rel="import" href="../iron-meta/iron-meta.html">
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 `--iron-icon-stroke-color` | Stroke color of the svg icon | none 73 `--iron-icon-stroke-color` | Stroke color of the svg icon | none
74 74
75 @group Iron Elements 75 @group Iron Elements
76 @element iron-icon 76 @element iron-icon
77 @demo demo/index.html 77 @demo demo/index.html
78 @hero hero.svg 78 @hero hero.svg
79 @homepage polymer.github.io 79 @homepage polymer.github.io
80 --> 80 -->
81 81
82 </head><body><dom-module id="iron-icon"> 82 </head><body><dom-module id="iron-icon">
83 <template>
84 <style>
85 :host {
86 @apply(--layout-inline);
87 @apply(--layout-center-center);
88 position: relative;
83 89
84 <style> 90 vertical-align: middle;
85 :host {
86 @apply(--layout-inline);
87 @apply(--layout-center-center);
88 position: relative;
89 91
90 vertical-align: middle; 92 fill: var(--iron-icon-fill-color, currentcolor);
93 stroke: var(--iron-icon-stroke-color, none);
91 94
92 fill: var(--iron-icon-fill-color, currentcolor); 95 width: var(--iron-icon-width, 24px);
93 stroke: var(--iron-icon-stroke-color, none); 96 height: var(--iron-icon-height, 24px);
94 97 }
95 width: var(--iron-icon-width, 24px); 98 </style>
96 height: var(--iron-icon-height, 24px);
97 }
98 </style>
99
100 <template>
101 </template> 99 </template>
102 100
103 </dom-module> 101 </dom-module>
104 <script src="iron-icon-extracted.js"></script></body></html> 102 <script src="iron-icon-extracted.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698