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

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

Issue 2029453002: MD Settings: About page, implement obsolete/end-of-the-line status. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing 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
index 3b65961fffc918944a073aa5dba9a7a49a4ff819..fbee7735c6d1f7a6d59b7de9ed5c9c48a67c3dbb 100644
--- a/chrome/browser/resources/settings/about_page/about_page.html
+++ b/chrome/browser/resources/settings/about_page/about_page.html
@@ -23,7 +23,7 @@
<dom-module id="settings-about-page">
<template>
<style include="settings-shared settings-page-styles">
- span {
+ .product-title {
font-size: 20px;
margin-top: auto;
margin-bottom: auto;
@@ -65,22 +65,29 @@
<img id="product-logo"
srcset="chrome://theme/current-channel-logo@1x 1x,
chrome://theme/current-channel-logo@2x 2x" alt="">
- <span>$i18n{aboutProductTitle}</span>
+ <span class="product-title">$i18n{aboutProductTitle}</span>
</div>
<div class="settings-box two-line">
- <div hidden="[[!shouldShowUpdateStatus_(
- currentUpdateStatusEvent_)]]">
- <iron-icon
- icon$="[[getIcon_(currentUpdateStatusEvent_)]]"
- src="[[getIconSrc_(currentUpdateStatusEvent_)]]">
- </iron-icon>
- </div>
+ <iron-icon
+ hidden="[[!shouldShowUpdateStatusIcon_(
+ currentUpdateStatusEvent_)]]"
+ icon$="[[getIcon_(currentUpdateStatusEvent_)]]"
+ src="[[getIconSrc_(currentUpdateStatusEvent_)]]">
+ </iron-icon>
<div class="start">
- <div hidden="[[!shouldShowUpdateStatus_(
- currentUpdateStatusEvent_)]]">
+ <div id="updateStatusMessage"
+ hidden="[[!shouldShowUpdateStatusMessage_(
+ currentUpdateStatusEvent_)]]">
[[getUpdateStatusMessage_(
- currentUpdateStatusEvent_, targetChannel_)]]
+ currentUpdateStatusEvent_,targetChannel)]]
</div>
+ <span id="deprecationWarning"
+ hidden="[[!obsoleteSystemInfo_.obsolete]]">
+ $i18n{aboutObsoleteSystem}
+ <a href="$i18n{aboutObsoleteSystemURL}" target="_blank">
+ $i18n{learnMore}
+ </a>
+ </span>
<div class="secondary">$i18n{aboutBrowserVersion}</div>
</div>
<paper-button id="relaunch" class="secondary-action"
« 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