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

Side by Side Diff: remoting/webapp/html/template_main.html

Issue 539403002: Fix scroll-related issues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | remoting/webapp/main.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 Copyright (c) 2012 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 class="full-height"> 8 <html class="full-height">
9 <head> 9 <head>
10 <meta charset="utf-8"> 10 <meta charset="utf-8">
11 <link rel="icon" type="image/png" href="chromoting16.webp"> 11 <link rel="icon" type="image/png" href="chromoting16.webp">
12 <link rel="stylesheet" href="open_sans.css"> 12 <link rel="stylesheet" href="open_sans.css">
13 <link rel="stylesheet" href="connection_stats.css"> 13 <link rel="stylesheet" href="connection_stats.css">
14 <link rel="stylesheet" href="main.css"> 14 <link rel="stylesheet" href="main.css">
15 <link rel="stylesheet" href="menu_button.css"> 15 <link rel="stylesheet" href="menu_button.css">
16 <link rel="stylesheet" href="toolbar.css"> 16 <link rel="stylesheet" href="toolbar.css">
17 <link rel="stylesheet" href="window_frame.css"> 17 <link rel="stylesheet" href="window_frame.css">
18 18
19 <meta-include type="javascript"/> 19 <meta-include type="javascript"/>
20 20
21 <title i18n-content="PRODUCT_NAME"></title> 21 <title i18n-content="PRODUCT_NAME"></title>
22 </head> 22 </head>
23 23
24 <body class="full-height"> 24 <body class="full-height">
25 25
26 <meta-include src="webapp/html/window_frame.html"/> 26 <meta-include src="webapp/html/window_frame.html"/>
27 27
28 <div class="window-body"> 28 <div class="window-body full-height">
29 29
30 <!-- loading-mode is initially visible, but becomes hidden as soon as an 30 <!-- loading-mode is initially visible, but becomes hidden as soon as an
31 AppMode is selected by remoting.init. All other divs are initially 31 AppMode is selected by remoting.init. All other divs are initially
32 hidden, but are shown appropriately when the mode changes. --> 32 hidden, but are shown appropriately when the mode changes. -->
33 <section id="loading-mode" data-ui-mode=""> 33 <section id="loading-mode" data-ui-mode="">
34 <em>Loading&hellip;</em> 34 <em>Loading&hellip;</em>
35 </section> 35 </section>
36 36
37 <div id="daemon-plugin-container"></div> 37 <div id="daemon-plugin-container"></div>
38 <div id="host-plugin-container"></div> 38 <div id="host-plugin-container"></div>
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 96
97 <div id="statistics" dir="ltr" class="selectable" hidden> 97 <div id="statistics" dir="ltr" class="selectable" hidden>
98 </div> 98 </div>
99 99
100 </div> <!-- scroller --> 100 </div> <!-- scroller -->
101 101
102 </div> <!-- window-body --> 102 </div> <!-- window-body -->
103 103
104 </body> 104 </body>
105 </html> 105 </html>
OLDNEW
« no previous file with comments | « no previous file | remoting/webapp/main.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698