| OLD | NEW |
| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 .icon-container { | 79 .icon-container { |
| 80 display: flex; | 80 display: flex; |
| 81 flex-shrink: 0; | 81 flex-shrink: 0; |
| 82 justify-content: center; | 82 justify-content: center; |
| 83 width: 40px; | 83 width: 40px; |
| 84 } | 84 } |
| 85 | 85 |
| 86 /* Avoid orphaned english text (as requested by bettes@) */ | 86 /* Avoid orphaned english text (as requested by bettes@) */ |
| 87 #activity-controls .secondary { | 87 #activity-controls .secondary { |
| 88 max-width: 97%; | 88 max-width: 90%; |
| 89 } | 89 } |
| 90 | 90 |
| 91 #googleg-logo { | 91 #googleg-logo { |
| 92 background-image: url(../../../../../ui/webui/resources/images/200-logo_
googleg.png); | 92 background-image: url(../../../../../ui/webui/resources/images/200-logo_
googleg.png); |
| 93 background-size: cover; | 93 background-size: cover; |
| 94 height: var(--iron-icon-height); | 94 height: var(--iron-icon-height); |
| 95 width: var(--iron-icon-width); | 95 width: var(--iron-icon-width); |
| 96 } | 96 } |
| 97 | 97 |
| 98 #disconnectDialog .footer .settings-box { | 98 #disconnectDialog .footer .settings-box { |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 <if expr="chromeos"> | 417 <if expr="chromeos"> |
| 418 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> | 418 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> |
| 419 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" | 419 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" |
| 420 on-close="onEasyUnlockTurnOffDialogClose_"> | 420 on-close="onEasyUnlockTurnOffDialogClose_"> |
| 421 </easy-unlock-turn-off-dialog> | 421 </easy-unlock-turn-off-dialog> |
| 422 </template> | 422 </template> |
| 423 </if> | 423 </if> |
| 424 </template> | 424 </template> |
| 425 <script src="people_page.js"></script> | 425 <script src="people_page.js"></script> |
| 426 </dom-module> | 426 </dom-module> |
| OLD | NEW |