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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_reset_confirmation_overlay.html

Issue 2847603002: Powerwash UI polish (Closed)
Patch Set: Change according to new specs Created 3 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
OLDNEW
1 <!-- Copyright 2017 The Chromium Authors. All rights reserved. 1 <!-- Copyright 2017 The Chromium Authors. All rights reserved.
2   Use of this source code is governed by a BSD-style license that can be 2   Use of this source code is governed by a BSD-style license that can be
3  found in the LICENSE file. --> 3  found in the LICENSE file. -->
4 4
5 <dom-module id="reset-confirm-overlay-md"> 5 <dom-module id="reset-confirm-overlay-md">
6 <template> 6 <template>
7 <link rel="stylesheet" href="oobe_reset_confirmation_overlay.css"> 7 <link rel="stylesheet" href="oobe_reset_confirmation_overlay.css">
8 <div class="reset-popup not-resizable"> 8 <div class="reset-popup not-resizable">
9 <h1 i18n-content="confirmPowerwashTitle" hidden="[[!isPowerwashView_]]"> 9 <h1 i18n-content="confirmPowerwashTitle" hidden="[[!isPowerwashView_]]">
10 </h1> 10 </h1>
11 <h1 i18n-content="confirmRollbackTitle" hidden="[[isPowerwashView_]]"> 11 <h1 i18n-content="confirmRollbackTitle" hidden="[[isPowerwashView_]]">
12 </h1> 12 </h1>
13 <div class="reset-popup-content-area"> 13 <div class="reset-popup-content-area">
14 <div i18n-content="confirmPowerwashMessage" 14 <div i18n-content="confirmPowerwashMessage"
15 hidden="[[!isPowerwashView_]]"></div> 15 hidden="[[!isPowerwashView_]]"></div>
16 <div i18n-content="confirmRollbackMessage" 16 <div i18n-content="confirmRollbackMessage"
17 hidden="[[isPowerwashView_]]"></div> 17 hidden="[[isPowerwashView_]]"></div>
18 </div> 18 </div>
19 <div class="bottom-buttons flex layout horizontal"> 19 <div class="bottom-buttons flex layout horizontal">
20 <div class="flex"></div> 20 <div class="flex"></div>
21 <oobe-text-button id="cancel-button" border on-tap="onCancelTap_"> 21 <oobe-text-button id="cancelButton" border on-tap="onCancelTap_">
22 <div i18n-content="cancel"></div> 22 <div i18n-content="cancel"></div>
23 </oobe-text-button> 23 </oobe-text-button>
24 <oobe-text-button id="confirm-button" inverse on-tap="onContinueTap_"> 24 <oobe-text-button inverse on-tap="onContinueTap_">
25 <div i18n-content="confirmResetButton"></div> 25 <div i18n-content="confirmResetButton"></div>
26 </oobe-text-button> 26 </oobe-text-button>
27 <div class="flex"></div>
28 </div> 27 </div>
29 </div> 28 </div>
30 </template> 29 </template>
31 </dom-module> 30 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698