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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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>
OLDNEW
« 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