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"> | 4 <link rel="import" href="/icons.html"> |
5 <link rel="import" href="/lifetime_browser_proxy.html"> | 5 <link rel="import" href="/lifetime_browser_proxy.html"> |
6 <link rel="import" href="/settings_page/main_page_behavior.html"> | 6 <link rel="import" href="/settings_page/main_page_behavior.html"> |
7 <link rel="import" href="/settings_page/settings_animated_pages.html"> | 7 <link rel="import" href="/settings_page/settings_animated_pages.html"> |
8 <link rel="import" href="/settings_page/settings_section.html"> | 8 <link rel="import" href="/settings_page/settings_section.html"> |
9 <link rel="import" href="/settings_page_css.html"> | 9 <link rel="import" href="/settings_page_css.html"> |
10 <link rel="import" href="/settings_shared_css.html"> | 10 <link rel="import" href="/settings_shared_css.html"> |
11 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 11 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
12 <link rel="import" href="chrome://resources/html/assert.html"> | 12 <link rel="import" href="chrome://resources/html/assert.html"> |
13 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 13 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
14 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 14 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
15 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> | 15 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> |
16 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> | 16 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> |
17 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> | 17 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> |
18 | 18 |
19 <if expr="chromeos"> | 19 <if expr="chromeos"> |
20 <link rel="import" href="/about_page/detailed_build_info.html"> | 20 <link rel="import" href="/about_page/detailed_build_info.html"> |
21 <link rel="import" href="/settings_page/settings_subpage.html"> | 21 <link rel="import" href="/settings_page/settings_subpage.html"> |
22 </if> | 22 </if> |
23 | 23 |
24 <dom-module id="settings-about-page"> | 24 <dom-module id="settings-about-page"> |
25 <template> | 25 <template> |
26 <style include="settings-shared settings-page-styles"> | 26 <style include="settings-shared settings-page-styles"> |
27 div.copyable { | |
Dan Beam
2016/07/13 01:49:00
nit: div doesn't help in this selector
dpapad
2016/07/13 17:40:28
Done.
| |
28 -webkit-user-select: text; | |
29 } | |
30 | |
27 .product-title { | 31 .product-title { |
28 font-size: 20px; | 32 font-size: 20px; |
29 margin-bottom: auto; | 33 margin-bottom: auto; |
30 margin-top: auto; | 34 margin-top: auto; |
31 } | 35 } |
32 | 36 |
33 img { | 37 img { |
34 -webkit-margin-end: 10px; | 38 -webkit-margin-end: 10px; |
35 } | 39 } |
36 | 40 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
91 currentUpdateStatusEvent_, targetChannel_)]] | 95 currentUpdateStatusEvent_, targetChannel_)]] |
92 </if> | 96 </if> |
93 </div> | 97 </div> |
94 <span id="deprecationWarning" | 98 <span id="deprecationWarning" |
95 hidden="[[!obsoleteSystemInfo_.obsolete]]"> | 99 hidden="[[!obsoleteSystemInfo_.obsolete]]"> |
96 $i18n{aboutObsoleteSystem} | 100 $i18n{aboutObsoleteSystem} |
97 <a href="$i18n{aboutObsoleteSystemURL}" target="_blank"> | 101 <a href="$i18n{aboutObsoleteSystemURL}" target="_blank"> |
98 $i18n{learnMore} | 102 $i18n{learnMore} |
99 </a> | 103 </a> |
100 </span> | 104 </span> |
101 <div class="secondary">$i18n{aboutBrowserVersion}</div> | 105 <div class="secondary copyable">$i18n{aboutBrowserVersion}</div> |
102 </div> | 106 </div> |
103 <span class="secondary-action"> | 107 <span class="secondary-action"> |
104 <paper-button id="relaunch" class="secondary-button" | 108 <paper-button id="relaunch" class="secondary-button" |
105 <if expr="not chromeos"> | 109 <if expr="not chromeos"> |
106 hidden="[[!shouldShowRelaunch_(currentUpdateStatusEvent_)]]" | 110 hidden="[[!shouldShowRelaunch_(currentUpdateStatusEvent_)]]" |
107 </if> | 111 </if> |
108 <if expr="chromeos"> | 112 <if expr="chromeos"> |
109 hidden="[[!shouldShowRelaunch_( | 113 hidden="[[!shouldShowRelaunch_( |
110 currentUpdateStatusEvent_, targetChannel_)]]" | 114 currentUpdateStatusEvent_, targetChannel_)]]" |
111 </if> | 115 </if> |
(...skipping 25 matching lines...) Expand all Loading... | |
137 $i18n{aboutReportAnIssue} | 141 $i18n{aboutReportAnIssue} |
138 </div> | 142 </div> |
139 </if> | 143 </if> |
140 <if expr="chromeos"> | 144 <if expr="chromeos"> |
141 <div class="settings-box" on-tap="onDetailedBuildInfoTap_" | 145 <div class="settings-box" on-tap="onDetailedBuildInfoTap_" |
142 actionable> | 146 actionable> |
143 <!-- TODO(dpapad): Localize string. --> | 147 <!-- TODO(dpapad): Localize string. --> |
144 Detailed build info | 148 Detailed build info |
145 </div> | 149 </div> |
146 </if> | 150 </if> |
147 <div class="settings-box product-info"> | 151 <div class="settings-box product-info copyable"> |
148 <div class="info-section"> | 152 <div class="info-section"> |
149 <div class="secondary">$i18n{aboutProductTitle}</div> | 153 <div class="secondary">$i18n{aboutProductTitle}</div> |
150 <div class="secondary">$i18n{aboutProductCopyright}</div> | 154 <div class="secondary">$i18n{aboutProductCopyright}</div> |
151 </div> | 155 </div> |
152 | 156 |
153 <div class="info-section"> | 157 <div class="info-section"> |
154 <div class="secondary">$i18nRaw{aboutProductLicense}</div> | 158 <div class="secondary">$i18nRaw{aboutProductLicense}</div> |
155 <if expr="chromeos"> | 159 <if expr="chromeos"> |
156 <div class="secondary">$i18nRaw{aboutProductOsLicense}</div> | 160 <div class="secondary">$i18nRaw{aboutProductOsLicense}</div> |
157 </if> | 161 </if> |
(...skipping 15 matching lines...) Expand all Loading... | |
173 <settings-detailed-build-info></settings-detailed-build-info> | 177 <settings-detailed-build-info></settings-detailed-build-info> |
174 </settings-subpage> | 178 </settings-subpage> |
175 </template> | 179 </template> |
176 </if> | 180 </if> |
177 </settings-animated-pages> | 181 </settings-animated-pages> |
178 </settings-section> | 182 </settings-section> |
179 </div> | 183 </div> |
180 </template> | 184 </template> |
181 <script src="about_page.js"></script> | 185 <script src="about_page.js"></script> |
182 </dom-module> | 186 </dom-module> |
OLD | NEW |