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

Side by Side Diff: chrome/browser/resources/settings/about_page/about_page.html

Issue 2130553002: MD Settings: About page, fix alignment of Relaunch/Restart button. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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">
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 </div> 93 </div>
94 <span id="deprecationWarning" 94 <span id="deprecationWarning"
95 hidden="[[!obsoleteSystemInfo_.obsolete]]"> 95 hidden="[[!obsoleteSystemInfo_.obsolete]]">
96 $i18n{aboutObsoleteSystem} 96 $i18n{aboutObsoleteSystem}
97 <a href="$i18n{aboutObsoleteSystemURL}" target="_blank"> 97 <a href="$i18n{aboutObsoleteSystemURL}" target="_blank">
98 $i18n{learnMore} 98 $i18n{learnMore}
99 </a> 99 </a>
100 </span> 100 </span>
101 <div class="secondary">$i18n{aboutBrowserVersion}</div> 101 <div class="secondary">$i18n{aboutBrowserVersion}</div>
102 </div> 102 </div>
103 <paper-button id="relaunch" class="secondary-action" 103 <span class="secondary-action">
104 <paper-button id="relaunch" class="secondary-button"
104 <if expr="not chromeos"> 105 <if expr="not chromeos">
105 hidden="[[!shouldShowRelaunch_(currentUpdateStatusEvent_)]]" 106 hidden="[[!shouldShowRelaunch_(currentUpdateStatusEvent_)]]"
106 </if> 107 </if>
107 <if expr="chromeos"> 108 <if expr="chromeos">
108 hidden="[[!shouldShowRelaunch_( 109 hidden="[[!shouldShowRelaunch_(
109 currentUpdateStatusEvent_, targetChannel_)]]" 110 currentUpdateStatusEvent_, targetChannel_)]]"
110 </if> 111 </if>
111 on-tap="onRelaunchTap_"> 112 on-tap="onRelaunchTap_">
112 $i18n{aboutRelaunch} 113 $i18n{aboutRelaunch}
113 </paper-button> 114 </paper-button>
114 <if expr="chromeos"> 115 <if expr="chromeos">
115 <paper-button id="relaunchAndPowerwash" class="secondary-action" 116 <paper-button id="relaunchAndPowerwash" class="secondary-button"
116 hidden="[[!shouldShowRelaunchAndPowerwash_( 117 hidden="[[!shouldShowRelaunchAndPowerwash_(
117 currentUpdateStatusEvent_, targetChannel_)]]" 118 currentUpdateStatusEvent_, targetChannel_)]]"
118 on-tap="onRelaunchAndPowerwashTap_"> 119 on-tap="onRelaunchAndPowerwashTap_">
119 $i18n{aboutRelaunchAndPowerwash} 120 $i18n{aboutRelaunchAndPowerwash}
120 </paper-button> 121 </paper-button>
121 <paper-button id="checkForUpdates" class="secondary-action" 122 <paper-button id="checkForUpdates" class="secondary-button"
122 hidden="[[!shouldShowCheckUpdates_(currentUpdateStatusEvent_)] ]" 123 hidden="[[!shouldShowCheckUpdates_(currentUpdateStatusEvent_ )]]"
123 on-tap="onCheckUpdatesTap_"> 124 on-tap="onCheckUpdatesTap_">
124 $i18n{aboutCheckForUpdates} 125 $i18n{aboutCheckForUpdates}
125 </paper-button> 126 </paper-button>
126 </if> 127 </if>
128 </span>
127 </div> 129 </div>
128 <div id="help" class="settings-box two-line" on-tap="onHelpTap_" 130 <div id="help" class="settings-box two-line" on-tap="onHelpTap_"
129 actionable> 131 actionable>
130 $i18n{aboutGetHelpUsingChrome} 132 $i18n{aboutGetHelpUsingChrome}
131 </div> 133 </div>
132 <if expr="_google_chrome"> 134 <if expr="_google_chrome">
133 <div id="reportIssue" class="settings-box" actionable 135 <div id="reportIssue" class="settings-box" actionable
134 on-tap="onReportIssueTap_"> 136 on-tap="onReportIssueTap_">
135 $i18n{aboutReportAnIssue} 137 $i18n{aboutReportAnIssue}
136 </div> 138 </div>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 <settings-detailed-build-info></settings-detailed-build-info> 173 <settings-detailed-build-info></settings-detailed-build-info>
172 </settings-subpage> 174 </settings-subpage>
173 </template> 175 </template>
174 </if> 176 </if>
175 </settings-animated-pages> 177 </settings-animated-pages>
176 </settings-section> 178 </settings-section>
177 </div> 179 </div>
178 </template> 180 </template>
179 <script src="about_page.js"></script> 181 <script src="about_page.js"></script>
180 </dom-module> 182 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698