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

Side by Side Diff: remoting/tools/javascript_key_tester/main.css

Issue 2063623002: [Chromoting] Log mouse events in remoting_key_tester (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolve review comments -- Remove LogToConsole(s). Created 4 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
OLDNEW
1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2014 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 body { 6 body {
7 height: calc(100% - 12px); 7 height: calc(100% - 12px);
8 overflow: auto; 8 overflow: auto;
9 } 9 }
10 10
(...skipping 16 matching lines...) Expand all
27 box-shadow: 0px 4px 10px 4px rgba(0,0,0,0.3); 27 box-shadow: 0px 4px 10px 4px rgba(0,0,0,0.3);
28 background-color: white; 28 background-color: white;
29 overflow: scroll; 29 overflow: scroll;
30 } 30 }
31 31
32 #text-log { 32 #text-log {
33 padding: 8px; 33 padding: 8px;
34 } 34 }
35 35
36 #pnacl-listener { 36 #pnacl-listener {
37 height: 0; 37 height: 100px;
38 }
39
40 #pnacl-plugin {
41 height: 100%;
42 width: 100%;
43 background-color: gray;
38 } 44 }
39 45
40 .selectable { 46 .selectable {
41 -webkit-user-select: text; 47 -webkit-user-select: text;
42 cursor: text; 48 cursor: text;
43 } 49 }
44 50
45 .key-div { 51 .key-div {
46 border-radius: 4px; 52 border-radius: 4px;
47 border: 1px solid rgba(0, 0, 0, 0.3); 53 border: 1px solid rgba(0, 0, 0, 0.3);
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 99
94 .chord-div.some-keys-still-pressed::after { 100 .chord-div.some-keys-still-pressed::after {
95 content: " \2716"; /* cross */ 101 content: " \2716"; /* cross */
96 color: red; 102 color: red;
97 } 103 }
98 104
99 .controls { 105 .controls {
100 position: absolute; 106 position: absolute;
101 right: 8px; 107 right: 8px;
102 top: 8px; 108 top: 8px;
103 } 109 }
OLDNEW
« no previous file with comments | « remoting/tools/javascript_key_tester/event_listeners.js ('k') | remoting/tools/javascript_key_tester/main.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698