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

Side by Side Diff: chrome/browser/resources/settings/people_page/setup_pin_dialog.html

Issue 2927453003: md settings: Change color of error message from blue to red. (Closed)
Patch Set: Created 3 years, 6 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 2
3 <link rel="import" href="chrome://resources/html/assert.html"> 3 <link rel="import" href="chrome://resources/html/assert.html">
4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
6 <link rel="import" href="../i18n_setup.html"> 6 <link rel="import" href="../i18n_setup.html">
7 <link rel="import" href="../icons.html"> 7 <link rel="import" href="../icons.html">
8 <link rel="import" href="lock_screen_constants.html"> 8 <link rel="import" href="lock_screen_constants.html">
9 <link rel="import" href="pin_keyboard.html"> 9 <link rel="import" href="pin_keyboard.html">
10 <link rel="import" href="../settings_shared_css.html"> 10 <link rel="import" href="../settings_shared_css.html">
11 11
12 <dom-module id="settings-setup-pin-dialog"> 12 <dom-module id="settings-setup-pin-dialog">
13 <template> 13 <template>
14 <style include="settings-shared"> 14 <style include="settings-shared">
15 .error { 15 .error {
16 color: var(--paper-red-500); 16 color: var(--paper-red-500);
17 color: blue;
sammiequon 2017/06/05 23:43:16 Oops!
18 } 17 }
19 18
20 .error > iron-icon { 19 .error > iron-icon {
21 --iron-icon-fill-color: var(--paper-red-500); 20 --iron-icon-fill-color: var(--paper-red-500);
22 } 21 }
23 22
24 .warning { 23 .warning {
25 color: var(--paper-grey-700); 24 color: var(--paper-grey-700);
26 } 25 }
27 26
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 <paper-button class="action-button" on-tap="onPinSubmit_" 64 <paper-button class="action-button" on-tap="onPinSubmit_"
66 disabled$="[[!enableSubmit_]]"> 65 disabled$="[[!enableSubmit_]]">
67 <span>[[getContinueMessage_(isConfirmStep_)]]</span> 66 <span>[[getContinueMessage_(isConfirmStep_)]]</span>
68 </paper-button> 67 </paper-button>
69 </div> 68 </div>
70 </dialog> 69 </dialog>
71 </template> 70 </template>
72 71
73 <script src="setup_pin_dialog.js"></script> 72 <script src="setup_pin_dialog.js"></script>
74 </dom-module> 73 </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