| 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/html/action_link.html"> | 4 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 5 <link rel="import" href="chrome://resources/html/cr.html"> | 5 <link rel="import" href="chrome://resources/html/cr.html"> |
| 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 7 <link rel="import" href="chrome://resources/html/polymer.html"> | 7 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 8 <link rel="import" href="chrome://resources/html/util.html"> | 8 <link rel="import" href="chrome://resources/html/util.html"> |
| 9 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 9 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 flex-wrap: wrap; | 75 flex-wrap: wrap; |
| 76 margin: -12px; | 76 margin: -12px; |
| 77 } | 77 } |
| 78 | 78 |
| 79 #icons paper-button { | 79 #icons paper-button { |
| 80 background: var(--paper-grey-300); | 80 background: var(--paper-grey-300); |
| 81 border: 1px solid rgba(0, 0, 0, .12); | 81 border: 1px solid rgba(0, 0, 0, .12); |
| 82 margin: 12px; | 82 margin: 12px; |
| 83 min-width: 0; | 83 min-width: 0; |
| 84 padding: 6px 4px; | 84 padding: 6px 4px; |
| 85 --paper-button-flat-keyboard-focus: { |
| 86 outline: auto; |
| 87 }; |
| 85 } | 88 } |
| 86 | 89 |
| 87 #icons paper-button[active] { | 90 #icons paper-button[active] { |
| 88 border-color: var(--google-blue-500); | 91 border-color: var(--google-blue-500); |
| 89 } | 92 } |
| 90 | 93 |
| 91 #icons paper-button:focus:not([active]) { | |
| 92 outline: 1px dotted #666; | |
| 93 } | |
| 94 | |
| 95 paper-checkbox { | 94 paper-checkbox { |
| 96 --paper-checkbox-label-spacing: 16px; | 95 --paper-checkbox-label-spacing: 16px; |
| 97 --paper-checkbox-size: 20px; | 96 --paper-checkbox-size: 20px; |
| 98 --primary-text-color: var(--main-text-color); | 97 --primary-text-color: var(--main-text-color); |
| 99 margin-top: 24px; | 98 margin-top: 24px; |
| 100 } | 99 } |
| 101 | 100 |
| 102 #supervised-user-container { | 101 #supervised-user-container { |
| 103 -webkit-padding-start: 36px; | 102 -webkit-padding-start: 36px; |
| 104 } | 103 } |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 <paper-button id="save" class="action primary" on-tap="onSaveTap_" | 215 <paper-button id="save" class="action primary" on-tap="onSaveTap_" |
| 217 disabled="[[isSaveDisabled_(createInProgress_, profileName_)]]"> | 216 disabled="[[isSaveDisabled_(createInProgress_, profileName_)]]"> |
| 218 $i18n{createProfileConfirm} | 217 $i18n{createProfileConfirm} |
| 219 </paper-button> | 218 </paper-button> |
| 220 </div> | 219 </div> |
| 221 <import-supervised-user id="importUserPopup"></import-supervised-user> | 220 <import-supervised-user id="importUserPopup"></import-supervised-user> |
| 222 </div> | 221 </div> |
| 223 </template> | 222 </template> |
| 224 <script src="chrome://md-user-manager/create_profile.js"></script> | 223 <script src="chrome://md-user-manager/create_profile.js"></script> |
| 225 </dom-module> | 224 </dom-module> |
| OLD | NEW |