| OLD | NEW |
| 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 |
| 11 html { | 11 html { |
| 12 height: 100%; | 12 height: 100%; |
| 13 } | 13 } |
| 14 | 14 |
| 15 .summary-log-container { | 15 .summary-log-container { |
| 16 width: 50%; | |
| 17 height: 100%; | 16 height: 100%; |
| 18 overflow-y: auto; | 17 overflow-y: auto; |
| 19 float: left; | |
| 20 } | 18 } |
| 21 | 19 |
| 22 #text-log-container { | 20 #text-log-container { |
| 23 position: fixed; | 21 position: fixed; |
| 24 top: 32px; | 22 top: 32px; |
| 25 left: 16px; | 23 left: 16px; |
| 26 right: 16px; | 24 right: 16px; |
| 27 bottom: 32px; | 25 bottom: 32px; |
| 28 border: 1px solid gray; | 26 border: 1px solid gray; |
| 29 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); |
| 30 background-color: white; | 28 background-color: white; |
| 31 overflow: scroll; | 29 overflow: scroll; |
| 32 } | 30 } |
| 33 | 31 |
| 34 #text-log { | 32 #text-log { |
| 35 padding: 8px; | 33 padding: 8px; |
| 36 } | 34 } |
| 37 | 35 |
| 36 #pnacl-listener { |
| 37 height: 0; |
| 38 } |
| 39 |
| 38 .selectable { | 40 .selectable { |
| 39 -webkit-user-select: text; | 41 -webkit-user-select: text; |
| 40 cursor: text; | 42 cursor: text; |
| 41 } | 43 } |
| 42 | 44 |
| 43 .key-div { | 45 .key-div { |
| 44 border-radius: 4px; | 46 border-radius: 4px; |
| 45 border: 1px solid rgba(0, 0, 0, 0.3); | 47 border: 1px solid rgba(0, 0, 0, 0.3); |
| 46 padding: 2px; | 48 padding: 2px; |
| 47 margin-right: 2px; | 49 margin-right: 2px; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 .chord-div.some-keys-still-pressed::after { | 94 .chord-div.some-keys-still-pressed::after { |
| 93 content: " \2716"; /* cross */ | 95 content: " \2716"; /* cross */ |
| 94 color: red; | 96 color: red; |
| 95 } | 97 } |
| 96 | 98 |
| 97 .controls { | 99 .controls { |
| 98 position: absolute; | 100 position: absolute; |
| 99 right: 8px; | 101 right: 8px; |
| 100 top: 8px; | 102 top: 8px; |
| 101 } | 103 } |
| OLD | NEW |