Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
|
Nikita (slow)
2012/02/23 14:58:51
You should also update oobe.html
http://code.googl
Patrick Dubroy
2012/02/28 00:51:02
Done.
| |
| 2 <html i18n-values="dir:textdirection"> | 2 <html i18n-values="dir:textdirection"> |
| 3 <head> | 3 <head> |
| 4 <title i18n-content="title"></title> | 4 <title i18n-content="title"></title> |
| 5 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css"> | |
| 5 <link rel="stylesheet" href="chrome://resources/css/button.css"> | 6 <link rel="stylesheet" href="chrome://resources/css/button.css"> |
| 6 <link rel="stylesheet" href="chrome://resources/css/dialogs.css"></link> | 7 <link rel="stylesheet" href="chrome://resources/css/dialogs.css"></link> |
| 7 <link rel="stylesheet" href="chrome://resources/css/list.css"> | 8 <link rel="stylesheet" href="chrome://resources/css/list.css"> |
| 8 <link rel="stylesheet" href="chrome://resources/css/select.css"> | 9 <link rel="stylesheet" href="chrome://resources/css/select.css"> |
| 9 <link rel="stylesheet" href="chrome://resources/css/spinner.css"> | 10 <link rel="stylesheet" href="chrome://resources/css/spinner.css"> |
| 10 <link rel="stylesheet" href="bubble.css"> | 11 <link rel="stylesheet" href="bubble.css"> |
| 11 <link rel="stylesheet" href="header_bar.css"> | 12 <link rel="stylesheet" href="header_bar.css"> |
| 12 <link rel="stylesheet" href="network_dropdown.css"> | 13 <link rel="stylesheet" href="network_dropdown.css"> |
| 13 <link rel="stylesheet" href="oobe.css"> | 14 <link rel="stylesheet" href="oobe.css"> |
| 14 <link rel="stylesheet" href="screen_account_picker.css"> | 15 <link rel="stylesheet" href="screen_account_picker.css"> |
| (...skipping 21 matching lines...) Expand all Loading... | |
| 36 <script src="network_dropdown.js"></script> | 37 <script src="network_dropdown.js"></script> |
| 37 <script src="oobe_screen_oauth_enrollment.js"></script> | 38 <script src="oobe_screen_oauth_enrollment.js"></script> |
| 38 <script src="oobe_screen_user_image.js"></script> | 39 <script src="oobe_screen_user_image.js"></script> |
| 39 <script src="screen_account_picker.js"></script> | 40 <script src="screen_account_picker.js"></script> |
| 40 <script src="screen_gaia_signin.js"></script> | 41 <script src="screen_gaia_signin.js"></script> |
| 41 <script src="screen_error_message.js"></script> | 42 <script src="screen_error_message.js"></script> |
| 42 <script src="user_pod_row.js"></script> | 43 <script src="user_pod_row.js"></script> |
| 43 </head> | 44 </head> |
| 44 <body class="login-display" i18n-values=".style.fontFamily:fontfamily;"> | 45 <body class="login-display" i18n-values=".style.fontFamily:fontfamily;"> |
| 45 <include src="header_bar.html"> | 46 <include src="header_bar.html"> |
| 47 <div id="notification-area"> | |
| 48 <div class="butter-bar" id="enterprise-info-container"> | |
| 49 <span id="enterprise-info-message"></span> | |
| 50 <!-- TODO(dubroy): Add "Learn more" link here. --> | |
|
Nikita (slow)
2012/02/23 14:58:51
Note that Learn more link position should support
Patrick Dubroy
2012/02/28 00:51:02
Ok, I will keep that in mind.
| |
| 51 </div> | |
| 52 </div> | |
| 46 <div id="outer-container"> | 53 <div id="outer-container"> |
| 47 <div id="oobe" class="faded"> | 54 <div id="oobe" class="faded"> |
| 48 <div id="header"> | 55 <div id="header"> |
| 49 <span i18n-content="productName"></span> | 56 <span i18n-content="productName"></span> |
| 50 <div id="header-sections"></div> | 57 <div id="header-sections"></div> |
| 51 </div> | 58 </div> |
| 52 <hr class="top shadow"> | 59 <hr class="top shadow"> |
| 53 <div id="inner-container"> | 60 <div id="inner-container"> |
| 54 <include src="oobe_screen_oauth_enrollment.html"> | 61 <include src="oobe_screen_oauth_enrollment.html"> |
| 55 <include src="oobe_screen_user_image.html"> | 62 <include src="oobe_screen_user_image.html"> |
| 56 <include src="screen_gaia_signin.html"> | 63 <include src="screen_gaia_signin.html"> |
| 57 <include src="screen_account_picker.html"> | 64 <include src="screen_account_picker.html"> |
| 58 <include src="screen_error_message.html"> | 65 <include src="screen_error_message.html"> |
| 59 </div> | 66 </div> |
| 60 <hr class="bottom shadow"> | 67 <hr class="bottom shadow"> |
| 61 <div id="footer"> | 68 <div id="footer"> |
| 62 <div id="progress"></div> | 69 <div id="progress"></div> |
| 63 <div id="button-strip" class="button-strip"></div> | 70 <div id="button-strip" class="button-strip"></div> |
| 64 </div> | 71 </div> |
| 65 </div> | 72 </div> |
| 66 </div> | 73 </div> |
| 67 <div id="bubble" class="bubble faded" hidden></div> | 74 <div id="bubble" class="bubble faded" hidden></div> |
| 68 <include src="version.html"> | 75 <include src="version.html"> |
| 69 <include src="user_pod_template.html"> | 76 <include src="user_pod_template.html"> |
| 70 </body> | 77 </body> |
| 71 </html> | 78 </html> |
| OLD | NEW |