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

Side by Side Diff: chrome/browser/resources/chromeos/set_time.html

Issue 247663003: Date and Time dialog for when the clock isn't synced. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moar edits Created 6 years, 8 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 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;">
3 <head>
4 <meta charset="utf-8">
5 <title i18n-content="setTimeTitle"></title>
6
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
8 <link rel="stylesheet" href="set_time.css">
9
10 <script src="chrome://resources/js/cr.js"></script>
11 <script src="chrome://resources/js/load_time_data.js"></script>
12 <script src="chrome://resources/js/util.js"></script>
13
14 <script src="strings.js"></script>
15 <script src="set_time.js"></script>
Dan Beam 2014/04/25 00:05:49 ^ can you move any of these to the bottom of the p
michaelpg 2014/04/25 20:05:14 Done. Doesn't seem to help much though. But I'm no
16 </head>
17
18 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
19 <div id="set-time">
20 <h2 i18n-content="setTimeTitle"></h2>
21 <p id="prompt" i18n-content="prompt" class="row"></p>
22
23 <div class="timeControl">
24 <input id="date" type="date">
25 <input id="time" type="time">
26 </div>
27
28 <div id="timezone" class="row" hidden>
29 <label id="timezone-label" for="timezone-select" i18n-content="timezone">
30 </label>
31 <select id="timezone-select" i18n-options="timezoneList"></select>
32 </div>
33
34 <div class="button-strip">
35 <button id="done" type="submit" i18n-content="doneButton"></button>
36 </div>
37 </div>
38
39 <script src="chrome://resources/js/i18n_template2.js"></script>
40 </body>
41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698