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

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

Issue 7078022: Fix up remoting UI to make it closer to spec (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added comment about v8 bug 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
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 /* Elements */
7 body {
8 margin: 0;
9 overflow: auto;
10 padding: 0;
11 -webkit-user-select: none;
12 }
13
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 {
35 overflow: auto;
36 width: 100%;
37 -webkit-user-select: none;
38 }
39
40 #session-buttons {
41 float: right;
42 }
43
44 #session-controls {
45 background-color: white;
46 border-bottom: solid 1px black;
47 height: 1.5em;
48 left: 0;
49 opacity: 0.85;
50 position: fixed;
51 top: 0;
52 width: 100%;
53 z-index: 100;
54 }
55
56 #session-controls-padding {
57 /*
58 Maintains space for session-controls so that the display initially appears
59 lower than the controls, since session-controls is position:fixed.
60 */
61 height: 1.5em;
62 }
63
64 #status-msg {
65 /*
66 clear: both; forces the session-controls div to size appropriately for
67 session-buttons.
68 */
69 clear: both;
70 font-family: monospace;
71 font-size: small;
72 margin: 5px;
73 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698