| 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="../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 Loading... |
| 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> |
| OLD | NEW |