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

Unified Diff: chrome/browser/resources/settings/about_page/about_page.html

Issue 1950423003: MD Settings: Adding "About" page basic structure. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@about_page_route
Patch Set: Comment. Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/settings/about_page/about_page.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/about_page/about_page.html
diff --git a/chrome/browser/resources/settings/about_page/about_page.html b/chrome/browser/resources/settings/about_page/about_page.html
new file mode 100644
index 0000000000000000000000000000000000000000..7db3ef5a2e69c2ffa03b8a833a1147c54fc4644c
--- /dev/null
+++ b/chrome/browser/resources/settings/about_page/about_page.html
@@ -0,0 +1,54 @@
+<link rel="import" href="chrome://resources/html/polymer.html">
+<link rel="import" href="chrome://md-settings/settings_page/settings_section.html">
+<link rel="import" href="chrome://md-settings/settings_shared_css.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
+
+<dom-module id="settings-about-page">
+ <link rel="import" type="css" href="chrome://md-settings/settings_page.css">
+ <template>
+ <style include="settings-shared">
+ span {
+ font-size: 20px;
+ margin-top: auto;
+ margin-bottom: auto;
+ }
+
+ img {
+ -webkit-margin-end: 10px;
+ }
+ </style>
+ <settings-section page-title="$i18n{aboutPageTitle}"
+ current-route="[[currentRoute]]">
+ <div class="settings-box">
+ <img id="product-logo"
+ srcset="chrome://theme/current-channel-logo@1x 1x,
+ chrome://theme/current-channel-logo@2x 2x" alt="">
+ <span>$i18n{aboutProductTitle}</span>
+ </div>
+ <div class="settings-box two-line">
+ <!-- TODO(dpapad): Implement this. -->
+ <div class="start">
+ <div>Your device is up to date</div>
+ <div class="secondary">Version Foo.bar.baz</div>
+ </div>
+ <paper-button class="secondary-action">Check for update</paper-button>
+ </div>
+ <div class="settings-box two-line">
+ <!-- TODO(dpapad): Implement this. -->
+ <div class="start">
+ <div>Get help with Chrome</div>
+ <div class="secondary">Open the Help Center</div>
+ </div>
+ </div>
+ <div class="settings-box">
+ <!-- TODO(dpapad): Implement this. -->
+ Report an issue
+ </div>
+ <div class="settings-box">
+ <!-- TODO(dpapad): Implement this. -->
+ Other info here
+ </div>
+ </settings-section>
+ </template>
+ <script src="about_page.js"></script>
+</dom-module>
« no previous file with comments | « no previous file | chrome/browser/resources/settings/about_page/about_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698