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

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

Issue 7383015: Replace in-session header with auto-hide tool-bar. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed comment. Created 9 years, 5 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/remoting.js » ('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 #debug-log { 6 #debug-log {
7 background-color: white; 7 background-color: white;
8 bottom: 0; 8 bottom: 0;
9 border-top: 1px solid black; 9 border-top: 1px solid black;
10 display: none;
11 height: 150px; 10 height: 150px;
12 margin: 0; 11 margin: 0;
13 opacity: 0.85; 12 opacity: 0.85;
14 overflow: auto;
15 padding: 0; 13 padding: 0;
16 position: fixed; 14 position: fixed;
17 width: 100%; 15 width: 100%;
18 z-index: 100; 16 z-index: 100;
19 -webkit-user-select: text; 17 -webkit-user-select: text;
20 } 18 }
21 19
22 #debug-log > p { 20 #debug-messages {
21 border-top: 1px solid black;
22 overflow: auto;
23 height: inherit;
24 }
25
26 #debug-messages > p {
23 font-family: monospace; 27 font-family: monospace;
24 font-weight: bold; 28 font-weight: bold;
25 font-size: small; 29 font-size: small;
26 margin: 0.35em; 30 margin: 0.35em;
27 padding: 0; 31 padding: 0;
28 } 32 }
29 33
30 #debug-log-toggle { 34 #debug-log-toggle {
31 float: right; 35 float: right;
32 } 36 }
OLDNEW
« no previous file with comments | « remoting/webapp/me2mom/choice.html ('k') | remoting/webapp/me2mom/remoting.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698