| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html build="$i18n{buildType}" | 2 <html build="$i18n{buildType}" |
| 3 dir="$i18n{textdirection}" | 3 dir="$i18n{textdirection}" |
| 4 lang="$i18n{language}" | 4 lang="$i18n{language}" |
| 5 screen="$i18n{screenType}"> | 5 screen="$i18n{screenType}"> |
| 6 <head> | 6 <head> |
| 7 <meta charset="utf-8"> | 7 <meta charset="utf-8"> |
| 8 <meta name="google" value="notranslate"> | 8 <meta name="google" value="notranslate"> |
| 9 <title>$i18n{title}</title> | 9 <title>$i18n{title}</title> |
| 10 | 10 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 #outer-container { | 57 #outer-container { |
| 58 min-height: 0; | 58 min-height: 0; |
| 59 overflow-x: hidden; | 59 overflow-x: hidden; |
| 60 overflow-y: auto; | 60 overflow-y: auto; |
| 61 padding: 40px 0 30px; | 61 padding: 40px 0 30px; |
| 62 z-index: initial; | 62 z-index: initial; |
| 63 } | 63 } |
| 64 | 64 |
| 65 .bubble { | 65 .bubble { |
| 66 color: var(--primary-text-color); | |
| 67 font: inherit; | 66 font: inherit; |
| 68 } | 67 } |
| 69 | 68 |
| 70 .bubble.faded { | 69 .bubble.faded { |
| 71 opacity: 0; | 70 opacity: 0; |
| 72 } | 71 } |
| 73 | 72 |
| 74 .pod { | 73 .pod { |
| 75 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .24), | 74 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .24), |
| 76 0 0 2px 0 rgba(0, 0, 0, .12); | 75 0 0 2px 0 rgba(0, 0, 0, .12); |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 </div> | 316 </div> |
| 318 <div id="bubble" class="bubble faded" hidden></div> | 317 <div id="bubble" class="bubble faded" hidden></div> |
| 319 <control-bar id="login-header-bar"></control-bar> | 318 <control-bar id="login-header-bar"></control-bar> |
| 320 <error-dialog></error-dialog> | 319 <error-dialog></error-dialog> |
| 321 <include src="../../../../ui/login/account_picker/user_pod_template.html"> | 320 <include src="../../../../ui/login/account_picker/user_pod_template.html"> |
| 322 </user-manager-pages> | 321 </user-manager-pages> |
| 323 <link rel="import" href="chrome://resources/html/i18n_template.html"> | 322 <link rel="import" href="chrome://resources/html/i18n_template.html"> |
| 324 <script src="user_manager.js"></script> | 323 <script src="user_manager.js"></script> |
| 325 </body> | 324 </body> |
| 326 </html> | 325 </html> |
| OLD | NEW |