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

Side by Side Diff: remoting/webapp/me2mom/debug_log.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/choice.html ('k') | remoting/webapp/me2mom/debug_log.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 * found in the LICENSE file.
4 */
5
6 #debug-log {
7 background-color: white;
8 bottom: 0;
9 border-top: 1px solid black;
10 display: none;
11 height: 150px;
12 margin: 0;
13 opacity: 0.85;
14 overflow: auto;
15 padding: 0;
16 position: fixed;
17 width: 100%;
18 z-index: 100;
19 -webkit-user-select: text;
20 }
21
22 #debug-log > p {
23 font-family: monospace;
24 font-weight: bold;
25 font-size: small;
26 margin: 0.35em;
27 padding: 0;
28 }
29
30 #debug-log-toggle {
31 float: right;
32 }
OLDNEW
« no previous file with comments | « remoting/webapp/me2mom/choice.html ('k') | remoting/webapp/me2mom/debug_log.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698