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

Side by Side Diff: chrome/browser/sync/resources/setting_up.html

Issue 3655004: Add UI for setting the encryption passphrase.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fixes Created 10 years, 2 months 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
(Empty)
1 <html i18n-values="dir:textdirection;">
2 <head>
3 <title></title>
4 <style type="text/css">
5 body {
6 line-height: 1.5em;
7 background: #FFFFFF;
8 font-size: 11pt;
9 }
10 html[os='mac'] body {
11 line-height: 1.5em;
12 background: #FFFFFF;
13 }
14 form {
15 -webkit-user-select: none;
16 }
17 .sync-footer {
18 position: fixed;
19 right: 0px;
20 bottom: 0px;
21 margin-right: 10px;
22 margin-bottom: 10px;
23 }
24 html[dir='rtl'] .sync-footer {
25 text-align: left;
26 left: 0px;
27 bottom: 0px;
28 margin-left: 20px;
29 }
30 input[type='button'],
31 input[type='submit'] {
32 min-width: 87px;
33 min-height: 26px;
34 }
35 html[os='mac'] input[type='button'],
36 html[os='mac'] input[type='submit'] {
37 font-size: 12pt;
38 }
39 #throb {
40 background-image: url("../../../../app/resources/throbber.png");
41 width: 16px;
42 height: 16px;
43 background-position: 0px;
44 margin: -3px 10px;
45 display: inline-block;
46 }
47 #setting-up {
48 margin: 100px;
49 text-align: center;
50 }
51 #setting_up_label {
52 margin: 15px;
53 font-weight: bold;
54 font-size: 125%;
55 }
56
57 </style>
58 <script src="chrome://resources/js/cr.js"></script>
59 <script>
60 function advanceThrobber() {
61 var throbber = document.getElementById('throb');
62 throbber.style.backgroundPositionX =
63 ((parseInt(getComputedStyle(throbber).backgroundPositionX) - 16) %
64 576) + 'px';
65 }
66 setInterval(advanceThrobber, 30);
67 </script>
68 </head>
69 <body i18n-values=".style.fontFamily:fontfamily">
70 <form id="settingUpForm" onSubmit="return false;">
71 <div id="setting_up>"
72 <span id="throbber_container">
73 <span id="throb"></span>
74 </span>
75 <div id="setting_up_label" i18n-content="settingup"></div>
76 </div>
77 <div class="sync-footer">
78 <input id="cancelButton" type="button" i18n-values="value:cancel"
79 onclick='chrome.send("DialogClose", [""])' />
80 </div>
81 </form>
82 </body>
83 </html>
OLDNEW
« no previous file with comments | « chrome/browser/sync/resources/passphrase.html ('k') | chrome/browser/sync/resources/setup_flow.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698