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

Side by Side Diff: remoting/webapp/me2mom/remoting_session.css

Issue 7108007: Add basic debug log to host page. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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
« no previous file with comments | « remoting/webapp/me2mom/remoting.js ('k') | remoting/webapp/me2mom/remoting_session.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 /* Elements */ 6 /* Elements */
7 body { 7 body {
8 margin: 0; 8 margin: 0;
9 overflow: auto; 9 overflow: auto;
10 padding: 0; 10 padding: 0;
11 -webkit-user-select: none; 11 -webkit-user-select: none;
12 } 12 }
13 13
14 /* Ids */ 14 /* Ids */
15 #debug-log {
16 background-color: white;
17 bottom: 0;
18 border-top: 1px solid black;
19 display: none;
20 font-family: monospace;
21 font-weight: bold;
22 font-size: small;
23 height: 150px;
24 margin: 0;
25 opacity: 0.85;
26 overflow: auto;
27 padding: 0;
28 position: fixed;
29 width: 100%;
30 z-index: 100;
31 -webkit-user-select: text;
32 }
33
34 #plugin-scroll-panel { 15 #plugin-scroll-panel {
35 overflow: auto; 16 overflow: auto;
36 width: 100%; 17 width: 100%;
37 -webkit-user-select: none; 18 -webkit-user-select: none;
38 } 19 }
39 20
40 #session-buttons { 21 #session-buttons {
41 float: right; 22 float: right;
42 } 23 }
43 24
(...skipping 20 matching lines...) Expand all
64 #status-msg { 45 #status-msg {
65 /* 46 /*
66 clear: both; forces the session-controls div to size appropriately for 47 clear: both; forces the session-controls div to size appropriately for
67 session-buttons. 48 session-buttons.
68 */ 49 */
69 clear: both; 50 clear: both;
70 font-family: monospace; 51 font-family: monospace;
71 font-size: small; 52 font-size: small;
72 margin: 5px; 53 margin: 5px;
73 } 54 }
OLDNEW
« no previous file with comments | « remoting/webapp/me2mom/remoting.js ('k') | remoting/webapp/me2mom/remoting_session.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698