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

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

Issue 2615673003: [MD WebUI] Move icons used in Bookmarks and Settings to shared file. (Closed)
Patch Set: reorder some icons Created 3 years, 11 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/web_ui_listener_behavior.html"> 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> 8 <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/neon-animation/neon-ani matable.html"> 9 <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/paper-button/paper-butt on.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 border-radius: 20px; 47 border-radius: 20px;
48 flex-shrink: 0; 48 flex-shrink: 0;
49 height: 40px; 49 height: 40px;
50 width: 40px; 50 width: 40px;
51 } 51 }
52 52
53 #managed-by-domain-name { 53 #managed-by-domain-name {
54 font-weight: bold; 54 font-weight: bold;
55 } 55 }
56 56
57 iron-icon[icon='settings:sync'] { 57 iron-icon[icon='cr:sync'] {
58 --iron-icon-fill-color: var(--google-green-700); 58 --iron-icon-fill-color: var(--google-green-700);
59 } 59 }
60 60
61 #sync-status[actionable] iron-icon[icon='settings:sync-problem'] { 61 #sync-status[actionable] iron-icon[icon='cr:sync-problem'] {
62 --iron-icon-fill-color: var(--settings-error-color); 62 --iron-icon-fill-color: var(--settings-error-color);
63 } 63 }
64 64
65 #sync-status:not([actionable]) .subpage-arrow { 65 #sync-status:not([actionable]) .subpage-arrow {
66 display: none; 66 display: none;
67 } 67 }
68 68
69 .settings-box[actionable] .sync-error { 69 .settings-box[actionable] .sync-error {
70 color: var(--settings-error-color); 70 color: var(--settings-error-color);
71 } 71 }
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 <if expr="chromeos"> 386 <if expr="chromeos">
387 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> 387 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]">
388 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" 388 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"
389 on-close="onEasyUnlockTurnOffDialogClose_"> 389 on-close="onEasyUnlockTurnOffDialogClose_">
390 </easy-unlock-turn-off-dialog> 390 </easy-unlock-turn-off-dialog>
391 </template> 391 </template>
392 </if> 392 </if>
393 </template> 393 </template>
394 <script src="people_page.js"></script> 394 <script src="people_page.js"></script>
395 </dom-module> 395 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698