OLD | NEW |
1 <html i18n-values="dir:textdirection;"> | 1 <html i18n-values="dir:textdirection;"> |
2 <head> | 2 <head> |
3 <title></title> | 3 <title></title> |
4 <style type="text/css"> | 4 <style type="text/css"> |
5 body { | 5 body { |
6 line-height: 1.5em; | 6 line-height: 1.5em; |
7 background: #FFFFFF; | 7 background: #FFFFFF; |
8 font-size: 11pt; | 8 font-size: 11pt; |
9 } | 9 } |
10 html[os='mac'] body { | 10 html[os='mac'] body { |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 var throbber = document.getElementById('throb'); | 61 var throbber = document.getElementById('throb'); |
62 throbber.style.backgroundPositionX = | 62 throbber.style.backgroundPositionX = |
63 ((parseInt(getComputedStyle(throbber).backgroundPositionX) - 16) % | 63 ((parseInt(getComputedStyle(throbber).backgroundPositionX) - 16) % |
64 576) + 'px'; | 64 576) + 'px'; |
65 } | 65 } |
66 setInterval(advanceThrobber, 30); | 66 setInterval(advanceThrobber, 30); |
67 </script> | 67 </script> |
68 </head> | 68 </head> |
69 <body i18n-values=".style.fontFamily:fontfamily"> | 69 <body i18n-values=".style.fontFamily:fontfamily"> |
70 <form id="settingUpForm" onSubmit="return false;"> | 70 <form id="settingUpForm" onSubmit="return false;"> |
71 <div id="setting_up>" | 71 <div id="setting_up"> |
72 <span id="throbber_container"> | 72 <span id="throbber_container"> |
73 <span id="throb"></span> | 73 <span id="throb"></span> |
74 </span> | 74 </span> |
75 <div id="setting_up_label" i18n-content="settingup"></div> | 75 <div id="setting_up_label" i18n-content="settingup"></div> |
76 </div> | 76 </div> |
77 <div class="sync-footer"> | 77 <div class="sync-footer"> |
78 <input id="cancelButton" type="button" i18n-values="value:cancel" | 78 <input id="cancelButton" type="button" i18n-values="value:cancel" |
79 onclick='chrome.send("DialogClose", [""])' /> | 79 onclick='chrome.send("DialogClose", [""])' /> |
80 </div> | 80 </div> |
81 </form> | 81 </form> |
82 </body> | 82 </body> |
83 </html> | 83 </html> |
OLD | NEW |