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

Side by Side Diff: remoting/webapp/me2mom/choice.html

Issue 8511077: Fixed css to make host list prettier. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 <!-- 2 <!--
3 Copyright (c) 2011 The Chromium Authors. All rights reserved. 3 Copyright (c) 2011 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <html> 8 <html>
9 <head> 9 <head>
10 <meta charset="utf-8" /> 10 <meta charset="utf-8" />
11 <link href="http://fonts.googleapis.com/css?family=Droid+Sans&amp;v1" 11 <link href="http://fonts.googleapis.com/css?family=Droid+Sans&amp;v1"
12 rel="stylesheet" type="text/css"> 12 rel="stylesheet" type="text/css">
13 <link rel="icon" type="image/png" href="chromoting16.png" /> 13 <link rel="icon" type="image/png" href="chromoting16.png" />
14 <link rel="stylesheet" href="debug_log.css" /> 14 <link rel="stylesheet" href="debug_log.css" />
15 <link rel="stylesheet" href="main.css" /> 15 <link rel="stylesheet" href="main.css" />
16 <link rel="stylesheet" href="choice.css" /> 16 <link rel="stylesheet" href="choice.css" />
17 <link rel="stylesheet" href="toolbar.css" /> 17 <link rel="stylesheet" href="toolbar.css" />
18 <script src="client_screen.js"></script> 18 <script src="client_screen.js"></script>
19 <script src="client_session.js"></script> 19 <script src="client_session.js"></script>
20 <script src="debug_log.js"></script> 20 <script src="debug_log.js"></script>
21 <script src="home_screen.js"></script>
Wez 2011/11/12 01:12:42 Leak from another CL?
Jamie 2011/11/14 18:28:16 Sort-of. I started refactoring it before realizing
21 <script src="host_screen.js"></script> 22 <script src="host_screen.js"></script>
22 <script src="host_session.js"></script> 23 <script src="host_session.js"></script>
23 <script src="l10n.js"></script> 24 <script src="l10n.js"></script>
24 <script src="oauth2.js"></script> 25 <script src="oauth2.js"></script>
25 <script src="plugin_settings.js"></script> 26 <script src="plugin_settings.js"></script>
26 <script src="remoting.js"></script> 27 <script src="remoting.js"></script>
27 <script src="ui_mode.js"></script> 28 <script src="ui_mode.js"></script>
28 <script src="util.js"></script> 29 <script src="util.js"></script>
29 <script src="xhr.js"></script> 30 <script src="xhr.js"></script>
30 <script src="wcs.js"></script> 31 <script src="wcs.js"></script>
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 <td> 139 <td>
139 <button i18n-content="HOME_ACCESS_BUTTON" 140 <button i18n-content="HOME_ACCESS_BUTTON"
140 onclick="remoting.setMode( 141 onclick="remoting.setMode(
141 remoting.AppMode.CLIENT_UNCONNECTED);" 142 remoting.AppMode.CLIENT_UNCONNECTED);"
142 class="mode-select-button" 143 class="mode-select-button"
143 type="button"></button> 144 type="button"></button>
144 </td> 145 </td>
145 </tr> 146 </tr>
146 </table> 147 </table>
147 148
148 <div id="host-list-div" hidden> 149 <div id="host-list-div"
150 class="host-list-container collapsed"
151 hidden>
149 <img src="dividerbottom.png"> 152 <img src="dividerbottom.png">
150 <h1 i18n-content="HOME_ANYTIME_REMOTE_ACCESS_TITLE" 153 <h1 i18n-content="HOME_MY_COMPUTERS_TITLE"></h1>
151 class="icon-label"> 154 <table id="host-list" class="host-list-table">
152 </h1>
153 <table id="host-list" class="mode-select-table">
154 </table> <!-- host-list --> 155 </table> <!-- host-list -->
155 </div> <!-- host-list-div --> 156 </div> <!-- host-list-div -->
156 157
157 </div> <!-- home --> 158 </div> <!-- home -->
158 159
159 <div id="host-panel" data-ui-mode="host"> 160 <div id="host-panel" data-ui-mode="host">
160 161
161 <div data-ui-mode="host.waiting-for-code" class="message" 162 <div data-ui-mode="host.waiting-for-code" class="message"
162 i18n-content="MESSAGE_GENERATING"> 163 i18n-content="MESSAGE_GENERATING">
163 </div> <!-- host.waiting-for-code --> 164 </div> <!-- host.waiting-for-code -->
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 287
287 <section id="debug-log" dir="ltr" hidden> 288 <section id="debug-log" dir="ltr" hidden>
288 <div id="statistics"> 289 <div id="statistics">
289 </div> 290 </div>
290 <div id="debug-messages"> 291 <div id="debug-messages">
291 </div> 292 </div>
292 </section> <!-- debug-log --> 293 </section> <!-- debug-log -->
293 294
294 </body> 295 </body>
295 </html> 296 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698