| OLD | NEW |
| 1 <link rel="import" href="chrome://md-user-manager/import_supervised_user.html"> | 1 <link rel="import" href="chrome://md-user-manager/import_supervised_user.html"> |
| 2 <link rel="import" href="chrome://md-user-manager/profile_browser_proxy.html"> | 2 <link rel="import" href="chrome://md-user-manager/profile_browser_proxy.html"> |
| 3 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> | 3 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 5 <link rel="import" href="chrome://resources/html/action_link.html"> | 5 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 6 <link rel="import" href="chrome://resources/html/cr.html"> | 6 <link rel="import" href="chrome://resources/html/cr.html"> |
| 7 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 7 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 8 <link rel="import" href="chrome://resources/html/polymer.html"> | 8 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 9 <link rel="import" href="chrome://resources/html/util.html"> | 9 <link rel="import" href="chrome://resources/html/util.html"> |
| 10 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 10 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 #message-container #message { | 56 #message-container #message { |
| 57 -webkit-margin-start: 16px; | 57 -webkit-margin-start: 16px; |
| 58 } | 58 } |
| 59 | 59 |
| 60 #message-container #supervised-user-import-existing { | 60 #message-container #supervised-user-import-existing { |
| 61 color: inherit; | 61 color: inherit; |
| 62 text-decoration: underline; | 62 text-decoration: underline; |
| 63 } | 63 } |
| 64 | 64 |
| 65 #title-bar { | 65 #title-bar { |
| 66 border-bottom: 1px solid rgba(0, 0, 0, .12); | 66 border-bottom: var(--user-manager-separator-line); |
| 67 font-size: 16px; | 67 font-size: 16px; |
| 68 font-weight: 500; | 68 font-weight: 500; |
| 69 padding: 104px 0 16px; | 69 padding: 104px 0 16px; |
| 70 } | 70 } |
| 71 | 71 |
| 72 #nameInput, | 72 #nameInput, |
| 73 paper-dropdown-menu { | 73 paper-dropdown-menu { |
| 74 --paper-input-container-color: var(--primary-text-color); | 74 --paper-input-container-color: var(--primary-text-color); |
| 75 --paper-input-container-focus-color: var(--google-blue-500); | 75 --paper-input-container-focus-color: var(--google-blue-500); |
| 76 --paper-input-container-input: { | 76 --paper-input-container-input: { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 90 margin: -12px; | 90 margin: -12px; |
| 91 } | 91 } |
| 92 | 92 |
| 93 #icons paper-button { | 93 #icons paper-button { |
| 94 --paper-button: { | 94 --paper-button: { |
| 95 background: var(--paper-grey-300); | 95 background: var(--paper-grey-300); |
| 96 }; | 96 }; |
| 97 --paper-button-flat-keyboard-focus: { | 97 --paper-button-flat-keyboard-focus: { |
| 98 background: var(--paper-grey-400); | 98 background: var(--paper-grey-400); |
| 99 }; | 99 }; |
| 100 border: 1px solid rgba(0, 0, 0, .12); | 100 border: var(--user-manager-separator-line); |
| 101 margin: 12px; | 101 margin: 12px; |
| 102 min-width: 0; | 102 min-width: 0; |
| 103 padding: 6px 4px; | 103 padding: 6px 4px; |
| 104 } | 104 } |
| 105 | 105 |
| 106 #icons paper-button[active] { | 106 #icons paper-button[active] { |
| 107 border-color: var(--google-blue-500); | 107 border-color: var(--google-blue-500); |
| 108 } | 108 } |
| 109 | 109 |
| 110 paper-checkbox { | 110 paper-checkbox { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 <img src="[[item.url]]" alt="[[item.label]]"> | 191 <img src="[[item.url]]" alt="[[item.label]]"> |
| 192 </paper-button> | 192 </paper-button> |
| 193 </template> | 193 </template> |
| 194 </div> | 194 </div> |
| 195 <paper-checkbox checked="{{isSupervised_}}"> | 195 <paper-checkbox checked="{{isSupervised_}}"> |
| 196 $i18n{manageProfilesSupervisedSignedInLabel} | 196 $i18n{manageProfilesSupervisedSignedInLabel} |
| 197 </paper-checkbox> | 197 </paper-checkbox> |
| 198 <div id="supervised-user-container"> | 198 <div id="supervised-user-container"> |
| 199 <div id="learn-more" > | 199 <div id="learn-more" > |
| 200 <a is="action-link" on-tap="onLearnMoreTap_">$i18n{learnMore}</a> | 200 <a is="action-link" on-tap="onLearnMoreTap_">$i18n{learnMore}</a> |
| 201 <div> | 201 </div> |
| 202 <template is="dom-if" if="[[isSupervised_]]"> | 202 <template is="dom-if" if="[[isSupervised_]]"> |
| 203 <template is="dom-if" if="[[isSignedIn_(signedInUsers_)]]"> | 203 <template is="dom-if" if="[[isSignedIn_(signedInUsers_)]]"> |
| 204 <paper-dropdown-menu no-label-float> | 204 <paper-dropdown-menu no-label-float> |
| 205 <paper-listbox class="dropdown-content" | 205 <paper-listbox class="dropdown-content" |
| 206 selected="{{signedInUserIndex_}}" | 206 selected="{{signedInUserIndex_}}" |
| 207 attr-for-selected="data-user-index"> | 207 attr-for-selected="data-user-index"> |
| 208 <paper-item data-user-index$="[[sentinelSignedInUserIndex_]]"> | 208 <paper-item data-user-index$="[[sentinelSignedInUserIndex_]]"> |
| 209 $i18n{selectAnAccount} | 209 $i18n{selectAnAccount} |
| 210 </paper-item> | 210 </paper-item> |
| 211 <template is="dom-repeat" items="[[signedInUsers_]]"> | 211 <template is="dom-repeat" items="[[signedInUsers_]]"> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 236 <paper-button id="save" class="action primary" on-tap="onSaveTap_" | 236 <paper-button id="save" class="action primary" on-tap="onSaveTap_" |
| 237 disabled="[[isSaveDisabled_(createInProgress_, profileName_)]]"> | 237 disabled="[[isSaveDisabled_(createInProgress_, profileName_)]]"> |
| 238 $i18n{createProfileConfirm} | 238 $i18n{createProfileConfirm} |
| 239 </paper-button> | 239 </paper-button> |
| 240 </div> | 240 </div> |
| 241 <import-supervised-user id="importUserPopup"></import-supervised-user> | 241 <import-supervised-user id="importUserPopup"></import-supervised-user> |
| 242 </div> | 242 </div> |
| 243 </template> | 243 </template> |
| 244 <script src="chrome://md-user-manager/create_profile.js"></script> | 244 <script src="chrome://md-user-manager/create_profile.js"></script> |
| 245 </dom-module> | 245 </dom-module> |
| OLD | NEW |