| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="/about_page/about_page_browser_proxy.html"> | 2 <link rel="import" href="/about_page/about_page_browser_proxy.html"> |
| 3 <link rel="import" href="/i18n_setup.html"> | 3 <link rel="import" href="/i18n_setup.html"> |
| 4 <link rel="import" href="/icons.html"> | |
| 5 <link rel="import" href="/lifetime_browser_proxy.html"> | 4 <link rel="import" href="/lifetime_browser_proxy.html"> |
| 6 <link rel="import" href="/route.html"> | 5 <link rel="import" href="/route.html"> |
| 7 <link rel="import" href="/settings_page/main_page_behavior.html"> | 6 <link rel="import" href="/settings_page/main_page_behavior.html"> |
| 8 <link rel="import" href="/settings_page/settings_animated_pages.html"> | 7 <link rel="import" href="/settings_page/settings_animated_pages.html"> |
| 9 <link rel="import" href="/settings_page/settings_section.html"> | 8 <link rel="import" href="/settings_page/settings_section.html"> |
| 10 <link rel="import" href="/settings_page_css.html"> | 9 <link rel="import" href="/settings_page_css.html"> |
| 11 <link rel="import" href="/settings_shared_css.html"> | 10 <link rel="import" href="/settings_shared_css.html"> |
| 12 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 11 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 13 <link rel="import" href="chrome://resources/html/assert.html"> | 12 <link rel="import" href="chrome://resources/html/assert.html"> |
| 14 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 13 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 45 | 44 |
| 46 img { | 45 img { |
| 47 -webkit-margin-end: var(--about-page-image-space); | 46 -webkit-margin-end: var(--about-page-image-space); |
| 48 } | 47 } |
| 49 | 48 |
| 50 iron-icon { | 49 iron-icon { |
| 51 -webkit-margin-end: var(--about-page-image-space); | 50 -webkit-margin-end: var(--about-page-image-space); |
| 52 width: 32px; /* The width of the product-logo img. */ | 51 width: 32px; /* The width of the product-logo img. */ |
| 53 } | 52 } |
| 54 | 53 |
| 55 iron-icon[icon='settings:check-circle'] { | 54 iron-icon[icon='cr:check-circle'] { |
| 56 fill: var(--paper-blue-600); | 55 fill: var(--paper-blue-600); |
| 57 } | 56 } |
| 58 | 57 |
| 59 iron-icon[icon='settings:error'] { | 58 iron-icon[icon='cr:error'] { |
| 60 fill: var(--paper-red-600); | 59 fill: var(--paper-red-600); |
| 61 } | 60 } |
| 62 | 61 |
| 63 .product-info { | 62 .product-info { |
| 64 display: block; | 63 display: block; |
| 65 padding-bottom: 10px; | 64 padding-bottom: 10px; |
| 66 padding-top: 10px; | 65 padding-top: 10px; |
| 67 } | 66 } |
| 68 | 67 |
| 69 .info-section { | 68 .info-section { |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 <settings-detailed-build-info></settings-detailed-build-info> | 208 <settings-detailed-build-info></settings-detailed-build-info> |
| 210 </settings-subpage> | 209 </settings-subpage> |
| 211 </template> | 210 </template> |
| 212 </if> | 211 </if> |
| 213 </settings-animated-pages> | 212 </settings-animated-pages> |
| 214 </settings-section> | 213 </settings-section> |
| 215 </div> | 214 </div> |
| 216 </template> | 215 </template> |
| 217 <script src="about_page.js"></script> | 216 <script src="about_page.js"></script> |
| 218 </dom-module> | 217 </dom-module> |
| OLD | NEW |