| OLD | NEW |
| 1 <link rel="import" href="/import_supervised_user.html"> | 1 <link rel="import" href="/import_supervised_user.html"> |
| 2 <link rel="import" href="/profile_browser_proxy.html"> | 2 <link rel="import" href="/profile_browser_proxy.html"> |
| 3 <link rel="import" href="/shared_styles.html"> | 3 <link rel="import" href="/shared_styles.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/cr_profile_avatar_select
or/cr_profile_avatar_selector.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/cr_profile_avatar_select
or/cr_profile_avatar_selector.html"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 6 <link rel="import" href="chrome://resources/html/action_link.html"> | 6 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 7 <link rel="import" href="chrome://resources/html/cr.html"> | 7 <link rel="import" href="chrome://resources/html/cr.html"> |
| 8 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 8 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 9 <link rel="import" href="chrome://resources/html/polymer.html"> | 9 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 10 <link rel="import" href="chrome://resources/html/util.html"> | 10 <link rel="import" href="chrome://resources/html/util.html"> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 .container { | 24 .container { |
| 25 color: var(--primary-text-color); | 25 color: var(--primary-text-color); |
| 26 width: var(--page-width); | 26 width: var(--page-width); |
| 27 } | 27 } |
| 28 | 28 |
| 29 #message-container { | 29 #message-container { |
| 30 -webkit-transition: top 400ms cubic-bezier(.4, 0, .2, 1), | 30 -webkit-transition: top 400ms cubic-bezier(.4, 0, .2, 1), |
| 31 visibility 0s linear 400ms; | 31 visibility 0s linear 400ms; |
| 32 align-items: center; | 32 align-items: center; |
| 33 background-color: var(--paper-red-50); | 33 background-color: var(--paper-red-50); |
| 34 box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .12); |
| 34 color: var(--google-red-700); | 35 color: var(--google-red-700); |
| 35 display: flex; | 36 display: flex; |
| 36 height: 40px; | 37 height: 40px; |
| 37 left: 0; | 38 left: 0; |
| 38 overflow: hidden; | 39 overflow: hidden; |
| 39 padding: 0 16px; | 40 padding: 0 16px; |
| 40 position: absolute; | 41 position: absolute; |
| 41 right: 0; | 42 right: 0; |
| 42 top: -40px; | 43 top: -40px; |
| 43 visibility: hidden; | 44 visibility: hidden; |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 loadingSupervisedUsers_, | 202 loadingSupervisedUsers_, |
| 202 profileName_)]]"> | 203 profileName_)]]"> |
| 203 $i18n{createProfileConfirm} | 204 $i18n{createProfileConfirm} |
| 204 </paper-button> | 205 </paper-button> |
| 205 </div> | 206 </div> |
| 206 <import-supervised-user id="importUserPopup"></import-supervised-user> | 207 <import-supervised-user id="importUserPopup"></import-supervised-user> |
| 207 </div> | 208 </div> |
| 208 </template> | 209 </template> |
| 209 <script src="create_profile.js"></script> | 210 <script src="create_profile.js"></script> |
| 210 </dom-module> | 211 </dom-module> |
| OLD | NEW |