| 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 --> | 9 --> |
| 10 | 10 |
| 11 <link rel="import" href="../polymer/polymer.html"> | 11 <link rel="import" href="../polymer/polymer.html"> |
| 12 <link rel="import" href="../font-roboto/roboto.html"> | 12 <link rel="import" href="../font-roboto/roboto.html"> |
| 13 | 13 |
| 14 <style is="custom-style"> | 14 <style is="custom-style"> |
| 15 | 15 |
| 16 :root { | 16 :root { |
| 17 | 17 |
| 18 /* Shared Styles */ | 18 /* Shared Styles */ |
| 19 --paper-font-common-base: { | 19 --paper-font-common-base: { |
| 20 font-family: 'Roboto', 'Noto', sans-serif; | 20 font-family: 'Roboto', 'Noto', sans-serif; |
| 21 -webkit-font-smoothing: antialiased; | |
| 22 }; | 21 }; |
| 23 | 22 |
| 24 --paper-font-common-code: { | 23 --paper-font-common-code: { |
| 25 font-family: 'Roboto Mono', 'Consolas', 'Menlo', monospace; | 24 font-family: 'Roboto Mono', 'Consolas', 'Menlo', monospace; |
| 26 -webkit-font-smoothing: antialiased; | |
| 27 }; | 25 }; |
| 28 | 26 |
| 29 --paper-font-common-expensive-kerning: { | 27 --paper-font-common-expensive-kerning: { |
| 30 text-rendering: optimizeLegibility; | 28 text-rendering: optimizeLegibility; |
| 31 }; | 29 }; |
| 32 | 30 |
| 33 --paper-font-common-nowrap: { | 31 --paper-font-common-nowrap: { |
| 34 white-space: nowrap; | 32 white-space: nowrap; |
| 35 overflow: hidden; | 33 overflow: hidden; |
| 36 text-overflow: ellipsis; | 34 text-overflow: ellipsis; |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 @apply(--paper-font-common-code); | 158 @apply(--paper-font-common-code); |
| 161 | 159 |
| 162 font-size: 14px; | 160 font-size: 14px; |
| 163 font-weight: 500; | 161 font-weight: 500; |
| 164 line-height: 20px; | 162 line-height: 20px; |
| 165 }; | 163 }; |
| 166 | 164 |
| 167 } | 165 } |
| 168 | 166 |
| 169 </style> | 167 </style> |
| OLD | NEW |