| OLD | NEW |
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://md-settings/settings_page/settings_section.htm
l"> |
| 3 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 5 |
| 6 <dom-module id="settings-about-page"> |
| 7 <link rel="import" type="css" href="chrome://md-settings/settings_page.css"> |
| 8 <template> |
| 9 <style include="settings-shared"> |
| 10 span { |
| 11 font-size: 20px; |
| 12 margin-top: auto; |
| 13 margin-bottom: auto; |
| 14 } |
| 15 |
| 16 img { |
| 17 -webkit-margin-end: 10px; |
| 18 } |
| 19 </style> |
| 20 <settings-section page-title="$i18n{aboutPageTitle}" |
| 21 current-route="[[currentRoute]]"> |
| 22 <div class="settings-box"> |
| 23 <img id="product-logo" |
| 24 srcset="chrome://theme/current-channel-logo@1x 1x, |
| 25 chrome://theme/current-channel-logo@2x 2x" alt=""> |
| 26 <span>$i18n{aboutProductTitle}</span> |
| 27 </div> |
| 28 <div class="settings-box two-line"> |
| 29 <!-- TODO(dpapad): Implement this. --> |
| 30 <div class="start"> |
| 31 <div>Your device is up to date</div> |
| 32 <div class="secondary">Version Foo.bar.baz</div> |
| 33 </div> |
| 34 <paper-button class="secondary-action">Check for update</paper-button> |
| 35 </div> |
| 36 <div class="settings-box two-line"> |
| 37 <!-- TODO(dpapad): Implement this. --> |
| 38 <div class="start"> |
| 39 <div>Get help with Chrome</div> |
| 40 <div class="secondary">Open the Help Center</div> |
| 41 </div> |
| 42 </div> |
| 43 <div class="settings-box"> |
| 44 <!-- TODO(dpapad): Implement this. --> |
| 45 Report an issue |
| 46 </div> |
| 47 <div class="settings-box"> |
| 48 <!-- TODO(dpapad): Implement this. --> |
| 49 Other info here |
| 50 </div> |
| 51 </settings-section> |
| 52 </template> |
| 53 <script src="about_page.js"></script> |
| 54 </dom-module> |
| OLD | NEW |