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

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

Issue 2889493002: [MD settings] removing secondary-button class (Closed)
Patch Set: 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 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html"> 2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html">
3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 3 <link rel="import" href="chrome://resources/cr_elements/icons.html">
4 <link rel="import" href="chrome://resources/html/assert.html"> 4 <link rel="import" href="chrome://resources/html/assert.html">
5 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> 5 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html">
6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
7 <link rel="import" href="chrome://resources/html/icon.html"> 7 <link rel="import" href="chrome://resources/html/icon.html">
8 <link rel="import" href="chrome://resources/html/polymer.html"> 8 <link rel="import" href="chrome://resources/html/polymer.html">
9 <link rel="import" href="chrome://resources/html/util.html"> 9 <link rel="import" href="chrome://resources/html/util.html">
10 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 10 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 <if expr="not chromeos"> 127 <if expr="not chromeos">
128 <template is="dom-if" if="[[showSignin_(syncStatus)]]"> 128 <template is="dom-if" if="[[showSignin_(syncStatus)]]">
129 <div class="separator"></div> 129 <div class="separator"></div>
130 <paper-button class="primary-button" on-tap="onSigninTap_" 130 <paper-button class="primary-button" on-tap="onSigninTap_"
131 disabled="[[syncStatus.setupInProgress]]"> 131 disabled="[[syncStatus.setupInProgress]]">
132 $i18n{syncSignin} 132 $i18n{syncSignin}
133 </paper-button> 133 </paper-button>
134 </template> 134 </template>
135 <template is="dom-if" if="[[syncStatus.signedIn]]"> 135 <template is="dom-if" if="[[syncStatus.signedIn]]">
136 <div class="separator"></div> 136 <div class="separator"></div>
137 <paper-button id="disconnectButton" class="secondary-button" 137 <paper-button id="disconnectButton" on-tap="onDisconnectTap_"
138 on-tap="onDisconnectTap_"
139 disabled="[[syncStatus.setupInProgress]]"> 138 disabled="[[syncStatus.setupInProgress]]">
140 $i18n{syncDisconnect} 139 $i18n{syncDisconnect}
141 </paper-button> 140 </paper-button>
142 </template> 141 </template>
143 </if> 142 </if>
144 </template> 143 </template>
145 </div> 144 </div>
146 <div class="settings-box two-line" 145 <div class="settings-box two-line"
147 hidden="[[!showSignin_(syncStatus)]]"> 146 hidden="[[!showSignin_(syncStatus)]]">
148 <div> 147 <div>
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 331
333 <template is="dom-if" if="[[showImportDataDialog_]]" restamp> 332 <template is="dom-if" if="[[showImportDataDialog_]]" restamp>
334 <settings-import-data-dialog prefs="{{prefs}}" 333 <settings-import-data-dialog prefs="{{prefs}}"
335 on-close="onImportDataDialogClosed_"> 334 on-close="onImportDataDialogClosed_">
336 </settings-import-data-dialog> 335 </settings-import-data-dialog>
337 </template> 336 </template>
338 337
339 </template> 338 </template>
340 <script src="people_page.js"></script> 339 <script src="people_page.js"></script>
341 </dom-module> 340 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698