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

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

Issue 2847583002: [MD settings] css for row separator (Closed)
Patch Set: comment change Created 3 years, 8 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/neon-animation/neon-ani matable.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 aria-describedby="profile-name"></button> 116 aria-describedby="profile-name"></button>
117 </if> 117 </if>
118 <if expr="chromeos"> 118 <if expr="chromeos">
119 <button class="subpage-arrow" is="paper-icon-button-light" 119 <button class="subpage-arrow" is="paper-icon-button-light"
120 aria-label="$i18n{changePictureTitle}" 120 aria-label="$i18n{changePictureTitle}"
121 aria-describedby="profile-name"></button> 121 aria-describedby="profile-name"></button>
122 </if> 122 </if>
123 </div> 123 </div>
124 <if expr="not chromeos"> 124 <if expr="not chromeos">
125 <template is="dom-if" if="[[showSignin_(syncStatus)]]"> 125 <template is="dom-if" if="[[showSignin_(syncStatus)]]">
126 <span class="secondary-action"> 126 <div class="vertical-rule-line"></div>
127 <paper-button class="primary-button" on-tap="onSigninTap_" 127 <paper-button class="primary-button" on-tap="onSigninTap_"
128 disabled="[[syncStatus.setupInProgress]]"> 128 disabled="[[syncStatus.setupInProgress]]">
129 $i18n{syncSignin} 129 $i18n{syncSignin}
130 </paper-button> 130 </paper-button>
131 </span>
132 </template> 131 </template>
133 <template is="dom-if" if="[[syncStatus.signedIn]]"> 132 <template is="dom-if" if="[[syncStatus.signedIn]]">
134 <span class="secondary-action"> 133 <div class="vertical-rule-line"></div>
135 <paper-button id="disconnectButton" class="secondary-button" 134 <paper-button id="disconnectButton" class="secondary-button"
136 on-tap="onDisconnectTap_" 135 on-tap="onDisconnectTap_"
137 disabled="[[syncStatus.setupInProgress]]"> 136 disabled="[[syncStatus.setupInProgress]]">
138 $i18n{syncDisconnect} 137 $i18n{syncDisconnect}
139 </paper-button> 138 </paper-button>
140 </span>
141 </template> 139 </template>
142 </if> 140 </if>
143 </template> 141 </template>
144 </div> 142 </div>
145 <div class="settings-box two-line" 143 <div class="settings-box two-line"
146 hidden="[[!showSignin_(syncStatus)]]"> 144 hidden="[[!showSignin_(syncStatus)]]">
147 <div> 145 <div>
148 $i18n{syncOverview} 146 $i18n{syncOverview}
149 <a target="_blank" href="$i18n{syncLearnMoreUrl}"> 147 <a target="_blank" href="$i18n{syncLearnMoreUrl}">
150 $i18n{learnMore} 148 $i18n{learnMore}
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 338
341 <template is="dom-if" if="[[showImportDataDialog_]]" restamp> 339 <template is="dom-if" if="[[showImportDataDialog_]]" restamp>
342 <settings-import-data-dialog prefs="{{prefs}}" 340 <settings-import-data-dialog prefs="{{prefs}}"
343 on-close="onImportDataDialogClosed_"> 341 on-close="onImportDataDialogClosed_">
344 </settings-import-data-dialog> 342 </settings-import-data-dialog>
345 </template> 343 </template>
346 344
347 </template> 345 </template>
348 <script src="people_page.js"></script> 346 <script src="people_page.js"></script>
349 </dom-module> 347 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698