Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: chrome/browser/resources/chromeos/login/demo_user_login.html

Issue 11312225: Fix Chrome logo to transition smoothly between the demo login screen and login spinner. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed unused image file. Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection"> 2 <html i18n-values="dir:textdirection">
3 <head> 3 <head>
4 <link rel="stylesheet" href="chrome://resources/css/spinner.css"> 4 <link rel="stylesheet" href="chrome://resources/css/spinner.css">
5 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 5 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
6 <link rel="stylesheet" href="demo_user_login.css"> 6 <link rel="stylesheet" href="demo_user_login.css">
7 <script src="chrome://resources/js/util.js"></script> 7 <script src="chrome://resources/js/util.js"></script>
8 <script src="demo_user_login.js"></script> 8 <script src="demo_user_login.js"></script>
9 </head> 9 </head>
10 <body i18n-values=".style.fontFamily:fontfamily;"> 10 <body i18n-values=".style.fontFamily:fontfamily;">
11 <div id="page"> 11 <div id="page">
12 <div id="logo-container"> 12 <div id="logo-container">
13 <div> 13 <div>
14 <img id="logo" src="images/chrome_center_logo.jpg"> 14 <img id="logo" src="images/chrome_retail_login.png">
15 <img id="logo-login" src="images/chrome_retail_login.png" hidden>
16 </div> 15 </div>
17 <div id="demo-login-text" i18n-content="demoLoginMessage"></div> 16 <div id="lower-container">
18 <div id="login-spinner" class="inline-spinner" hidden></div> 17 <div id="demo-login-text" i18n-content="demoLoginMessage"></div>
18 <div id="login-spinner" class="inline-spinner" hidden></div>
19 </div>
19 </div> 20 </div>
20 </div> 21 </div>
21 </body> 22 </body>
22 </html> 23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698