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

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

Issue 2847583002: [MD settings] css for row separator (Closed)
Patch Set: review changes 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/i18n_behavior.html"> 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
5 <link rel="import" href="chrome://resources/html/icon.html"> 5 <link rel="import" href="chrome://resources/html/icon.html">
6 <link rel="import" href="chrome://resources/html/polymer.html"> 6 <link rel="import" href="chrome://resources/html/polymer.html">
7 <link rel="import" href="chrome://resources/html/util.html"> 7 <link rel="import" href="chrome://resources/html/util.html">
8 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 8 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 aria-describedby="profile-name"></button> 117 aria-describedby="profile-name"></button>
118 </if> 118 </if>
119 <if expr="chromeos"> 119 <if expr="chromeos">
120 <button class="subpage-arrow" is="paper-icon-button-light" 120 <button class="subpage-arrow" is="paper-icon-button-light"
121 aria-label="$i18n{changePictureTitle}" 121 aria-label="$i18n{changePictureTitle}"
122 aria-describedby="profile-name"></button> 122 aria-describedby="profile-name"></button>
123 </if> 123 </if>
124 </div> 124 </div>
125 <if expr="not chromeos"> 125 <if expr="not chromeos">
126 <template is="dom-if" if="[[showSignin_(syncStatus)]]"> 126 <template is="dom-if" if="[[showSignin_(syncStatus)]]">
127 <span class="secondary-action"> 127 <div class="separator"></div>
128 <paper-button class="primary-button" on-tap="onSigninTap_" 128 <paper-button class="primary-button" on-tap="onSigninTap_"
129 disabled="[[syncStatus.setupInProgress]]"> 129 disabled="[[syncStatus.setupInProgress]]">
130 $i18n{syncSignin} 130 $i18n{syncSignin}
131 </paper-button> 131 </paper-button>
132 </span>
133 </template> 132 </template>
134 <template is="dom-if" if="[[syncStatus.signedIn]]"> 133 <template is="dom-if" if="[[syncStatus.signedIn]]">
135 <span class="secondary-action"> 134 <div class="separator"></div>
136 <paper-button id="disconnectButton" class="secondary-button" 135 <paper-button id="disconnectButton" class="secondary-button"
137 on-tap="onDisconnectTap_" 136 on-tap="onDisconnectTap_"
138 disabled="[[syncStatus.setupInProgress]]"> 137 disabled="[[syncStatus.setupInProgress]]">
139 $i18n{syncDisconnect} 138 $i18n{syncDisconnect}
140 </paper-button> 139 </paper-button>
141 </span>
142 </template> 140 </template>
143 </if> 141 </if>
144 </template> 142 </template>
145 </div> 143 </div>
146 <div class="settings-box two-line" 144 <div class="settings-box two-line"
147 hidden="[[!showSignin_(syncStatus)]]"> 145 hidden="[[!showSignin_(syncStatus)]]">
148 <div> 146 <div>
149 $i18n{syncOverview} 147 $i18n{syncOverview}
150 <a target="_blank" href="$i18n{syncLearnMoreUrl}"> 148 <a target="_blank" href="$i18n{syncLearnMoreUrl}">
151 $i18n{learnMore} 149 $i18n{learnMore}
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 341
344 <template is="dom-if" if="[[showImportDataDialog_]]" restamp> 342 <template is="dom-if" if="[[showImportDataDialog_]]" restamp>
345 <settings-import-data-dialog prefs="{{prefs}}" 343 <settings-import-data-dialog prefs="{{prefs}}"
346 on-close="onImportDataDialogClosed_"> 344 on-close="onImportDataDialogClosed_">
347 </settings-import-data-dialog> 345 </settings-import-data-dialog>
348 </template> 346 </template>
349 347
350 </template> 348 </template>
351 <script src="people_page.js"></script> 349 <script src="people_page.js"></script>
352 </dom-module> 350 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698