OLD | NEW |
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
3 <link rel="import" href="chrome://resources/html/icon.html"> | 3 <link rel="import" href="chrome://resources/html/icon.html"> |
4 <link rel="import" href="chrome://resources/html/polymer.html"> | 4 <link rel="import" href="chrome://resources/html/polymer.html"> |
5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
10 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 10 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 border-radius: 20px; | 44 border-radius: 20px; |
45 flex-shrink: 0; | 45 flex-shrink: 0; |
46 height: 40px; | 46 height: 40px; |
47 width: 40px; | 47 width: 40px; |
48 } | 48 } |
49 | 49 |
50 #managed-by-domain-name { | 50 #managed-by-domain-name { |
51 font-weight: bold; | 51 font-weight: bold; |
52 } | 52 } |
53 | 53 |
| 54 iron-icon[icon='settings:sync'] { |
| 55 --iron-icon-fill-color: var(--google-green-700); |
| 56 } |
| 57 |
54 iron-icon[icon='settings:sync-problem'] { | 58 iron-icon[icon='settings:sync-problem'] { |
55 --iron-icon-fill-color: var(--settings-error-color); | 59 --iron-icon-fill-color: var(--settings-error-color); |
56 } | 60 } |
57 | 61 |
58 .settings-box .sync-error { | 62 .settings-box .sync-error { |
59 color: var(--settings-error-color); | 63 color: var(--settings-error-color); |
60 } | 64 } |
61 | 65 |
62 .icon-container { | 66 .icon-container { |
63 display: flex; | 67 display: flex; |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 | 340 |
337 <if expr="chromeos"> | 341 <if expr="chromeos"> |
338 <template is="dom-if" if="[[easyUnlockEnabled_]]"> | 342 <template is="dom-if" if="[[easyUnlockEnabled_]]"> |
339 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> | 343 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> |
340 </easy-unlock-turn-off-dialog> | 344 </easy-unlock-turn-off-dialog> |
341 </template> | 345 </template> |
342 </if> | 346 </if> |
343 </template> | 347 </template> |
344 <script src="people_page.js"></script> | 348 <script src="people_page.js"></script> |
345 </dom-module> | 349 </dom-module> |
OLD | NEW |